Revert change in FAB animation (#5465)
This commit is contained in:
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {impactAsync, ImpactFeedbackStyle} from 'expo-haptics'
|
import {impactAsync, ImpactFeedbackStyle} from 'expo-haptics'
|
||||||
|
|
||||||
import {isIOS, isWeb} from 'platform/detection'
|
import {isIOS, isWeb} from '#/platform/detection'
|
||||||
import {useHapticsDisabled} from 'state/preferences/disable-haptics'
|
import {useHapticsDisabled} from '#/state/preferences/disable-haptics'
|
||||||
|
|
||||||
export function useHaptics() {
|
export function useHaptics() {
|
||||||
const isHapticsDisabled = useHapticsDisabled()
|
const isHapticsDisabled = useHapticsDisabled()
|
||||||
|
|||||||
@@ -1,20 +1,16 @@
|
|||||||
import React, {ComponentProps} from 'react'
|
import React, {ComponentProps} from 'react'
|
||||||
import {StyleSheet, TouchableWithoutFeedback} from 'react-native'
|
import {StyleSheet, TouchableWithoutFeedback} from 'react-native'
|
||||||
import Animated, {
|
import Animated, {useAnimatedStyle, withTiming} from 'react-native-reanimated'
|
||||||
Easing,
|
|
||||||
useAnimatedStyle,
|
|
||||||
withTiming,
|
|
||||||
} from 'react-native-reanimated'
|
|
||||||
import {useSafeAreaInsets} from 'react-native-safe-area-context'
|
import {useSafeAreaInsets} from 'react-native-safe-area-context'
|
||||||
import {LinearGradient} from 'expo-linear-gradient'
|
import {LinearGradient} from 'expo-linear-gradient'
|
||||||
|
|
||||||
|
import {useHaptics} from '#/lib/haptics'
|
||||||
import {useMinimalShellFabTransform} from '#/lib/hooks/useMinimalShellTransform'
|
import {useMinimalShellFabTransform} from '#/lib/hooks/useMinimalShellTransform'
|
||||||
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
|
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
|
||||||
import {clamp} from '#/lib/numbers'
|
import {clamp} from '#/lib/numbers'
|
||||||
import {gradients} from '#/lib/styles'
|
import {gradients} from '#/lib/styles'
|
||||||
import {isWeb} from '#/platform/detection'
|
import {isWeb} from '#/platform/detection'
|
||||||
import {useHaptics} from 'lib/haptics'
|
import {useHapticsDisabled} from '#/state/preferences'
|
||||||
import {useHapticsDisabled} from 'state/preferences'
|
|
||||||
import {useInteractionState} from '#/components/hooks/useInteractionState'
|
import {useInteractionState} from '#/components/hooks/useInteractionState'
|
||||||
|
|
||||||
export interface FABProps
|
export interface FABProps
|
||||||
@@ -26,14 +22,14 @@ export interface FABProps
|
|||||||
export function FABInner({testID, icon, onPress, ...props}: FABProps) {
|
export function FABInner({testID, icon, onPress, ...props}: FABProps) {
|
||||||
const insets = useSafeAreaInsets()
|
const insets = useSafeAreaInsets()
|
||||||
const {isMobile, isTablet} = useWebMediaQueries()
|
const {isMobile, isTablet} = useWebMediaQueries()
|
||||||
|
const playHaptic = useHaptics()
|
||||||
|
const isHapticsDisabled = useHapticsDisabled()
|
||||||
const fabMinimalShellTransform = useMinimalShellFabTransform()
|
const fabMinimalShellTransform = useMinimalShellFabTransform()
|
||||||
const {
|
const {
|
||||||
state: isPressed,
|
state: pressed,
|
||||||
onIn: onPressIn,
|
onIn: onPressIn,
|
||||||
onOut: onPressOut,
|
onOut: onPressOut,
|
||||||
} = useInteractionState()
|
} = useInteractionState()
|
||||||
const playHaptic = useHaptics()
|
|
||||||
const isHapticsDisabled = useHapticsDisabled()
|
|
||||||
|
|
||||||
const size = isTablet ? styles.sizeLarge : styles.sizeRegular
|
const size = isTablet ? styles.sizeLarge : styles.sizeRegular
|
||||||
|
|
||||||
@@ -41,22 +37,17 @@ export function FABInner({testID, icon, onPress, ...props}: FABProps) {
|
|||||||
? {right: 50, bottom: 50}
|
? {right: 50, bottom: 50}
|
||||||
: {right: 24, bottom: clamp(insets.bottom, 15, 60) + 15}
|
: {right: 24, bottom: clamp(insets.bottom, 15, 60) + 15}
|
||||||
|
|
||||||
const animatedStyle = useAnimatedStyle(() => ({
|
const scale = useAnimatedStyle(() => ({
|
||||||
transform: [
|
transform: [{scale: withTiming(pressed ? 0.95 : 1)}],
|
||||||
{
|
|
||||||
scale: withTiming(isPressed ? 1.1 : 1, {
|
|
||||||
duration: 250,
|
|
||||||
easing: Easing.out(Easing.quad),
|
|
||||||
}),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}))
|
}))
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<TouchableWithoutFeedback
|
<TouchableWithoutFeedback
|
||||||
testID={testID}
|
testID={testID}
|
||||||
|
onPressIn={onPressIn}
|
||||||
|
onPressOut={onPressOut}
|
||||||
onPress={e => {
|
onPress={e => {
|
||||||
playHaptic()
|
playHaptic('Light')
|
||||||
setTimeout(
|
setTimeout(
|
||||||
() => {
|
() => {
|
||||||
onPress?.(e)
|
onPress?.(e)
|
||||||
@@ -64,8 +55,6 @@ export function FABInner({testID, icon, onPress, ...props}: FABProps) {
|
|||||||
isHapticsDisabled ? 0 : 75,
|
isHapticsDisabled ? 0 : 75,
|
||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
onPressIn={onPressIn}
|
|
||||||
onPressOut={onPressOut}
|
|
||||||
{...props}>
|
{...props}>
|
||||||
<Animated.View
|
<Animated.View
|
||||||
style={[
|
style={[
|
||||||
@@ -74,7 +63,7 @@ export function FABInner({testID, icon, onPress, ...props}: FABProps) {
|
|||||||
tabletSpacing,
|
tabletSpacing,
|
||||||
isMobile && fabMinimalShellTransform,
|
isMobile && fabMinimalShellTransform,
|
||||||
]}>
|
]}>
|
||||||
<Animated.View style={animatedStyle}>
|
<Animated.View style={scale}>
|
||||||
<LinearGradient
|
<LinearGradient
|
||||||
colors={[gradients.blueLight.start, gradients.blueLight.end]}
|
colors={[gradients.blueLight.start, gradients.blueLight.end]}
|
||||||
start={{x: 0, y: 0}}
|
start={{x: 0, y: 0}}
|
||||||
|
|||||||
Reference in New Issue
Block a user