Created
June 16, 2020 10:54
-
-
Save iremlopsum/a149f74240c3be7b017da9f08273292c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { memo, useRef, useEffect } from 'react' | |
import { StyleProp, ViewStyle } from 'react-native' | |
import Animated, { | |
Value, | |
Node, | |
interpolate, | |
Extrapolate, | |
concat, | |
} from 'react-native-reanimated' | |
import size from '../styles/size' | |
import { useSpringTransition, ReText } from 'react-native-redash' | |
const SINGLE_ELEMENT_DELAY = 85 | |
export const SPRING_CONFIG = { | |
damping: 80, | |
mass: 6, | |
stiffness: 350, | |
overshootClamping: false, | |
restDisplacementThreshold: 0.001, | |
restSpeedThreshold: 0.001, | |
} | |
interface Props { | |
children: JSX.Element | JSX.Element[] | |
animation?: 'fadeInUp' | 'scaleInUp' | 'slideInRight' | 'fadeInDown' | |
type?: 'mount' | 'interpolation' | 'animatedChange' | 'stateChange' | |
staggerTime?: number | undefined | |
springConfig?: typeof SPRING_CONFIG | |
hidden?: boolean | |
interpolationValue?: Value<number> | Node<number> | |
animatedValue?: Value<number> | Node<number> | |
stateValue?: boolean | |
staggerIndex?: number | |
style?: StyleProp<Animated.AnimateStyle<ViewStyle>> | |
initialDelay?: number | |
} | |
function createPaddingForValue( | |
side: 'left' | 'right', | |
type: Props['type'], | |
staggerIndex: number | undefined, | |
): number { | |
let value = side === 'left' ? 0 : 2 | |
if (type === 'interpolation' || type === 'animatedChange') { | |
const leftPadding = 0.1 * (staggerIndex || 0) | |
const rightPadding = Math.min(1.5 + 0.1 * (staggerIndex || 0), 2) | |
value = side === 'left' ? leftPadding : rightPadding | |
} | |
return value | |
} | |
function createInputRange( | |
type: Props['type'], | |
staggerIndex: Props['staggerIndex'], | |
): number[] { | |
return [ | |
createPaddingForValue('left', type, staggerIndex), | |
1, | |
createPaddingForValue('right', type, staggerIndex), | |
] | |
} | |
function createYValue( | |
type: Props['type'], | |
animation: Props['animation'], | |
animatedValue: Value<number> | Node<number>, | |
staggerIndex: Props['staggerIndex'], | |
): Node<number> { | |
switch (animation) { | |
case 'fadeInUp': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [size.verticalScale(100), 0, -size.verticalScale(100)], | |
}) | |
case 'fadeInDown': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [-size.verticalScale(100), 0, size.verticalScale(100)], | |
}) | |
case 'scaleInUp': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [size.verticalScale(50), 0, -size.verticalScale(50)], | |
}) | |
default: | |
return new Value(0) | |
} | |
} | |
function createOpacityValue( | |
type: Props['type'], | |
animation: Props['animation'], | |
animatedValue: Value<number> | Node<number>, | |
staggerIndex: Props['staggerIndex'], | |
): Node<number> { | |
switch (animation) { | |
case 'fadeInUp': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [0, 1, 0], | |
}) | |
case 'fadeInDown': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [0, 1, 0], | |
}) | |
case 'scaleInUp': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [0, 1, 0], | |
}) | |
default: | |
return new Value(1) | |
} | |
} | |
function createScaleValue( | |
type: Props['type'], | |
animation: Props['animation'], | |
animatedValue: Value<number> | Node<number>, | |
staggerIndex: Props['staggerIndex'], | |
): Node<number> { | |
switch (animation) { | |
case 'scaleInUp': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [1.05, 1, 0.95], | |
}) | |
default: | |
return new Value(1) | |
} | |
} | |
function createXValue( | |
type: Props['type'], | |
animation: Props['animation'], | |
animatedValue: Value<number> | Node<number>, | |
staggerIndex: Props['staggerIndex'], | |
): Node<number> { | |
switch (animation) { | |
case 'slideInRight': | |
return interpolate(animatedValue, { | |
inputRange: createInputRange(type, staggerIndex), | |
outputRange: [100, 0, -100], | |
extrapolate: Extrapolate.CLAMP, | |
}) | |
default: | |
return new Value(0) | |
} | |
} | |
function getAnimatedValue( | |
type: Props['type'], | |
mountAnimatedValue: Value<number> | Node<number>, | |
interpolationValue?: Value<number> | Node<number>, | |
animatedValue?: Value<number> | Node<number>, | |
stateAnimatedValue?: Value<number> | Node<number>, | |
): Value<number> | Node<number> { | |
if (type === 'interpolation' && interpolationValue) { | |
return interpolationValue | |
} else if (type === 'animatedChange' && animatedValue) { | |
return animatedValue | |
} else if (type === 'stateChange' && stateAnimatedValue) { | |
return stateAnimatedValue | |
} | |
return mountAnimatedValue | |
} | |
const AnimateComponent = ({ | |
children, | |
animation = 'fadeInUp', | |
interpolationValue, | |
animatedValue, | |
stateValue = false, | |
type = 'mount', | |
staggerIndex = 0, | |
staggerTime: delay = SINGLE_ELEMENT_DELAY, | |
style = {}, | |
initialDelay = 0, | |
}: Props): JSX.Element => { | |
const mountAnimatedValue = useRef(new Value(0)).current | |
const stateAnimatedValue = useSpringTransition(stateValue, SPRING_CONFIG) | |
useEffect(() => { | |
if (type === 'mount') { | |
const timer = setTimeout(() => { | |
Animated.spring(mountAnimatedValue, { | |
toValue: 1, | |
...SPRING_CONFIG, | |
}).start() | |
}, staggerIndex * delay + initialDelay) | |
return (): void => clearTimeout(timer) | |
} | |
// eslint-disable-next-line react-hooks/exhaustive-deps | |
}, []) | |
const animatedValueToUse = getAnimatedValue( | |
type, | |
mountAnimatedValue, | |
interpolationValue, | |
animatedValue, | |
stateAnimatedValue, | |
) | |
const translateY = createYValue( | |
type, | |
animation, | |
animatedValueToUse, | |
staggerIndex, | |
) | |
const translateX = createXValue( | |
type, | |
animation, | |
animatedValueToUse, | |
staggerIndex, | |
) | |
const scale = createScaleValue( | |
type, | |
animation, | |
animatedValueToUse, | |
staggerIndex, | |
) | |
const opacity = createOpacityValue( | |
type, | |
animation, | |
animatedValueToUse, | |
staggerIndex, | |
) | |
return ( | |
<Animated.View | |
style={[ | |
style, | |
{ opacity, transform: [{ translateY }, { translateX }, { scale }] }, | |
]}> | |
{children} | |
</Animated.View> | |
) | |
} | |
export default memo(AnimateComponent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment