-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
mapStateToProps is not always called synchronously #1088
Comments
@kambing86 : yes, that's expected behavior in 5.x . v5 implements nested subscription behavior, where child components are only notified after the parent has finished updating. What actual bug is this causing in your application? |
well, when there is logic involving redux state and local state of Component. depending on the placement of the Container, the redux state is not notified to the Component in time and local state will be updated to the Component before redux state, even the we always assume that the redux state should be always notified to Component in synchronous manner when dispatching action, but this is not the case for |
The exact timing of this has always been an implementation detail, and should not be relied on. (I'm writing a blog post right now that goes into the history of the implementation and how it's changed over time.) I'd encourage you to try out our version 6 beta release, which switches to using In fact, if I update the sandbox to use
This makes sense, because the dispatch now only runs a single subscriber callback - in the |
was there a blog post to describe this behaviour ? |
@gaurav5430 sort of. Closest would be my post The History and Implementation of React-Redux , which describes how our implementation has evolved over time. Out of curiosity, why the question on a 2.5-year-old issue? |
i am just trying to understand the react component re-rendering if multiple dispatch calls happen one after the other. This is one of the top searches for my query, so asked here i was able to find your article through another thread, it is great, and gave me a lot of understanding, but I still did not get enough understanding about what is the expected behaviour here |
See my other post A (Mostly) Complete Guide to React Rendering Behavior for details on how React batching works. The other factor is that React-Redux v7 also uses batching internally. |
have gone through that article as well. it is great and has a lot of details, but still does not answer my question certainly I guess. will try to re-read both of those Any way to see the internal batching of react redux v7 ? i think that is what I may be experiencing |
i got this from the article that v7 uses batchedUpdates internally, but does that mean that all dispatches which happen in one tick and impact React tree, can always be expected to be batched, and never execute synchronously ? |
The dispatches themselves are synchronous. The re-rendering of the UI is batched. This issue really isn't a good place to provide support. If you're having problems, the best option is to ask in either Stack Overflow or Reactiflux, and provide a CodeSandbox or repo that demonstrates whatever problem you're seeing, rather than sort of poking around at implementation details. |
yeah ok, makes sense. More than facing a problem i am just trying to understand the potential behaviour of how multiple disptatches within a single tick would impact the component re-rendering. Will ask on SO |
Actually, will just mention here for completion: |
found a very hard to trace bug in my app and it seems like
mapStateToProps
is not being called the same. I'm able to replicate the behaviour in codesandboxhttps://codesandbox.io/s/m075w1wq8
AppContainer
is the parentAppContainer2
is the childcheck the
console.log
and found that parent'smapStateToProps
is being called synchronously, which is within the dispatch call, but the child'smapStateToProps
is being called after dispatch callI think this is because the subscription in the connect function is trying to defer it after
componentDidUpdate
in the parentplease close this if this is intended
The text was updated successfully, but these errors were encountered: