We have an action that fetches an object async, let\'s call it getPostDetails
, that takes a parameter of which post to fetch by
an id. The user is presented with a
The problem is due to suboptimal state organization.
In a Redux app, state keys like currentPost
are usually an anti-pattern. If you have to “reset” the state every time you navigate to another page, you lost one of the main benefits of Redux (or Flux): caching. For example, you can no longer navigate back instantly if any navigation resets the state and refetches the data.
A better way to store this information would be to separate postsById
and currentPostId
:
{
currentPostId: 1,
postsById: {
1: { ... },
2: { ... },
3: { ... }
}
}
Now you can fetch as many posts at the same time as you like, and independently merge them into the postsById
cache without worrying whether the fetched post is the current one.
Inside your component, you would always read state.postsById[state.currentPostId]
, or better, export getCurrentPost(state)
selector from the reducer file so that the component doesn’t depend on specific state shape.
Now there are no race conditions and you have a cache of posts so you don’t need to refetch when you go back. Later if you want the current post to be controlled from the URL bar, you can remove currentPostId
from Redux state completely, and instead read it from your router—the rest of the logic would stay the same.
While this isn’t strictly the same, I happen to have another example with a similar problem. Check out the code before and the code after. It’s not quite the same as your question, but hopefully it shows how state organization can help avoid race conditions and inconsistent props.
I also recorded a free video series that explains these topics so you might want to check it out.