mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-04-23 20:10:49 +08:00
feat: add memoization of spring for stack
This commit is contained in:
@@ -94,6 +94,86 @@ const {
|
||||
Value,
|
||||
} = Animated;
|
||||
|
||||
// We need to be prepared for both version of reanimated. With and w/out proc
|
||||
let memoizedSpring = spring;
|
||||
// @ts-ignore
|
||||
if (Animated.proc) {
|
||||
// @ts-ignore
|
||||
const springHelper = Animated.proc(
|
||||
(
|
||||
finished: Animated.Value<number>,
|
||||
velocity: Animated.Value<number>,
|
||||
position: Animated.Value<number>,
|
||||
time: Animated.Value<number>,
|
||||
prevPosition: Animated.Value<number>,
|
||||
toValue: Animated.Adaptable<number>,
|
||||
damping: Animated.Adaptable<number>,
|
||||
mass: Animated.Adaptable<number>,
|
||||
stiffness: Animated.Adaptable<number>,
|
||||
overshootClamping: Animated.Adaptable<number>,
|
||||
restSpeedThreshold: Animated.Adaptable<number>,
|
||||
restDisplacementThreshold: Animated.Adaptable<number>,
|
||||
clock: Animated.Clock
|
||||
) =>
|
||||
spring(
|
||||
clock,
|
||||
{
|
||||
finished,
|
||||
velocity,
|
||||
position,
|
||||
time,
|
||||
// @ts-ignore
|
||||
prevPosition,
|
||||
},
|
||||
{
|
||||
toValue,
|
||||
damping,
|
||||
mass,
|
||||
stiffness,
|
||||
overshootClamping,
|
||||
restDisplacementThreshold,
|
||||
restSpeedThreshold,
|
||||
}
|
||||
)
|
||||
);
|
||||
|
||||
// @ts-ignore
|
||||
memoizedSpring = function(
|
||||
clock: Animated.Clock,
|
||||
state: {
|
||||
finished: Animated.Value<number>;
|
||||
velocity: Animated.Value<number>;
|
||||
position: Animated.Value<number>;
|
||||
time: Animated.Value<number>;
|
||||
},
|
||||
config: {
|
||||
toValue: Animated.Adaptable<number>;
|
||||
damping: Animated.Adaptable<number>;
|
||||
mass: Animated.Adaptable<number>;
|
||||
stiffness: Animated.Adaptable<number>;
|
||||
overshootClamping: Animated.Adaptable<boolean>;
|
||||
restSpeedThreshold: Animated.Adaptable<number>;
|
||||
restDisplacementThreshold: Animated.Adaptable<number>;
|
||||
}
|
||||
) {
|
||||
return springHelper(
|
||||
state.finished,
|
||||
state.velocity,
|
||||
state.position,
|
||||
state.time,
|
||||
new Value(0),
|
||||
config.toValue,
|
||||
config.damping,
|
||||
config.mass,
|
||||
config.stiffness,
|
||||
config.overshootClamping,
|
||||
config.restSpeedThreshold,
|
||||
config.restDisplacementThreshold,
|
||||
clock
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
export default class Card extends React.Component<Props> {
|
||||
static defaultProps = {
|
||||
overlayEnabled: Platform.OS !== 'ios',
|
||||
@@ -219,7 +299,7 @@ export default class Card extends React.Component<Props> {
|
||||
cond(
|
||||
eq(isVisible, 1),
|
||||
openingSpec.timing === 'spring'
|
||||
? spring(
|
||||
? memoizedSpring(
|
||||
this.clock,
|
||||
{ ...this.transitionState, velocity: this.transitionVelocity },
|
||||
{ ...openingSpec.config, toValue: this.toValue }
|
||||
@@ -230,7 +310,7 @@ export default class Card extends React.Component<Props> {
|
||||
{ ...openingSpec.config, toValue: this.toValue }
|
||||
),
|
||||
closingSpec.timing === 'spring'
|
||||
? spring(
|
||||
? memoizedSpring(
|
||||
this.clock,
|
||||
{ ...this.transitionState, velocity: this.transitionVelocity },
|
||||
{ ...closingSpec.config, toValue: this.toValue }
|
||||
|
||||
Reference in New Issue
Block a user