Skip to content

Commit c9a68db

Browse files
committed
fix: perform sync update when exiting animation
reactjs#885 When running in React 18 concurrent mode some state updates are batched, which results in inconsistent timing of events compared to the legacy mode. For example when using animations, after animationend event fires, the onExited event is not fired immediately, so there is a brief period of time when animation is finished and the styles are reset back to normal, which may cause a flash or a jump. One of these scenarios is described in reactjs#816. This change makes sure that the updates are performed synchronously, in order to make sure that events fire consistently.
1 parent a426f80 commit c9a68db

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/Transition.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useRef } from "react";
22
import type { ContextType, ReactNode } from "react";
3-
import ReactDOM from "react-dom";
3+
import ReactDOM, { flushSync } from "react-dom";
44

55
import config from "./config";
66
import TransitionGroupContext from "./TransitionGroupContext";
@@ -225,8 +225,10 @@ class TransitionComponent extends React.Component<
225225
this.props.onExiting(node);
226226

227227
this.onTransitionEnd(timeouts.exit, () => {
228-
this.safeSetState({ status: EXITED }, () => {
229-
this.props.onExited(node);
228+
flushSync(() => {
229+
this.safeSetState({ status: EXITED }, () => {
230+
this.props.onExited(node);
231+
});
230232
});
231233
});
232234
});

0 commit comments

Comments
 (0)