Usage With React
Last updated
Last updated
It is not a requirement you should use React to use Redux Resource, but the two work well together. We recommend using the library to .
The following are some patterns that we find ourselves using frequently with Redux Resource.
mapStateToProps
We recommend placing your calls to and within mapStateToProps
. That way, you can access this information from any of the component's lifecycle methods, without needing to compute them within each method.
For example:
Sometimes, you want to know the exact moment that a request succeeds. You can do this within your components by comparing the previous state with the next state to determine when a request changes from one status to another.
We recommend performing this check within componentDidUpdate
. This might look like:
This same approach can also be used to detect the moment that a request fails.
Redux Resource Prop Types exports a number of helpful prop types for common props that you'll pass into your React Components. Read the for more.
This is such an important topic that there is a .