Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Confusion on Executing Timing of useEffect. #7678

Closed
DevinJohw opened this issue Mar 13, 2025 · 1 comment
Closed

Confusion on Executing Timing of useEffect. #7678

DevinJohw opened this issue Mar 13, 2025 · 1 comment

Comments

@DevinJohw
Copy link

Summary

It doesn't require there to be state updates inside Effect when repaint happens before Effect executes.

Page

https://react.dev/reference/react/useEffect#caveats

Details

The orginal sentence is:

Even if your Effect was caused by an interaction (like a click), React may allow the browser to repaint the screen before processing the state updates inside your Effect.

I think what the docs want to express is that browser repainting happens before the code inside Effect executes. It doesn't has to there are state updates inside Effect. The orginal sentence give me an misunderstanding that it happens only when there are state updates inside Effect.

This would be much better:

"Even if your Effect was caused by an interaction (like a click), React may allow the browser to repaint the screen before executing the code in your Effect that responds to state updates."

@DevinJohw DevinJohw changed the title [Typo]: Confusion on Executing Timing of useEffect. Confusion on Executing Timing of useEffect. Mar 13, 2025
@rickhanlonii
Copy link
Member

rickhanlonii commented Apr 2, 2025

Sorry for the confusing wording, but the current text is correct. Your version:

Even if your Effect was caused by an interaction (like a click), React may allow the browser to repaint the screen before executing the code in your Effect that responds to state updates.

Is covered by the previous bullet point:

If your Effect is caused by an interaction (like a click), React may run your Effect before the browser paints the updated screen.

So for a click, the effect runs before paint (so you can attach event handlers before we yield to the browser which may fire an event to the thing you're adding a handler to), but any state updates scheduled in that effect are deferred to render after paint (so we don't force a synchronous render of those updates before painting, the way layout effects do).

Hope this helps!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants