Add HorzSwipe gesture and integrate it into the ViewSelector

zio/stable
Paul Frazee 2022-12-07 15:51:06 -06:00
parent 79d5708b69
commit 9ce02dff5b
6 changed files with 191 additions and 109 deletions

View File

@ -66,6 +66,7 @@ export interface ComposerOpts {
} }
export class ShellUiModel { export class ShellUiModel {
isViewControllingSwipes = false
isModalActive = false isModalActive = false
activeModal: activeModal:
| ConfirmModel | ConfirmModel
@ -80,6 +81,10 @@ export class ShellUiModel {
makeAutoObservable(this) makeAutoObservable(this)
} }
setViewControllingSwipes(v: boolean) {
this.isViewControllingSwipes = v
}
openModal( openModal(
modal: modal:
| ConfirmModel | ConfirmModel

View File

@ -1,10 +1,11 @@
import React, {createRef, useState, useMemo} from 'react' import React, {createRef, useState, useMemo} from 'react'
import {StyleSheet, Text, TouchableWithoutFeedback, View} from 'react-native' import {
import Animated, { Animated,
SharedValue, StyleSheet,
useAnimatedStyle, Text,
interpolate, TouchableWithoutFeedback,
} from 'react-native-reanimated' View,
} from 'react-native'
import {colors} from '../../lib/styles' import {colors} from '../../lib/styles'
interface Layout { interface Layout {
@ -12,17 +13,15 @@ interface Layout {
width: number width: number
} }
const DEFAULT_SWIPE_GESTURE_INTERP = {value: 0}
export function Selector({ export function Selector({
selectedIndex, selectedIndex,
items, items,
swipeGestureInterp, panX,
onSelect, onSelect,
}: { }: {
selectedIndex: number selectedIndex: number
items: string[] items: string[]
swipeGestureInterp?: SharedValue<number> panX: Animated.Value
onSelect?: (index: number) => void onSelect?: (index: number) => void
}) { }) {
const [itemLayouts, setItemLayouts] = useState<undefined | Layout[]>( const [itemLayouts, setItemLayouts] = useState<undefined | Layout[]>(
@ -43,27 +42,24 @@ export function Selector({
return [left, middle, right] return [left, middle, right]
}, [selectedIndex, items, itemLayouts]) }, [selectedIndex, items, itemLayouts])
const interp = swipeGestureInterp || DEFAULT_SWIPE_GESTURE_INTERP const underlineStyle = {
const underlinePos = useAnimatedStyle(() => { left: panX.interpolate({
const other = inputRange: [-1, 0, 1],
interp.value === 0 outputRange: [
? currentLayouts[1] currentLayouts[0].x,
: interp.value < 0 currentLayouts[1].x,
? currentLayouts[0] currentLayouts[2].x,
: currentLayouts[2] ],
return { }),
left: interpolate( width: panX.interpolate({
Math.abs(interp.value), inputRange: [-1, 0, 1],
[0, 1], outputRange: [
[currentLayouts[1].x, other.x], currentLayouts[0].width,
), currentLayouts[1].width,
width: interpolate( currentLayouts[2].width,
Math.abs(interp.value), ],
[0, 1], }),
[currentLayouts[1].width, other.width], }
),
}
}, [currentLayouts, interp])
const onLayout = () => { const onLayout = () => {
const promises = [] const promises = []
@ -89,7 +85,7 @@ export function Selector({
return ( return (
<View style={[styles.outer]} onLayout={onLayout}> <View style={[styles.outer]} onLayout={onLayout}>
<Animated.View style={[styles.underline, underlinePos]} /> <Animated.View style={[styles.underline, underlineStyle]} />
{items.map((item, i) => { {items.map((item, i) => {
const selected = i === selectedIndex const selected = i === selectedIndex
return ( return (

View File

@ -1,15 +1,13 @@
import React, {useEffect, useState, useMemo} from 'react' import React, {useEffect, useState, useMemo} from 'react'
import {FlatList, StyleSheet, View} from 'react-native' import {FlatList, StyleSheet, View} from 'react-native'
import {GestureDetector, Gesture} from 'react-native-gesture-handler'
import {useSharedValue, withTiming, runOnJS} from 'react-native-reanimated'
import {Selector} from './Selector' import {Selector} from './Selector'
import {HorzSwipe} from './gestures/HorzSwipe'
import {useAnimatedValue} from '../../lib/useAnimatedValue'
import {useStores} from '../../../state'
const HEADER_ITEM = {_reactKey: '__header__'} const HEADER_ITEM = {_reactKey: '__header__'}
const SELECTOR_ITEM = {_reactKey: '__selector__'} const SELECTOR_ITEM = {_reactKey: '__selector__'}
const STICKY_HEADER_INDICES = [1] const STICKY_HEADER_INDICES = [1]
const SWIPE_GESTURE_MAX_DISTANCE = 200
const SWIPE_GESTURE_VEL_TRIGGER = 2000
const SWIPE_GESTURE_HIT_SLOP = {left: -50, top: 0, right: 0, bottom: 0} // we ignore the left 20 pixels to avoid conflicts with the page-nav gesture
export function ViewSelector({ export function ViewSelector({
sections, sections,
@ -32,72 +30,26 @@ export function ViewSelector({
onRefresh?: () => void onRefresh?: () => void
onEndReached?: (info: {distanceFromEnd: number}) => void onEndReached?: (info: {distanceFromEnd: number}) => void
}) { }) {
const store = useStores()
const [selectedIndex, setSelectedIndex] = useState<number>(0) const [selectedIndex, setSelectedIndex] = useState<number>(0)
const swipeGestureInterp = useSharedValue<number>(0) const panX = useAnimatedValue(0)
// events // events
// = // =
const onSwipeEnd = (dx: number) => {
if (dx !== 0) {
setSelectedIndex(selectedIndex + dx)
}
}
const onPressSelection = (index: number) => setSelectedIndex(index) const onPressSelection = (index: number) => setSelectedIndex(index)
useEffect(() => { useEffect(() => {
store.shell.setViewControllingSwipes(
Boolean(swipeEnabled) && selectedIndex > 0,
)
onSelectView?.(selectedIndex) onSelectView?.(selectedIndex)
}, [selectedIndex]) }, [selectedIndex])
// gestures
// =
const swipeGesture = useMemo(() => {
if (!swipeEnabled) return undefined
return Gesture.Pan()
.hitSlop(SWIPE_GESTURE_HIT_SLOP)
.onUpdate(e => {
// calculate [-1, 1] range for the gesture
const clamped = Math.min(e.translationX, SWIPE_GESTURE_MAX_DISTANCE)
const reversed = clamped * -1
const scaled = reversed / SWIPE_GESTURE_MAX_DISTANCE
swipeGestureInterp.value = scaled
})
.onEnd(e => {
const vx = e.velocityX
if (
swipeGestureInterp.value >= 0.5 ||
(vx < 0 && Math.abs(vx) > SWIPE_GESTURE_VEL_TRIGGER)
) {
// swiped to next
if (selectedIndex < sections.length - 1) {
// interp to the next item's position...
swipeGestureInterp.value = withTiming(1, {duration: 100}, () => {
// ...then update the index, which triggers the useEffect() below [1]
runOnJS(setSelectedIndex)(selectedIndex + 1)
})
} else {
swipeGestureInterp.value = withTiming(0, {duration: 100})
}
} else if (
swipeGestureInterp.value <= -0.5 ||
(vx > 0 && Math.abs(vx) > SWIPE_GESTURE_VEL_TRIGGER)
) {
// swiped to prev
if (selectedIndex > 0) {
// interp to the prev item's position...
swipeGestureInterp.value = withTiming(-1, {duration: 100}, () => {
// ...then update the index, which triggers the useEffect() below [1]
runOnJS(setSelectedIndex)(selectedIndex - 1)
})
} else {
swipeGestureInterp.value = withTiming(0, {duration: 100})
}
} else {
swipeGestureInterp.value = withTiming(0, {duration: 100})
}
})
}, [swipeEnabled, swipeGestureInterp, selectedIndex, sections.length])
useEffect(() => {
// [1] completes the swipe gesture animation by resetting the interp value
// this has to be done as an effect so that it occurs *after* the selectedIndex has been updated
swipeGestureInterp.value = 0
}, [swipeGestureInterp, selectedIndex])
// rendering // rendering
// = // =
@ -111,8 +63,8 @@ export function ViewSelector({
return ( return (
<Selector <Selector
items={sections} items={sections}
panX={panX}
selectedIndex={selectedIndex} selectedIndex={selectedIndex}
swipeGestureInterp={swipeGestureInterp}
onSelect={onPressSelection} onSelect={onPressSelection}
/> />
) )
@ -122,21 +74,24 @@ export function ViewSelector({
} }
const data = [HEADER_ITEM, SELECTOR_ITEM, ...items] const data = [HEADER_ITEM, SELECTOR_ITEM, ...items]
const listEl = ( return (
<FlatList <HorzSwipe
data={data} panX={panX}
keyExtractor={item => item._reactKey} swipeEnabled={swipeEnabled || false}
renderItem={renderItemInternal} canSwipeLeft={selectedIndex > 0}
stickyHeaderIndices={STICKY_HEADER_INDICES} canSwipeRight={selectedIndex < sections.length - 1}
refreshing={refreshing} onSwipeEnd={onSwipeEnd}>
onRefresh={onRefresh} <FlatList
onEndReached={onEndReached} data={data}
/> keyExtractor={item => item._reactKey}
renderItem={renderItemInternal}
stickyHeaderIndices={STICKY_HEADER_INDICES}
refreshing={refreshing}
onRefresh={onRefresh}
onEndReached={onEndReached}
/>
</HorzSwipe>
) )
if (swipeEnabled) {
return <GestureDetector gesture={swipeGesture}>{listEl}</GestureDetector>
}
return listEl
} }
const styles = StyleSheet.create({}) const styles = StyleSheet.create({})

View File

@ -0,0 +1,126 @@
import React from 'react'
import {
Animated,
GestureResponderEvent,
I18nManager,
PanResponder,
PanResponderGestureState,
useWindowDimensions,
View,
} from 'react-native'
import {clamp} from 'lodash'
interface Props {
panX: Animated.Value
canSwipeLeft: boolean
canSwipeRight: boolean
swipeEnabled: boolean
onSwipeStart?: () => void
onSwipeEnd?: (dx: number) => void
children: React.ReactNode
}
export function HorzSwipe({
panX,
canSwipeLeft,
canSwipeRight,
swipeEnabled = true,
onSwipeStart,
onSwipeEnd,
children,
}: Props) {
const winDim = useWindowDimensions()
const swipeVelocityThreshold = 35
const swipeDistanceThreshold = winDim.width / 1.75
const isMovingHorizontally = (
_: GestureResponderEvent,
gestureState: PanResponderGestureState,
) => {
return (
Math.abs(gestureState.dx) > Math.abs(gestureState.dy * 1.5) &&
Math.abs(gestureState.vx) > Math.abs(gestureState.vy * 1.5)
)
}
const canMoveScreen = (
event: GestureResponderEvent,
gestureState: PanResponderGestureState,
) => {
if (swipeEnabled === false) {
return false
}
const diffX = I18nManager.isRTL ? -gestureState.dx : gestureState.dx
return (
isMovingHorizontally(event, gestureState) &&
((diffX > 0 && canSwipeLeft) || (diffX < 0 && canSwipeRight))
)
}
const startGesture = () => {
onSwipeStart?.()
// TODO
// if (keyboardDismissMode === 'on-drag') {
// Keyboard.dismiss()
// }
panX.stopAnimation()
// @ts-expect-error: _value is private, but docs use it as well
panX.setOffset(panX._value)
}
const respondToGesture = (
_: GestureResponderEvent,
gestureState: PanResponderGestureState,
) => {
const diffX = I18nManager.isRTL ? -gestureState.dx : gestureState.dx
if (
// swiping left
(diffX > 0 && !canSwipeLeft) ||
// swiping right
(diffX < 0 && !canSwipeRight)
) {
return
}
panX.setValue(clamp(diffX / swipeDistanceThreshold, -1, 1) * -1)
}
const finishGesture = (
_: GestureResponderEvent,
gestureState: PanResponderGestureState,
) => {
panX.flattenOffset()
panX.setValue(0)
if (
Math.abs(gestureState.dx) > Math.abs(gestureState.dy) &&
Math.abs(gestureState.vx) > Math.abs(gestureState.vy) &&
(Math.abs(gestureState.dx) > swipeDistanceThreshold / 3 ||
Math.abs(gestureState.vx) > swipeVelocityThreshold)
) {
onSwipeEnd?.(((gestureState.dx / Math.abs(gestureState.dx)) * -1) | 0)
} else {
onSwipeEnd?.(0)
}
}
const panResponder = PanResponder.create({
onMoveShouldSetPanResponder: canMoveScreen,
onMoveShouldSetPanResponderCapture: canMoveScreen,
onPanResponderGrant: startGesture,
onPanResponderMove: respondToGesture,
onPanResponderTerminate: finishGesture,
onPanResponderRelease: finishGesture,
onPanResponderTerminationRequest: () => true,
})
return (
<View {...panResponder.panHandlers} style={{flex: 1}}>
{children}
</View>
)
}

View File

@ -140,7 +140,6 @@ export const Menu = ({navIdx, visible}: ScreenParams) => {
} }
label="Settings" label="Settings"
url="/settings" url="/settings"
count={store.me.notificationCount}
/> />
</View> </View>
<View style={styles.section}> <View style={styles.section}>

View File

@ -237,6 +237,7 @@ export const Profile = observer(({navIdx, visible, params}: ScreenParams) => {
/> />
) : uiState.profile.hasLoaded ? ( ) : uiState.profile.hasLoaded ? (
<ViewSelector <ViewSelector
swipeEnabled
sections={uiState.selectorItems} sections={uiState.selectorItems}
items={items} items={items}
renderHeader={renderHeader} renderHeader={renderHeader}