mirror of https://github.com/tooot-app/app
Try adding fling gesture handler
This commit is contained in:
parent
9b4b575291
commit
ddd1879e48
|
@ -18,7 +18,12 @@ import {
|
||||||
ViewToken
|
ViewToken
|
||||||
} from 'react-native'
|
} from 'react-native'
|
||||||
import FlashMessage from 'react-native-flash-message'
|
import FlashMessage from 'react-native-flash-message'
|
||||||
import { LongPressGestureHandler } from 'react-native-gesture-handler'
|
import {
|
||||||
|
Directions,
|
||||||
|
FlingGestureHandler,
|
||||||
|
LongPressGestureHandler,
|
||||||
|
State
|
||||||
|
} from 'react-native-gesture-handler'
|
||||||
import { Zoom, createZoomListComponent } from 'react-native-reanimated-zoom'
|
import { Zoom, createZoomListComponent } from 'react-native-reanimated-zoom'
|
||||||
import { SafeAreaProvider, useSafeAreaInsets } from 'react-native-safe-area-context'
|
import { SafeAreaProvider, useSafeAreaInsets } from 'react-native-safe-area-context'
|
||||||
import saveImage from './ImageViewer/save'
|
import saveImage from './ImageViewer/save'
|
||||||
|
@ -93,6 +98,8 @@ const ScreenImagesViewer = ({
|
||||||
}) => {
|
}) => {
|
||||||
const screenRatio = SCREEN_WIDTH / SCREEN_HEIGHT
|
const screenRatio = SCREEN_WIDTH / SCREEN_HEIGHT
|
||||||
const imageRatio = item.width && item.height ? item.width / item.height : 1
|
const imageRatio = item.width && item.height ? item.width / item.height : 1
|
||||||
|
const imageWidth = item.width || 100
|
||||||
|
const imageHeight = item.height || 100
|
||||||
|
|
||||||
const maxWidthScale = item.width ? (item.width / SCREEN_WIDTH / PixelRatio.get()) * 4 : 0
|
const maxWidthScale = item.width ? (item.width / SCREEN_WIDTH / PixelRatio.get()) * 4 : 0
|
||||||
const maxHeightScale = item.height ? (item.height / SCREEN_WIDTH / PixelRatio.get()) * 4 : 0
|
const maxHeightScale = item.height ? (item.height / SCREEN_WIDTH / PixelRatio.get()) * 4 : 0
|
||||||
|
@ -116,9 +123,13 @@ const ScreenImagesViewer = ({
|
||||||
blurhash={item.blurhash}
|
blurhash={item.blurhash}
|
||||||
dimension={{
|
dimension={{
|
||||||
width:
|
width:
|
||||||
screenRatio > imageRatio ? (item.height || 100) / screenRatio : SCREEN_WIDTH,
|
screenRatio > imageRatio
|
||||||
|
? (SCREEN_HEIGHT / imageHeight) * imageWidth
|
||||||
|
: SCREEN_WIDTH,
|
||||||
height:
|
height:
|
||||||
screenRatio > imageRatio ? SCREEN_HEIGHT : (item.width || 100) * screenRatio
|
screenRatio > imageRatio
|
||||||
|
? SCREEN_HEIGHT
|
||||||
|
: (SCREEN_WIDTH / imageWidth) * imageHeight
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
|
@ -161,6 +172,11 @@ const ScreenImagesViewer = ({
|
||||||
onPress={onPress}
|
onPress={onPress}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
|
<FlingGestureHandler
|
||||||
|
direction={Directions.DOWN}
|
||||||
|
numberOfPointers={1}
|
||||||
|
onEnded={() => navigation.goBack()}
|
||||||
|
>
|
||||||
<LongPressGestureHandler
|
<LongPressGestureHandler
|
||||||
onEnded={() => {
|
onEnded={() => {
|
||||||
analytics('imageviewer_more_press')
|
analytics('imageviewer_more_press')
|
||||||
|
@ -203,7 +219,6 @@ const ScreenImagesViewer = ({
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ZoomFlatList
|
<ZoomFlatList
|
||||||
ref={listRef}
|
|
||||||
data={imageUrls}
|
data={imageUrls}
|
||||||
pagingEnabled
|
pagingEnabled
|
||||||
horizontal
|
horizontal
|
||||||
|
@ -221,6 +236,7 @@ const ScreenImagesViewer = ({
|
||||||
})}
|
})}
|
||||||
/>
|
/>
|
||||||
</LongPressGestureHandler>
|
</LongPressGestureHandler>
|
||||||
|
</FlingGestureHandler>
|
||||||
<Message ref={messageRef} />
|
<Message ref={messageRef} />
|
||||||
</SafeAreaProvider>
|
</SafeAreaProvider>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue