To check how to run and build or test the project, follow project-build.md file.
function connect() {
return function () {
return 'Hi to react-redux';
}
}
connect()(); # it prints Hi to react-reduxHere a function is returning a function
So, when we write connect()(ComponentName), it passes the component inside the inner function, and works as a wrapper.
- it is a conventional name, it can be customized. We may call it
getMyStates - Whenever a state is updated, it re-runs and updates the state in a component
/**
* @param state => Get all states in the argument
*/
function mapStateToProps(state) {
return { propName: state.stateName }; // propName is a user-defined name for prop element
}
connect(mapStateToProps)(ComponentName);For more: mapstatetoprops link
- it is also a conventional name, it can be customized.
/**
* @key selectSong => this is props coming from any call action from component
*/
const mapDispatchToProps = (dispatch, ownProps) => ({
selectSong: () => dispatch(selectSong(ownProps.title)),
});Simplest form is
const mapDispatchToProps = {
selectSong
};
connect(mapStateToProps, mapDispatchToProps )(ComponentName);
For more: mapDispatchToProps link