tooot/src/screens/ImagesViewer.tsx

170 lines
4.4 KiB
TypeScript
Raw Normal View History

2021-01-30 01:29:15 +01:00
import analytics from '@components/analytics'
2021-02-14 00:27:21 +01:00
import haptics from '@components/haptics'
2021-02-10 00:40:44 +01:00
import { HeaderCenter, HeaderLeft, HeaderRight } from '@components/Header'
2021-01-31 03:09:35 +01:00
import { useActionSheet } from '@expo/react-native-action-sheet'
import CameraRoll from '@react-native-community/cameraroll'
2021-02-10 00:40:44 +01:00
import { StackScreenProps } from '@react-navigation/stack'
import ImageView from '@root/modules/react-native-image-viewing/src/index'
2021-01-30 01:29:15 +01:00
import { findIndex } from 'lodash'
2021-02-10 00:40:44 +01:00
import React, { useCallback, useState } from 'react'
2021-01-31 03:09:35 +01:00
import { useTranslation } from 'react-i18next'
2021-02-10 00:40:44 +01:00
import {
PermissionsAndroid,
Platform,
Share,
2021-02-13 12:33:51 +01:00
StatusBar,
2021-02-10 00:40:44 +01:00
View
} from 'react-native'
2021-02-14 00:27:21 +01:00
import {
SafeAreaProvider,
useSafeAreaInsets
} from 'react-native-safe-area-context'
2021-01-30 01:29:15 +01:00
2021-02-14 00:27:21 +01:00
const HeaderComponent = React.memo(
({
navigation,
currentIndex,
imageUrls
}: {
navigation: ScreenImagesViewerProp['navigation']
currentIndex: number
imageUrls: {
url: string
width?: number | undefined
height?: number | undefined
preview_url: string
remote_url?: string | undefined
imageIndex: number
}[]
}) => {
const insets = useSafeAreaInsets()
const { t } = useTranslation('screenImageViewer')
const { showActionSheetWithOptions } = useActionSheet()
2021-02-11 01:33:31 +01:00
2021-02-14 00:27:21 +01:00
const hasAndroidPermission = async () => {
const permission = PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE
2021-01-30 01:29:15 +01:00
2021-02-14 00:27:21 +01:00
const hasPermission = await PermissionsAndroid.check(permission)
if (hasPermission) {
return true
}
2021-01-31 03:09:35 +01:00
2021-02-14 00:27:21 +01:00
const status = await PermissionsAndroid.request(permission)
return status === 'granted'
2021-02-09 00:24:02 +01:00
}
2021-01-31 03:09:35 +01:00
2021-02-14 00:27:21 +01:00
const saveImage = async () => {
if (Platform.OS === 'android' && !(await hasAndroidPermission())) {
return
}
CameraRoll.save(
imageUrls[currentIndex].url ||
imageUrls[currentIndex].remote_url ||
imageUrls[currentIndex].preview_url
2021-01-31 03:09:35 +01:00
)
2021-02-14 00:27:21 +01:00
.then(() => haptics('Success'))
.catch(() => haptics('Error'))
}
2021-01-30 01:29:15 +01:00
2021-02-14 00:27:21 +01:00
const onPress = useCallback(() => {
analytics('imageviewer_more_press')
showActionSheetWithOptions(
{
options: [
t('content.options.save'),
t('content.options.share'),
t('content.options.cancel')
],
cancelButtonIndex: 2
},
async buttonIndex => {
switch (buttonIndex) {
case 0:
analytics('imageviewer_more_save_press')
saveImage()
break
case 1:
analytics('imageviewer_more_share_press')
switch (Platform.OS) {
case 'ios':
return Share.share({ url: imageUrls[currentIndex].url })
case 'android':
return Share.share({ message: imageUrls[currentIndex].url })
}
break
}
2021-02-09 00:24:02 +01:00
}
2021-02-14 00:27:21 +01:00
)
}, [currentIndex])
2021-01-30 01:29:15 +01:00
2021-02-14 00:27:21 +01:00
return (
2021-02-10 00:40:44 +01:00
<View
style={{
flex: 1,
flexDirection: 'row',
justifyContent: 'space-between',
2021-02-14 00:27:21 +01:00
alignItems: 'center',
marginTop: insets.top
2021-02-10 00:40:44 +01:00
}}
>
<HeaderLeft
content='X'
native={false}
onPress={() => navigation.goBack()}
/>
<HeaderCenter
inverted
content={`${currentIndex + 1} / ${imageUrls.length}`}
/>
<HeaderRight
content='MoreHorizontal'
native={false}
onPress={onPress}
/>
</View>
2021-02-14 00:27:21 +01:00
)
},
(prev, next) => prev.currentIndex === next.currentIndex
)
export type ScreenImagesViewerProp = StackScreenProps<
Nav.RootStackParamList,
'Screen-ImagesViewer'
>
const ScreenImagesViewer = ({
route: {
params: { imageUrls, imageIndex }
},
navigation
}: ScreenImagesViewerProp) => {
if (imageUrls.length === 0) {
return null
}
const [currentIndex, setCurrentIndex] = useState(
findIndex(imageUrls, ['imageIndex', imageIndex])
2021-02-09 00:24:02 +01:00
)
2021-01-30 01:29:15 +01:00
2021-02-09 00:24:02 +01:00
return (
2021-02-14 00:27:21 +01:00
<SafeAreaProvider>
2021-02-13 12:33:51 +01:00
<StatusBar backgroundColor='rgb(0,0,0)' />
2021-02-10 00:40:44 +01:00
<ImageView
2021-02-14 00:27:21 +01:00
images={imageUrls}
2021-02-10 00:40:44 +01:00
imageIndex={imageIndex}
onImageIndexChange={index => setCurrentIndex(index)}
onRequestClose={() => navigation.goBack()}
2021-02-14 00:27:21 +01:00
HeaderComponent={() => (
<HeaderComponent
navigation={navigation}
currentIndex={currentIndex}
imageUrls={imageUrls}
/>
)}
2021-02-10 00:40:44 +01:00
/>
2021-02-14 00:27:21 +01:00
</SafeAreaProvider>
2021-02-09 00:24:02 +01:00
)
}
2021-01-30 01:29:15 +01:00
export default ScreenImagesViewer