92 lines
2.3 KiB
TypeScript
92 lines
2.3 KiB
TypeScript
import {useCallback} from 'react'
|
|
import {Pressable, View} from 'react-native'
|
|
import Animated, {
|
|
runOnJS,
|
|
useAnimatedStyle,
|
|
useSharedValue,
|
|
withTiming,
|
|
} from 'react-native-reanimated'
|
|
import {useSafeAreaInsets} from 'react-native-safe-area-context'
|
|
|
|
import {
|
|
ScaleAndFadeIn,
|
|
ScaleAndFadeOut,
|
|
} from '#/lib/custom-animations/ScaleAndFade'
|
|
import {useHaptics} from '#/lib/haptics'
|
|
import {atoms as a, useTheme} from '#/alf'
|
|
import {ArrowBottom_Stroke2_Corner0_Rounded as ArrowDownIcon} from '#/components/icons/Arrow'
|
|
import {IS_WEB} from '#/env'
|
|
|
|
const AnimatedPressable = Animated.createAnimatedComponent(Pressable)
|
|
|
|
export function NewMessagesPill({
|
|
onPress: onPressInner,
|
|
}: {
|
|
onPress: () => void
|
|
}) {
|
|
const t = useTheme()
|
|
const playHaptic = useHaptics()
|
|
const {bottom: bottomInset} = useSafeAreaInsets()
|
|
|
|
const scale = useSharedValue(1)
|
|
|
|
const onPressIn = useCallback(() => {
|
|
if (IS_WEB) return
|
|
scale.set(() => withTiming(1.075, {duration: 100}))
|
|
}, [scale])
|
|
|
|
const onPressOut = useCallback(() => {
|
|
if (IS_WEB) return
|
|
scale.set(() => withTiming(1, {duration: 100}))
|
|
}, [scale])
|
|
|
|
const onPress = useCallback(() => {
|
|
runOnJS(playHaptic)()
|
|
onPressInner?.()
|
|
}, [onPressInner, playHaptic])
|
|
|
|
const animatedStyle = useAnimatedStyle(() => ({
|
|
transform: [{scale: scale.get()}],
|
|
}))
|
|
|
|
return (
|
|
<View
|
|
style={[
|
|
a.absolute,
|
|
a.w_full,
|
|
a.z_10,
|
|
a.align_center,
|
|
{
|
|
bottom: bottomInset + 70,
|
|
// Don't prevent scrolling in this area _except_ for in the pill itself
|
|
pointerEvents: 'box-none',
|
|
},
|
|
]}>
|
|
<AnimatedPressable
|
|
style={[
|
|
a.align_center,
|
|
a.justify_center,
|
|
a.rounded_full,
|
|
a.shadow_sm,
|
|
a.border,
|
|
t.atoms.bg,
|
|
t.atoms.border_contrast_low,
|
|
{
|
|
height: 40,
|
|
width: 40,
|
|
alignItems: 'center',
|
|
pointerEvents: 'box-only',
|
|
},
|
|
animatedStyle,
|
|
]}
|
|
entering={ScaleAndFadeIn}
|
|
exiting={ScaleAndFadeOut}
|
|
onPress={onPress}
|
|
onPressIn={onPressIn}
|
|
onPressOut={onPressOut}>
|
|
<ArrowDownIcon size="md" style={[t.atoms.text]} />
|
|
</AnimatedPressable>
|
|
</View>
|
|
)
|
|
}
|