filter out files with non-image mime types
parent
f1d55f49fa
commit
8c7f813d87
|
@ -18,7 +18,14 @@ export async function openPicker(opts?: ImagePickerOptions) {
|
||||||
Toast.show('You may only select up to 4 images')
|
Toast.show('You may only select up to 4 images')
|
||||||
}
|
}
|
||||||
|
|
||||||
return (response.assets ?? []).slice(0, 4).map(image => ({
|
return (response.assets ?? [])
|
||||||
|
.slice(0, 4)
|
||||||
|
.filter(asset => {
|
||||||
|
if (asset.mimeType?.startsWith('image/')) return true
|
||||||
|
Toast.show('Only image files are supported')
|
||||||
|
return false
|
||||||
|
})
|
||||||
|
.map(image => ({
|
||||||
mime: 'image/jpeg',
|
mime: 'image/jpeg',
|
||||||
height: image.height,
|
height: image.height,
|
||||||
width: image.width,
|
width: image.width,
|
||||||
|
|
Loading…
Reference in New Issue