Add zooming to the lightbox

zio/stable
Paul Frazee 2022-12-16 16:32:54 -06:00
parent d7e71e079f
commit c3caf4826e
3 changed files with 115 additions and 26 deletions

View File

@ -1,7 +1,15 @@
import React from 'react' import React from 'react'
import {Image, StyleSheet, useWindowDimensions, View} from 'react-native' import {Image, StyleSheet, useWindowDimensions, View} from 'react-native'
export function Component({uris, index}: {uris: string[]; index: number}) { export function Component({
uris,
index,
isZooming,
}: {
uris: string[]
index: number
isZooming: boolean
}) {
const winDim = useWindowDimensions() const winDim = useWindowDimensions()
const left = index * winDim.width * -1 const left = index * winDim.width * -1
return ( return (
@ -9,7 +17,11 @@ export function Component({uris, index}: {uris: string[]; index: number}) {
{uris.map((uri, i) => ( {uris.map((uri, i) => (
<Image <Image
key={i} key={i}
style={[styles.image, {left: i * winDim.width}]} style={[
styles.image,
{left: i * winDim.width},
isZooming && i !== index ? {opacity: 0} : undefined,
]}
source={{uri}} source={{uri}}
/> />
))} ))}

View File

@ -1,4 +1,4 @@
import React from 'react' import React, {useState} from 'react'
import { import {
Animated, Animated,
StyleSheet, StyleSheet,
@ -8,7 +8,7 @@ import {
} from 'react-native' } from 'react-native'
import {observer} from 'mobx-react-lite' import {observer} from 'mobx-react-lite'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {Swipe, Dir} from '../util/gestures/Swipe' import {SwipeAndZoom, Dir} from '../util/gestures/SwipeAndZoom'
import {useStores} from '../../../state' import {useStores} from '../../../state'
import {useAnimatedValue} from '../../lib/useAnimatedValue' import {useAnimatedValue} from '../../lib/useAnimatedValue'
@ -21,12 +21,17 @@ import * as ImagesLightbox from './Images'
export const Lightbox = observer(function Lightbox() { export const Lightbox = observer(function Lightbox() {
const store = useStores() const store = useStores()
const winDim = useWindowDimensions() const winDim = useWindowDimensions()
const [isZooming, setIsZooming] = useState(false)
const panX = useAnimatedValue(0) const panX = useAnimatedValue(0)
const panY = useAnimatedValue(0) const panY = useAnimatedValue(0)
const zoom = useAnimatedValue(0)
const onClose = () => { const onClose = () => {
store.shell.closeLightbox() store.shell.closeLightbox()
} }
const onSwipeStartDirection = (dir: Dir) => {
setIsZooming(dir === Dir.Zoom)
}
const onSwipeEnd = (dir: Dir) => { const onSwipeEnd = (dir: Dir) => {
if (dir === Dir.Up || dir === Dir.Down) { if (dir === Dir.Up || dir === Dir.Down) {
onClose() onClose()
@ -57,6 +62,7 @@ export const Lightbox = observer(function Lightbox() {
} else if (store.shell.activeLightbox?.name === 'images') { } else if (store.shell.activeLightbox?.name === 'images') {
element = ( element = (
<ImagesLightbox.Component <ImagesLightbox.Component
isZooming={isZooming}
{...(store.shell.activeLightbox as models.ImagesLightbox)} {...(store.shell.activeLightbox as models.ImagesLightbox)}
/> />
) )
@ -66,7 +72,16 @@ export const Lightbox = observer(function Lightbox() {
const translateX = Animated.multiply(panX, winDim.width * -1) const translateX = Animated.multiply(panX, winDim.width * -1)
const translateY = Animated.multiply(panY, winDim.height * -1) const translateY = Animated.multiply(panY, winDim.height * -1)
const swipeTransform = {transform: [{translateX}, {translateY}]} const scale = Animated.add(zoom, 1)
const swipeTransform = {
transform: [
{translateY: winDim.height / 2},
{scale},
{translateY: winDim.height / -2},
{translateX},
{translateY},
],
}
const swipeOpacity = { const swipeOpacity = {
opacity: panY.interpolate({ opacity: panY.interpolate({
inputRange: [-1, 0, 1], inputRange: [-1, 0, 1],
@ -76,15 +91,18 @@ export const Lightbox = observer(function Lightbox() {
return ( return (
<View style={StyleSheet.absoluteFill}> <View style={StyleSheet.absoluteFill}>
<Swipe <SwipeAndZoom
panX={panX} panX={panX}
panY={panY} panY={panY}
zoom={zoom}
swipeEnabled swipeEnabled
zoomEnabled
canSwipeLeft={store.shell.activeLightbox.canSwipeLeft} canSwipeLeft={store.shell.activeLightbox.canSwipeLeft}
canSwipeRight={store.shell.activeLightbox.canSwipeRight} canSwipeRight={store.shell.activeLightbox.canSwipeRight}
canSwipeUp canSwipeUp
canSwipeDown canSwipeDown
hasPriority hasPriority
onSwipeStartDirection={onSwipeStartDirection}
onSwipeEnd={onSwipeEnd}> onSwipeEnd={onSwipeEnd}>
<TouchableWithoutFeedback onPress={onClose}> <TouchableWithoutFeedback onPress={onClose}>
<Animated.View style={[styles.bg, swipeOpacity]} /> <Animated.View style={[styles.bg, swipeOpacity]} />
@ -95,7 +113,7 @@ export const Lightbox = observer(function Lightbox() {
</View> </View>
</TouchableWithoutFeedback> </TouchableWithoutFeedback>
<Animated.View style={swipeTransform}>{element}</Animated.View> <Animated.View style={swipeTransform}>{element}</Animated.View>
</Swipe> </SwipeAndZoom>
</View> </View>
) )
}) })

View File

@ -16,16 +16,19 @@ export enum Dir {
Down, Down,
Left, Left,
Right, Right,
Zoom,
} }
interface Props { interface Props {
panX: Animated.Value panX: Animated.Value
panY: Animated.Value panY: Animated.Value
zoom: Animated.Value
canSwipeLeft?: boolean canSwipeLeft?: boolean
canSwipeRight?: boolean canSwipeRight?: boolean
canSwipeUp?: boolean canSwipeUp?: boolean
canSwipeDown?: boolean canSwipeDown?: boolean
swipeEnabled?: boolean swipeEnabled?: boolean
zoomEnabled?: boolean
hasPriority?: boolean // if has priority, will not release control of the gesture to another gesture hasPriority?: boolean // if has priority, will not release control of the gesture to another gesture
horzDistThresholdDivisor?: number horzDistThresholdDivisor?: number
vertDistThresholdDivisor?: number vertDistThresholdDivisor?: number
@ -36,14 +39,16 @@ interface Props {
children: React.ReactNode children: React.ReactNode
} }
export function Swipe({ export function SwipeAndZoom({
panX, panX,
panY, panY,
zoom,
canSwipeLeft = false, canSwipeLeft = false,
canSwipeRight = false, canSwipeRight = false,
canSwipeUp = false, canSwipeUp = false,
canSwipeDown = false, canSwipeDown = false,
swipeEnabled = true, swipeEnabled = false,
zoomEnabled = false,
hasPriority = false, hasPriority = false,
horzDistThresholdDivisor = 1.75, horzDistThresholdDivisor = 1.75,
vertDistThresholdDivisor = 1.75, vertDistThresholdDivisor = 1.75,
@ -55,6 +60,9 @@ export function Swipe({
}: Props) { }: Props) {
const winDim = useWindowDimensions() const winDim = useWindowDimensions()
const [dir, setDir] = useState<Dir>(Dir.None) const [dir, setDir] = useState<Dir>(Dir.None)
const [initialDistance, setInitialDistance] = useState<number | undefined>(
undefined,
)
const swipeVelocityThreshold = 35 const swipeVelocityThreshold = 35
const swipeHorzDistanceThreshold = winDim.width / horzDistThresholdDivisor const swipeHorzDistanceThreshold = winDim.width / horzDistThresholdDivisor
@ -84,6 +92,7 @@ export function Swipe({
if (d === Dir.Right) return canSwipeRight if (d === Dir.Right) return canSwipeRight
if (d === Dir.Up) return canSwipeUp if (d === Dir.Up) return canSwipeUp
if (d === Dir.Down) return canSwipeDown if (d === Dir.Down) return canSwipeDown
if (d === Dir.Zoom) return zoomEnabled
return false return false
} }
const isHorz = (d: Dir) => d === Dir.Left || d === Dir.Right const isHorz = (d: Dir) => d === Dir.Left || d === Dir.Right
@ -93,34 +102,40 @@ export function Swipe({
event: GestureResponderEvent, event: GestureResponderEvent,
gestureState: PanResponderGestureState, gestureState: PanResponderGestureState,
) => { ) => {
if (swipeEnabled === false) { if (zoomEnabled && gestureState.numberActiveTouches === 2) {
return false return true
} else if (swipeEnabled && gestureState.numberActiveTouches === 1) {
const dx = I18nManager.isRTL ? -gestureState.dx : gestureState.dx
const dy = gestureState.dy
const willHandle =
(isMovingHorizontally(event, gestureState) &&
((dx > 0 && canSwipeLeft) || (dx < 0 && canSwipeRight))) ||
(isMovingVertically(event, gestureState) &&
((dy > 0 && canSwipeUp) || (dy < 0 && canSwipeDown)))
return willHandle
} }
return false
const dx = I18nManager.isRTL ? -gestureState.dx : gestureState.dx
const dy = gestureState.dy
const willHandle =
(isMovingHorizontally(event, gestureState) &&
((dx > 0 && canSwipeLeft) || (dx < 0 && canSwipeRight))) ||
(isMovingVertically(event, gestureState) &&
((dy > 0 && canSwipeUp) || (dy < 0 && canSwipeDown)))
return willHandle
} }
const startGesture = () => { const startGesture = () => {
setDir(Dir.None) setDir(Dir.None)
onSwipeStart?.() onSwipeStart?.()
// reset all state
panX.stopAnimation() panX.stopAnimation()
// @ts-expect-error: _value is private, but docs use it as well // @ts-expect-error: _value is private, but docs use it as well
panX.setOffset(panX._value) panX.setOffset(panX._value)
panY.stopAnimation() panY.stopAnimation()
// @ts-expect-error: _value is private, but docs use it as well // @ts-expect-error: _value is private, but docs use it as well
panY.setOffset(panY._value) panY.setOffset(panY._value)
zoom.stopAnimation()
// @ts-expect-error: _value is private, but docs use it as well
zoom.setOffset(zoom._value)
setInitialDistance(undefined)
} }
const respondToGesture = ( const respondToGesture = (
_: GestureResponderEvent, e: GestureResponderEvent,
gestureState: PanResponderGestureState, gestureState: PanResponderGestureState,
) => { ) => {
const dx = I18nManager.isRTL ? -gestureState.dx : gestureState.dx const dx = I18nManager.isRTL ? -gestureState.dx : gestureState.dx
@ -128,8 +143,10 @@ export function Swipe({
let newDir = Dir.None let newDir = Dir.None
if (dir === Dir.None) { if (dir === Dir.None) {
// establish if the user is swiping horz or vert // establish if the user is swiping horz or vert, or zooming
if (Math.abs(dx) > Math.abs(dy)) { if (gestureState.numberActiveTouches === 2) {
newDir = Dir.Zoom
} else if (Math.abs(dx) > Math.abs(dy)) {
newDir = dx > 0 ? Dir.Left : Dir.Right newDir = dx > 0 ? Dir.Left : Dir.Right
} else { } else {
newDir = dy > 0 ? Dir.Up : Dir.Down newDir = dy > 0 ? Dir.Up : Dir.Down
@ -140,9 +157,37 @@ export function Swipe({
} else if (isVert(dir)) { } else if (isVert(dir)) {
// direction update // direction update
newDir = dy > 0 ? Dir.Up : Dir.Down newDir = dy > 0 ? Dir.Up : Dir.Down
} else {
newDir = dir
} }
if (isHorz(newDir)) { if (newDir === Dir.Zoom) {
if (zoomEnabled) {
if (gestureState.numberActiveTouches === 2) {
// zoom in/out
const x0 = e.nativeEvent.touches[0].pageX
const x1 = e.nativeEvent.touches[1].pageX
const y0 = e.nativeEvent.touches[0].pageY
const y1 = e.nativeEvent.touches[1].pageY
const zoomDx = Math.abs(x0 - x1)
const zoomDy = Math.abs(y0 - y1)
const dist = Math.sqrt(zoomDx * zoomDx + zoomDy * zoomDy) / 100
if (
typeof initialDistance === 'undefined' ||
dist - initialDistance < 0
) {
setInitialDistance(dist)
} else {
zoom.setValue(dist - initialDistance)
}
} else {
// pan around after zooming
panX.setValue(clamp(dx / winDim.width, -1, 1) * -1)
panY.setValue(clamp(dy / winDim.height, -1, 1) * -1)
}
}
} else if (isHorz(newDir)) {
// swipe left/right
panX.setValue( panX.setValue(
clamp( clamp(
dx / swipeHorzDistanceThreshold, dx / swipeHorzDistanceThreshold,
@ -152,6 +197,7 @@ export function Swipe({
) )
panY.setValue(0) panY.setValue(0)
} else if (isVert(newDir)) { } else if (isVert(newDir)) {
// swipe up/down
panY.setValue( panY.setValue(
clamp( clamp(
dy / swipeVertDistanceThreshold, dy / swipeVertDistanceThreshold,
@ -175,7 +221,7 @@ export function Swipe({
_: GestureResponderEvent, _: GestureResponderEvent,
gestureState: PanResponderGestureState, gestureState: PanResponderGestureState,
) => { ) => {
const finish = (finalDir: dir) => () => { const finish = (finalDir: Dir) => () => {
if (finalDir !== Dir.None) { if (finalDir !== Dir.None) {
onSwipeEnd?.(finalDir) onSwipeEnd?.(finalDir)
} }
@ -190,6 +236,7 @@ export function Swipe({
(Math.abs(gestureState.dx) > swipeHorzDistanceThreshold / 4 || (Math.abs(gestureState.dx) > swipeHorzDistanceThreshold / 4 ||
Math.abs(gestureState.vx) > swipeVelocityThreshold) Math.abs(gestureState.vx) > swipeVelocityThreshold)
) { ) {
// horizontal swipe reset
Animated.timing(panX, { Animated.timing(panX, {
toValue: dir === Dir.Left ? -1 : 1, toValue: dir === Dir.Left ? -1 : 1,
duration: 100, duration: 100,
@ -200,18 +247,30 @@ export function Swipe({
(Math.abs(gestureState.dy) > swipeVertDistanceThreshold / 8 || (Math.abs(gestureState.dy) > swipeVertDistanceThreshold / 8 ||
Math.abs(gestureState.vy) > swipeVelocityThreshold) Math.abs(gestureState.vy) > swipeVelocityThreshold)
) { ) {
// vertical swipe reset
Animated.timing(panY, { Animated.timing(panY, {
toValue: dir === Dir.Up ? -1 : 1, toValue: dir === Dir.Up ? -1 : 1,
duration: 100, duration: 100,
useNativeDriver, useNativeDriver,
}).start(finish(dir)) }).start(finish(dir))
} else { } else {
// zoom (or no direction) reset
onSwipeEnd?.(Dir.None) onSwipeEnd?.(Dir.None)
Animated.timing(panX, { Animated.timing(panX, {
toValue: 0, toValue: 0,
duration: 100, duration: 100,
useNativeDriver, useNativeDriver,
}).start(finish(Dir.None)) }).start()
Animated.timing(panY, {
toValue: 0,
duration: 100,
useNativeDriver,
}).start()
Animated.timing(zoom, {
toValue: 0,
duration: 100,
useNativeDriver,
}).start()
} }
} }