Live Demo đ All Demo, No Pitch: Content & Commerce / Builder.io & Elastic Path on 12/13
Use Cases
Pricing
Blog
Ă
Visual CMS
Drag-and-drop visual editor and headless CMS for any tech stack
Theme Studio for Shopify
Build and optimize your Shopify-hosted storefront, no coding required
Resources
Blog
Get StartedLoginâ°
Do you ever find yourself in React useState hook hell?
Yeah, this good stuff:
The above is a component to update a calendar event. Sadly, it has a number of problems.
Besides not being easy on the eyes, there are no safeguards here. Thereâs nothing preventing you from choosing an end date thatâs before the start date, which makes no sense.
Thereâs also no guard for a title or description that is too long.
Sure, we could hold our breath and trust that everywhere weâre calling set*()
we will remember (or even know) to validate all of these things before writing to state, but I donât rest easy knowing things are just sitting in such an easy to break state.
Did you know that there is an alternative state hook that is more powerful and easier to use than you might think?
Using useReducer, we could transform the above code, to just this:
The useReducer
hook helps you control transformations from state A to state B.
Now, you could say âI can do that with useState too, seeâ and point to some code like this:
Though youâd be right, thereâs one very important thing to consider here. Besides that this format still hopes that you always remember to spread on ...event
so you donât mess up by mutating the object directly (and subsequently causing React to not rerender as expected), it still misses out on the most critical benefit of useReducer
â the ability to supply a function that controls state transitions.
Going back to using useReducer
, the only difference is you get an additional argument that is a function that can help us ensure that each state transition is safe and valid:
This has the major benefit of guaranteeing that your state is always valid, in a fully centralized way.
So with this model, even if future code is added over time, and future developers on your team call updateEvent()
with potentially invalid data, your callback will always fire.
For instance, we may want to always ensure, no matter how and where state is written, that the end date is never before the start date (as that would make no sense), and that the title has a max length of 100 characters:
This ability to prevent direct mutation of state gives us a major safety net, especially as our code grows in complexity over time.
Note that you should also provide validation in your UI as well. But think of this as an additional set of safety guarantees, a bit like an ORM over a database, so that we can be fully assured that our state is always valid when written. This can help us prevent strange and hard to debug issues in the future.
useReducer
virtually anywhere youâd use useState
Maybe you have the world's simplest component, a basic counter, so you are using the useState
hook:
But even in this small example, should count
be able to go infinitely high? Should it ever be negative?
Ok, maybe itâs not so conceivable how a negative value could be achieved here, but if we wanted to set a count limit, itâs trivial with useReducer
and we can have complete confidence that the state is always valid, regardless of where and how itâs written to.
As things get more complex, you could even opt to use a redux style action-based pattern as well.
Going back to our calendar event example, we could alternatively write it similar to the below:
If you look up just about any docs or articles about useReducer
, they seem to imply this is the one and only way to use the hook.
But I want to impress upon you that this is just only one of many patterns you can use this hook for. While this is subjective, I am personally not a huge fan of Redux and this exact pattern.
It has its merits, but I think once you want to start layering in new abstractions for actions, Mobx, Zustand, or XState are preferable in my personal opinion.
That said, there is something elegant about being able to utilize this pattern without any additional dependencies, so Iâll give people who love this format that.
One other nicety of useReducer
is it can be handy when child components need to update data managed by this hook. As opposed to having to pass several functions like you would when using useState
, you could just pass your reducer function down.
From an example in the React docs:
Then from the child:
This way you can not only have just one unified update function, but have safety guarantees that state updates triggered by child components conform to your requirements.
It is important to keep in mind that you must always treat the state value of the useReducer
hook as immutable. A number of problems can occur if you accidentally mutate the object in your reducer function.
For instance, an example from the React docs:
and the fix:
If you find you are often running into this problem, you could enlist the help of a small library:
One very nifty library for ensuring immutable data, while having an elegant mutable DX, is Immer.
The use-immer package additionally provides a useImmerReducer
function that allows you to make state transitions via direct mutation, but under the hood creates an immutable copy using Proxies in JavaScript.
This of course is completely optional, and only needed if this solves problems you are actively encoutering.
useState
vs useReducer
?Despite my enthusiasm for useReducer
, and pointing out the many places you could use it, letâs remember not to prematurely abstract.
In general, you are likely still fine using useState
. I would consider incrementally adopting useReducer
as your state and validation requirements begin to get more complex, warranting the additional effort.
Then, if you are adopting useReducer
for complex objects frequently, and often hit pitfalls around mutation, introducing Immer
could be worthwhile.
That, or if youâve gotten to this point of state management complexity, you may want to look at some even more scalable solutions, such as Mobx, Zustand, or XState to meet your needs.
But donât forget, start simple, and add complexity only as needed.
This post was inspired by David Khourshid, creator of XState and Stately, who opened my eyes to the possibilities of the useReducer
hook with his epic twitter thread:
Hi! I'm Steve, CEO of Builder.io.
If you like our content, you can subscribe to us on dev.to, twitter, or our newsletter.
We make a way to drag + drop with your components to create pages and other CMS content on your site or app, visually.
You may find it interesting or useful:
Builder.io is a Visual CMS that let's you drag and drop to create content on your site visually, using your components.
Stop drowning in a backlog of requests - build with your whole team instead.