Add missing props to launchImageLibraryAsync

(cherry picked from commit 2e80ae561fd66850f787cac0aae0fa5a6980f8f5)
This commit is contained in:
Eric Bailey
2025-08-12 12:05:02 -05:00
committed by Samuel Newman
parent e5200c1146
commit 01687004ef
2 changed files with 13 additions and 8 deletions
+12 -8
View File
@@ -1,5 +1,9 @@
import {useCallback} from 'react'
import {type ImagePickerAsset, launchImageLibraryAsync} from 'expo-image-picker'
import {
type ImagePickerAsset,
launchImageLibraryAsync,
UIImagePickerPreferredAssetRepresentationMode,
} from 'expo-image-picker'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -15,6 +19,7 @@ import {
import {getDataUriSize} from '#/lib/media/util'
import {isNative, isWeb} from '#/platform/detection'
import {type ComposerImage, createComposerImage} from '#/state/gallery'
import {MAX_IMAGES} from '#/view/com/composer/state/composer'
import {getVideoMetadata} from '#/view/com/composer/videos/pickVideo'
import {atoms as a, useTheme} from '#/alf'
import {Button} from '#/components/Button'
@@ -275,23 +280,22 @@ export function SelectMediaBtn({disabled, onAdd, onSelectVideo}: Props) {
}
}
//APiligrim
//Note: selectionLimit doesn't work reliably on Android, so we handle limiting in code
const response = await sheetWrapper(
const {assets} = await sheetWrapper(
launchImageLibraryAsync({
exif: false,
mediaTypes: ['images', 'videos'],
quality: 1,
allowsMultipleSelection: true,
legacy: true,
selectionLimit: MAX_IMAGES,
preferredAssetRepresentationMode:
UIImagePickerPreferredAssetRepresentationMode.Current,
}),
)
if (!response.assets || response.assets.length === 0) {
return
}
if (!assets || assets.length === 0) return
await processSelectedAssets(response.assets)
await processSelectedAssets(assets)
}, [
requestPhotoAccessIfNeeded,
requestVideoAccessIfNeeded,
@@ -154,6 +154,7 @@ export const TextInput = forwardRef(function TextInputImpl(
}
const uris = files.map(f => f.uri)
// TODO
const uri = uris.find(isUriImage)
if (uri) {