mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
When animating using native driver, trigger rerender on animation completion (#37786)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/37786 When using the native driver for animations that involve layout changes (ie. translateY and other transforms, but not styles such as opacity), because it bypasses Fabric, the new coordinates are not updated so the Pressability responder region/tap target is incorrect. Prior diffs ensure that upon completion of natively driven animations, the final values are synced to the JS side AnimatedValue nodes. In this diff, on completion of a natively driven animation, AnimatedProps.update() is called, which in turn calls the value update callback on AnimatedProps, which [triggers a rerender (via setState)](https://www.internalfb.com/code/fbsource/[566daad5db45807260a8af1f85385ca86aebf894]/xplat/js/react-native-github/packages/react-native/Libraries/Animated/useAnimatedProps.js?lines=80) which has the effect of pushing the latest animated values to Fabric. Alternative considered was using setNativeProps, but that approach was dropped as setNativeProps was only introduced to make migration easier and should not be used for new code, as per sammy-SC. Changelog: [General][Fixed] - When animating using native driver, trigger rerender on animation completion in order to update Pressability responder regions Reviewed By: rshest Differential Revision: D46574511 fbshipit-source-id: 185471b28f5f7e3ba9d62d2ac196e9b65b07a86e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
51cea49be7
commit
03f70bf995
@@ -11,9 +11,11 @@
|
||||
'use strict';
|
||||
|
||||
import type {PlatformConfig} from '../AnimatedPlatformConfig';
|
||||
import type AnimatedNode from '../nodes/AnimatedNode';
|
||||
import type AnimatedValue from '../nodes/AnimatedValue';
|
||||
|
||||
import NativeAnimatedHelper from '../NativeAnimatedHelper';
|
||||
import AnimatedProps from '../nodes/AnimatedProps';
|
||||
|
||||
export type EndResult = {finished: boolean, value?: number, ...};
|
||||
export type EndCallback = (result: EndResult) => void;
|
||||
@@ -65,6 +67,21 @@ export default class Animation {
|
||||
onEnd && onEnd(result);
|
||||
}
|
||||
|
||||
__findAnimatedPropsNode(node: AnimatedNode): ?AnimatedProps {
|
||||
if (node instanceof AnimatedProps) {
|
||||
return node;
|
||||
}
|
||||
|
||||
for (const child of node.__getChildren()) {
|
||||
const result = this.__findAnimatedPropsNode(child);
|
||||
if (result) {
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
__startNativeAnimation(animatedValue: AnimatedValue): void {
|
||||
const startNativeAnimationWaitId = `${startNativeAnimationNextId}:startAnimation`;
|
||||
startNativeAnimationNextId += 1;
|
||||
@@ -89,6 +106,10 @@ export default class Animation {
|
||||
if (value != null) {
|
||||
animatedValue.__onAnimatedValueUpdateReceived(value);
|
||||
}
|
||||
|
||||
// Once the JS side node is synced with the updated values, trigger an
|
||||
// update on the AnimatedProps node to call any registered callbacks.
|
||||
this.__findAnimatedPropsNode(animatedValue)?.update();
|
||||
},
|
||||
);
|
||||
} catch (e) {
|
||||
|
||||
@@ -66,7 +66,9 @@ export default function useAnimatedProps<TProps: {...}, TInstance>(
|
||||
// changes), but `setNativeView` already optimizes for that.
|
||||
node.setNativeView(instance);
|
||||
|
||||
// NOTE: This callback is only used by the JavaScript animation driver.
|
||||
// NOTE: When using the JS animation driver, this callback is called on
|
||||
// every animation frame. When using the native driver, this callback is
|
||||
// called when the animation completes.
|
||||
onUpdateRef.current = () => {
|
||||
if (
|
||||
process.env.NODE_ENV === 'test' ||
|
||||
|
||||
Reference in New Issue
Block a user