You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What version of React, ReactDOM/React Native, Redux, and React Redux are you using?
React: 18.2.0
ReactDOM: 18.2.0
Redux: 4.2.1
React Redux: 8.0.5
What is the current behavior?
Description:
Depending on a parent component being a functionnal or class component, children connected component do not see their mapStateToProps function called in the same way
we can see a call to mapStateToProps in the class component child, when the parent component is a functional component ([APP1]) but not when the parent is a class component ([APP2])
Here is the logging, by app, when toggling off connected children (conditional rendering):
With a functional component as parent:
[APP1] CLASS CHILD MAP STATE TO PROPS
[APP1] NORMAL CHILD SELECTOR
x2 [APP1] NORMAL PARENT SELECTOR
[APP1] RENDER PARENT {showChild: false}
[APP1] NORMAL PARENT SELECTOR
[APP1] RENDER PARENT {showChild: false}
With a class component as parent:
[APP2] CLASS PARENT MAP STATE TO PROPS
x2 [APP2] RENDER PARENT {showChild: false}
[APP2] NORMAL CHILD SELECTOR
Note:
FYI this led to an issue in our code when refactoring a component, with uncaught error in the mapStateToProps function of a child of that component, because suddenly it was being called with unexpected state and trying to get state on undefined keys.
Maybe all of this is a normal consequence of the inherent difference in React rendering functional or class component, but I still wanted to document this in an issue for the record, and see if you have any comment.
Thanks!
What is the expected behavior?
mapStateToProps should be called consistently (or should it not?)
Which browser and OS are affected by this issue?
Chrome OSX
Did this work in previous versions of React Redux?
Yes
The text was updated successfully, but these errors were encountered:
I have tried to explain as accurately as possible and provided a codesandbox, but if it is unclear or need more details, I'll be happy to provide them.
What I'm pointing is that the two examples in that demo are rendering exactly the same thing (supposedly) but mapState is called on one side and not on the other, which was unexpected and led to a bug (on our side), so I'm reporting on that.
What version of React, ReactDOM/React Native, Redux, and React Redux are you using?
What is the current behavior?
Description:
mapStateToProps
function called in the same wayReproduction:
mapStateToProps
in the class component child, when the parent component is a functional component ([APP1]
) but not when the parent is a class component ([APP2]
)Here is the logging, by app, when toggling off connected children (conditional rendering):
With a functional component as parent:
With a class component as parent:
Note:
mapStateToProps
function of a child of that component, because suddenly it was being called with unexpectedstate
and trying to get state on undefined keys.Maybe all of this is a normal consequence of the inherent difference in React rendering functional or class component, but I still wanted to document this in an issue for the record, and see if you have any comment.
Thanks!
What is the expected behavior?
mapStateToProps
should be called consistently (or should it not?)Which browser and OS are affected by this issue?
Chrome OSX
Did this work in previous versions of React Redux?
The text was updated successfully, but these errors were encountered: