6

Explain Redux's connect() and mapStateToProps like I'm 5

 3 years ago
source link: https://dev.to/domitriusclark/explain-reduxs-connect-and-mapstatetoprops-like-im-5--4f0a
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Discussion (4)

CollapseExpand

The Store is a box, which contains the entire application state. Imagine that this box is in an unknown location.

The components need to take some of the things out of the box but they only need some of the things stored in it. The components know what they need from the box but they don't know where the box is.

The mapStateToProps function is a filter used to select which things in the box are required by the component. The selected things become the component properties.

The mapStateToProps function is not enough because it selects the required things in the box but it doesn't know where the box is located.

The connect function knows where the box is located and passes it to the mapStateToProps function so it can grab what it needs.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK