JulianGaramendy.dev
React State Management in 2020
1 August, 2020Every now and then I see a tweet poll asking what we do for state management in React. In many cases the options are constrained to Redux, MobX and more recently React Context + Hooks.
Of course the only correct answer is it depends.
But here's what I do for medium-sized CRUD-like single-page React applications.
- I don't use any state-management library. (no Redux, no MobX, no Recoil).
- I try to manage most of the application state with routes. This means having different URLs for different parts of the application, even if it's a single-page application. I use React Router for this.
- I differentiate between application/UI state and remote data cache. and use SWR or React Query to keep a cache of remote data.
- The rest tends to be small UI state "details" such as which modal popup is open, or the state of a form before submitting it. For this, I prefer to use
useState
oruseReducer
hooks, keeping state close to where it's used.
Application state in the URL
The application state must be kept somewhere. I can keep it hidden away in memory or I can expose it in the URL, so our users (and developers) can benefit from it.
- Better UX: users can bookmark and share links and search results with others
- Better DX: developers don't need to click around to get the app to a certain state every time they refresh the browser.
- Better documentation: Help pages can point the user to the exact part of the application they describe.
I try to keep most of the application state in the URL, and I use React Router to handle the routes.
Remote Data is not state: it belongs in a cache
I cannot stress this enough. Fortunately other people can explain this better than me:
UI state should be separate from the server cache (often called "state" as well), and when you do that, you don't need anything more than React for state management. Kent C. Dodds
Here's an excellent article: Why You Should Be Storing Remote Data in a Cache (and Not in State) by Jason Ankers.
"Remote data is read-only. It doesn’t belong in the same location as our UI state."
In CRUD-like web applications, where the server is authoritative, I don't want the client-side copy of the data to become stale.
Considering all this, in most cases I don't need to customise the way remote data is fetched and stored. I can delegate all that to a library like SWR or React Query.
These libraries store the fetched data in a static cache; and there’s no need to resort to React Context to "share" the data with other components because all components consuming the same data are automatically rerendered when the cache changes.
At work, earlier this year we refactored one of our SPAs to use SWR and the result was a much simpler application logic. In addition, we now benefit from all the nice features that come with SWR such as “focus revalidation” and “refetch on interval”. The app has been up and running for months and we haven't experienced any issues.
Local UI state should be co-located
Almost everything that isn't caught by the above cases is local UI state such as the visibility of modal dialogs or the fields in a form before it's submitted.
For these cases I prefer to keep the state close to where it's used. I usually find myself using useState
and occasionally useReducer
.
Comments?
I would love to hear your thoughts.
- What do you do for state management?
- Can you think of a common case that is not covered here?
References:
- SWR by Vercel.
- React Query by Tanner Linsley.
- Why You Should Be Storing Remote Data in a Cache (and Not in State) by Jason Ankers.
- State Management with React by Kent C. Dodds.
- Lifting State Up. React Blog.
- Colocation by Kent C. Dodds.
- I first learned about SWR thanks to a video tutorial by Leigh Halliday: "React Data Fetching with Hooks using SWR".
Cover photo by Oshin Khandelwal on Unsplash
Comment on dev.to: https://dev.to/juliang/react-state-management-in-2020-3c58