mirror of
https://github.com/tooot-app/app
synced 2025-04-03 21:21:01 +02:00
Fix Android saving image issue
This commit is contained in:
parent
387a574b0d
commit
c990d8196f
@ -3,10 +3,9 @@ import { displayMessage } from '@components/Message'
|
|||||||
import CameraRoll from '@react-native-community/cameraroll'
|
import CameraRoll from '@react-native-community/cameraroll'
|
||||||
import { RootStackParamList } from '@utils/navigation/navigators'
|
import { RootStackParamList } from '@utils/navigation/navigators'
|
||||||
import * as FileSystem from 'expo-file-system'
|
import * as FileSystem from 'expo-file-system'
|
||||||
import * as MediaLibrary from 'expo-media-library'
|
|
||||||
import i18next from 'i18next'
|
import i18next from 'i18next'
|
||||||
import { RefObject } from 'react'
|
import { RefObject } from 'react'
|
||||||
import { Platform } from 'react-native'
|
import { PermissionsAndroid, Platform } from 'react-native'
|
||||||
import FlashMessage from 'react-native-flash-message'
|
import FlashMessage from 'react-native-flash-message'
|
||||||
|
|
||||||
type CommonProps = {
|
type CommonProps = {
|
||||||
@ -65,13 +64,32 @@ const saveAndroid = async ({ messageRef, mode, image }: CommonProps) => {
|
|||||||
await FileSystem.downloadAsync(image.url, fileUri)
|
await FileSystem.downloadAsync(image.url, fileUri)
|
||||||
|
|
||||||
if (downloadedFile.status != 200) {
|
if (downloadedFile.status != 200) {
|
||||||
console.warn('error!')
|
haptics('Error')
|
||||||
|
displayMessage({
|
||||||
|
ref: messageRef,
|
||||||
|
mode,
|
||||||
|
type: 'error',
|
||||||
|
message: i18next.t('screenImageViewer:content.save.failed')
|
||||||
|
})
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const perm = await MediaLibrary.requestPermissionsAsync()
|
const permission = PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE
|
||||||
if (!perm.granted) {
|
|
||||||
|
const hasPermission = await PermissionsAndroid.check(permission)
|
||||||
|
if (!hasPermission) {
|
||||||
|
const status = await PermissionsAndroid.request(permission)
|
||||||
|
if (status !== 'granted') {
|
||||||
|
haptics('Error')
|
||||||
|
displayMessage({
|
||||||
|
ref: messageRef,
|
||||||
|
mode,
|
||||||
|
type: 'error',
|
||||||
|
message: i18next.t('screenImageViewer:content.save.failed')
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
CameraRoll.save(downloadedFile.uri)
|
CameraRoll.save(downloadedFile.uri)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user