Managing React State: 10 Years of Lessons Learned

Rate this content
Bookmark
Slides

Managing React state is hard. Why? Because there are so many options to consider! Local state, reducers, custom hooks, context, and over a dozen third-party libraries. In this session, we’ll explore the lessons I’ve learned from managing complex state in React over the last seven years. I’ll share my strategy for categorizing React state including local, server, global, derived and many more. After this session, you’ll understand how to identify different types of state, where to declare state, and how to choose between these different options.

Cory House
Cory House
16 min
12 Dec, 2023

Comments

Sign in or register to post your comment.

Video Summary and Transcription

This Talk focuses on effective React state management and lessons learned over the past 10 years. Key points include separating related state, utilizing UseReducer for protecting state and updating multiple pieces of state simultaneously, avoiding unnecessary state syncing with useEffect, using abstractions like React Query or SWR for fetching data, simplifying state management with custom hooks, and leveraging refs and third-party libraries for managing state. Additional resources and services are also provided for further learning and support.

Available in Español

1. React State and Lessons Learned

Short description:

Hello, we're going to talk about effective React state and 10 years of lessons learned. This whole talk is going to be about state management. Let's start off with one of the things that I see most commonly in code reviews which is separating related state. Another place where you'll commonly see this might be where somebody chooses to create state like for user information. The second one that I've learned is, watch out for when we make multiple use state calls in a row.

Hello, we're going to talk about effective React state and 10 years of lessons learned. I'm lucky enough to have been working in React since it was open-sourced about 10 years ago, so these are some lessons I've learned along the way.

This whole talk is going to be about state management. We've got about 20 minutes to work with here.

Let's start off with one of the things that I see most commonly in code reviews which is separating related state. This solution is quite simple which is to unify related state. Now, when I talk about related state, the concept here is to think about state where properties apply to one another, where they relate to one another. A good way to think about this is if I jump over here for a moment, I have a little app set up which is using Vite. I'm going to zoom in a little bit here, make sure everybody can read the screen, and then I have the app running over here on the left so we can see the words hi over there. Now, what if I were to come in and I were to say, create some state, and I wanted to create some state like my address and set address, and my city and set city, and my country, and so on, so you can start to see how I've created this separate state for address, for city, for country. And this is what I mean by related state. These are related because presumably when I'm actually going to go save this state to the server, what I'm going to do is send one HTTP call to send my address, and my address is composed of my street address, and my city, and my country, and so on. So what's useful here is instead of having three pieces of state, is to just have one piece of state, which might be called my address, and set address, and then this would be an object that would contain things like my city, state, country, street address, and so on. So unifying that related state has a couple of benefits. One benefit is, notice that I have one use-state call here rather than two, three, four, five, six. Could be a high number. The other thing is, when I go to initialize this, it's simpler because think about what might happen. Imagine this is a form that is going to be populated with data from the server. So I'm gonna go fetch some data via HTTP, and then I'm gonna put that data into state. Well, if I'm going to do that, it's easier to take the object that I get back from the server and put it into one piece of state than to split it up into separate pieces of state. The other reason this is useful is, when I go to send this back to the server, presumably, I'm going to want to send one object to the server, not a bunch of separate HTTP requests. So when I go to send this back, it's also simpler. Excuse me. Okay, so that's the first lesson, just grouping-related state.

Another place where you'll commonly see this might be where somebody chooses to create state like for user information, and I might have first name and last name and all these other pieces of data that relate to the user, maybe their age and their pets, who knows, whatever information we're happening, where you happen to collect. Again, group this into a user object, we have one piece of state, it's easier to hydrate and easier to send. So that is the first lesson that I've learned.

The second one that I've learned is, watch out for when we make multiple use state calls in a row. And when we see this sort of thing, it's often a sign that we should either unify those set states together by unifying the state, much like what I just showed earlier, or it could also be a sign that we should consider using UseReducer. Now, I will say, I just recently did a poll on Twitter and it surprised me because about half of React developers have literally never used UseReducer, and this was thousands of people that replied to my poll, and then there's a fair amount that say that they virtually never use it.

2. UseReducer Benefits

Short description:

UseReducer is an underutilized tool that protects our state and avoids multiple set state calls. It is preferable to UseState in terms of protecting state and updating multiple pieces of state simultaneously.

So UseReducer is an underutilized tool, and it really is a wonderful hook that I think people often forget about, so I'd encourage you to think about using it more. And when I talk about unify, if I come back over here, I'm going to click on unify so you can see what I'm getting at here. So these pieces of state, this is not as powerful as UseReducer. I can't test it in isolation. I can't validate that data before setting it. So it's probably preferable to go ahead and use UseReducer instead, but this is what I was getting at. When we talk about UseReducer, one of the things that it does really nice is protecting our state. So I found that can be pretty useful. So we can look here. I could actually check and say, okay, I'm not going to actually set this state because I want to do some kind of logic here just to make sure that the payload that I've received is what we expect. And this is one of the powerful things about UseState or I'm sorry, about UseReducer is it protects our state. Think about UseState, it doesn't protect itself. We can just call the setter whenever. So that is a benefit that's unique to UseReducer. And also with UseReducer, I can end up avoiding making multiple set state calls. So here you'll notice that I'm calling SetUser and I'm calling SetIsLoading. Well, instead I could just dispatch and say SaveUser and then behind the scenes, the UseReducer call, the reducer inside of it, can actually update one or more pieces of state at the same time. So what I look for is in code reviews, when I see setstate getting called multiple times in a row, it makes me think maybe I should unify that state if it's related or maybe we should just consider UseReducer instead. So that was point two.

3. Syncing State and useEffect

Short description:

Syncing state and useEffect is often a sign of needless state. Instead, try deriving state using underutilized tools like deriveState. Avoid using useEffect to update other state when a state change occurs. Pay attention to whether you can derive the values you need from existing state. For example, you can calculate validation errors on a form based on the form's values and required fields. Tip number four is about fetching and useEffect.

All right, let's pop back over here and look at the next one. Another thing I often see is syncing state and useEffect. And by that, I mean, sometimes we will see someone use useEffect to say, there is this state change that just happened in my component. And then when that state change happens, I wanna come over here and run some logic and then update other state. The problem with that is, it's needless. It's actually a sign of needless state altogether because what you can typically do instead is deriveState. And derivingState is an underutilized tool as a React developer.

And I can show you a very contrived example if we pop over here into the code again. Imagine for instance, that I have a simple state right here. Well, in fact, I have it handy right here. So I've got firstName and lastName, and I'm gonna do something silly in here. I might come in here and say, okay, I'm gonna go ahead and use useEffect. And I'm going to use useEffect to do something like this. I have const fullName right here, and I'm gonna have a setter for fullName right here, and I'll just set it to an empty string initially here. But then in this useEffect, I might wanna say that I wanna set fullName to firstName and lastName, and I would want to run this anytime that firstName or lastName change. Now, you'll look at this and you're gonna think, well, this is silly. I wouldn't do this. I recognize that I could get fullName by just taking firstName or lastName and gluing them together. But in reality, we can easily make this mistake when we end up with more state and we don't realize that we could derive values from that existing state. So what I encourage you to do is pay close attention to whether you could derive the values that you need from the existing state.

Now, in this case, the solution is not to use useEffect, and the solution is not to even declare a separate piece of state. It's merely to instead have a value that derives the two. So I could say const, fullName is equal to firstName plus lastName, just like this, or I could use a template string. Now, again, this seems silly, this seems obvious, but I point it out because it's an easy mistake to make when things get more complex. A place that I use this is, you'll often see people declare a piece of state to hold errors for a form, to hold that validation state, to say, okay, here's the errors on the form. You don't necessarily need that state because if you think about how errors work on a form when it's validating, those errors can be derived from the values in the form. So once I know the values and once I know what fields are required, I can actually calculate what validation errors are occurring on every render and then decide whether to show them based on the state of the form itself. All right, so that is tip number three.

Let's bounce over here to tip number four. This one is very common, fetching and use effect.

4. Fetching Data and Using useEffect

Short description:

We've been fetching and using useEffect for a long time, but it's time to start using abstractions like React Query or SWR. These tools provide loading state, error handling, data storage, caching, and more. They also result in less code. Instead of using useEffect, try to derive state and use the URL as a single source of truth.

We've been fetching and use effect since, well, hooks came out long ago and before that we were doing it in component-did-mount. And I consider this a mistake. I know that that is a strong word, but the reason I did consider it a mistake is as React developers, we should probably be using abstractions now and there's lots of good abstractions. And to emphasize, those abstractions are still using React use effect, but those abstractions give us a whole set of goodness that we don't get in use effect.

The tricky thing about use effect is it is so easy to get it wrong and it's easy to forget a number of things that are really important. And when I say that, this is emphasized when you look at tools like React Query, for instance, which is one of my favorite ways to handle this problem. Think about what React Query gives us. It is giving us loading state, error handling, data to store the actual, or I should say state to store the data that we fetch back. And then it's gonna do things like refetch when my connection comes back, it's also going to give me the ability to cache records so that when I move around the application, I instantly see the data that's been previously fetched. I can also clear that cache using keys. It's gonna refetch when I go to a tab, the list goes on. Lots of stuff that is easy to forget. So tools like React query or SWR are really attractive.

Now, I also wanna emphasize though that the other benefit that you get here is just a whole lot less code. So I'm gonna pop out of this for a second. And what I wanna show is, well, I'll go ahead and show this tweet real quick since I have it on the screen. If use effect is the answer, I may be asking the wrong question. So if I ask, how do I sync state? The answer is don't, try to derive it just like I showed in the previous example. If the question is, how do I fetch and play in React? Well, I suggest don't try to use a library that does the use effect behind the scenes for you. And if the question is, how do I copy URL values into state? Don't, we'll use the URL as your single source of truth. So those are some examples where someone might reach for use effect needlessly.

Okay, so let's come over here to the browser for a second. And if I pop into here and well, actually, I can't show it that way, it doesn't want to, I'm just going to pull this browser over instead. Okay, so I'm gonna go over to Twitter because I have a pin tweet that I wanna show here. And this pin tweet is 10 lessons I've learned about handling React state. So you might find this useful because it is definitely relevant to what we're talking about here in this talk. But I wanted to show this particular image. And this image helps emphasize why I say using useEffect to fetch data is really something that should be in the past. What we wanna use is some kind of an abstraction that takes our code and collapses it down. Like you look at the before there.

5. Managing React State and Handling State in the URL

Short description:

You look at all the code that's sitting in this begin. Notice that we had to make sure that we put in a finally so that we set loading to false properly. We had to have a catch so that we could have an error and then decide what to do with it. We had to declare three different pieces of state. And then we have to have logic down here for handling all of this. So all this code collapses if you use a custom hook.

You look at all the code that's sitting in this begin. Notice that we had to make sure that we put in a finally so that we set loading to false properly. We had to have a catch so that we could have an error and then decide what to do with it. We had to declare three different pieces of state. And then we have to have logic down here for handling all of this. So all this code collapses if you use a custom hook.

Now I actually have a course called Managing React State out on Pluralsight. I just updated it a couple days ago. So the published date is fresh as of 2023. And I actually show how to build this useFetch hook. Now I show that just so that you can understand how to create your own but I don't actually recommend using it. I show it as a teaching tool so that you can see how to use tools like React Query and why they are so useful. So this is just one example. But if I used React Query, my API here would look very similar to this custom useFetch hook that I just showed.

Okay. So we only have 20 minutes. So I wanted to make sure though, that in these 20 minutes that I showed this particular slide. This is the way that I think about React State. And I were to summarize the core opportunity for any React developer here is, make sure that you keep these eight ways to handle React State in your head. One of the most common mistakes I see is forgetting about the URL. We are often declaring state via useState or useReducer that actually belongs in the URL. And a good sign of that is, ask yourself, if I share the URL with someone else, will they see the same things that I'm seeing right now? And if the answer is no, that's a sign we might wanna put it in the URL. Some places that we make this mistake is, when we forget to look at things like, is this accordion open? Is this tab selected? Where am I scrolled to on the page? What header am I closest to? Those are the sorts of things that are really nice to put in the URL. Another example is what page am I on? Or what search or what filters have I run? Those all are wonderful in the URL, so I can bookmark it, and so I can share it. Some of these others I'll breeze past, web storage is not really tied to React, but yes, consider local storage or IndexedDB, those sorts of tools. Local state is the default that I recommend. Declare a used state, put it in one component. If you need to share it with a few, then lift the state, cut and paste it, put it in the parent. As much as you can, try to derive state from existing state. And sometimes maybe you don't even wanna render that state.

6. Using Refs and Third-Party Libraries

Short description:

You can use refs to hold onto values, including for undo functionality. Refs are useful for managing state that you don't want to render. Consider using context for global state or functions. Third-party libraries like React Query, SWR, and RTK Query are great for handling specific types of state, such as global or remote state. Check out my pin tweet on twitter.com/housecore for key points from this talk and my link to the managing React State course on Pluralsight. Reach out to me at reactjsconsulting.com for training, consulting, code reviews, and architectural planning. Follow me on Twitter for daily tweets on front-end development in JavaScript. Find my courses on Pluralsight.com.

You just wanna hold onto the value. You might wanna use a ref. Refs can hold state as well. Keep in mind that refs are also useful for things like undo. So it's something that you wanna hold in the background. It's any variable that I don't wanna render.

Refs are a tool. Consider context if I have global state or global functions. And then finally, third party libraries are wonderful for specific types of state like global state or remote state. When I say remote state, I mean state fetched from a server using tools like React Query, SWR, RTK Query, and so on.

Okay, so we are just about out of time, but I do want to draw your attention to, if you go to twitter.com slash housecore. I've got this pin tweet that has some of the key points that I have made in this talk and others that I didn't have time to make. At the bottom of this tweet, you'll also see that I have a link to my latest course, which is managing React State on Pluralsight. There's a free trial that's available. I will also share these slides so that you can get to the rest of them. Because again, in 20 minutes, I don't have time to go over all the tips I have for state, but I wanted you to have them. So I've put them here. There's about 19 in here, so can't cover 19 in 20 minutes. So if you want to reach out to me, my company is reactjsconsulting.com. I travel around the world and I train teams and I consult companies. I do code reviews, architectural planning. My business is helping React developers be more effective. So I've gotten to do that all over the world. Also, if you want to follow me on Twitter, I tweet once a day about different topics, but often about front-end development in JavaScript. You can find my courses at Pluralsight.com.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Don't Solve Problems, Eliminate Them
React Advanced Conference 2021React Advanced Conference 2021
39 min
Don't Solve Problems, Eliminate Them
Top Content
Humans are natural problem solvers and we're good enough at it that we've survived over the centuries and become the dominant species of the planet. Because we're so good at it, we sometimes become problem seekers too–looking for problems we can solve. Those who most successfully accomplish their goals are the problem eliminators. Let's talk about the distinction between solving and eliminating problems with examples from inside and outside the coding world.
Using useEffect Effectively
React Advanced Conference 2022React Advanced Conference 2022
30 min
Using useEffect Effectively
Top Content
Can useEffect affect your codebase negatively? From fetching data to fighting with imperative APIs, side effects are one of the biggest sources of frustration in web app development. And let’s be honest, putting everything in useEffect hooks doesn’t help much. In this talk, we'll demystify the useEffect hook and get a better understanding of when (and when not) to use it, as well as discover how declarative effects can make effect management more maintainable in even the most complex React apps.
Design Systems: Walking the Line Between Flexibility and Consistency
React Advanced Conference 2021React Advanced Conference 2021
47 min
Design Systems: Walking the Line Between Flexibility and Consistency
Top Content
Design systems aim to bring consistency to a brand's design and make the UI development productive. Component libraries with well-thought API can make this a breeze. But, sometimes an API choice can accidentally overstep and slow the team down! There's a balance there... somewhere. Let's explore some of the problems and possible creative solutions.
React Concurrency, Explained
React Summit 2023React Summit 2023
23 min
React Concurrency, Explained
Top Content
React 18! Concurrent features! You might’ve already tried the new APIs like useTransition, or you might’ve just heard of them. But do you know how React 18 achieves the performance wins it brings with itself? In this talk, let’s peek under the hood of React 18’s performance features: - How React 18 lowers the time your page stays frozen (aka TBT) - What exactly happens in the main thread when you run useTransition() - What’s the catch with the improvements (there’s no free cake!), and why Vue.js and Preact straight refused to ship anything similar
TypeScript and React: Secrets of a Happy Marriage
React Advanced Conference 2022React Advanced Conference 2022
21 min
TypeScript and React: Secrets of a Happy Marriage
Top Content
TypeScript and React are inseparable. What's the secret to their successful union? Quite a lot of surprisingly strange code. Learn why useRef always feels weird, how to wrangle generics in custom hooks, and how union types can transform your components.
Debugging JS
React Summit 2023React Summit 2023
24 min
Debugging JS
Top Content
As developers, we spend much of our time debugging apps - often code we didn't even write. Sadly, few developers have ever been taught how to approach debugging - it's something most of us learn through painful experience.  The good news is you _can_ learn how to debug effectively, and there's several key techniques and tools you can use for debugging JS and React apps.

Workshops on related topic

React Performance Debugging Masterclass
React Summit 2023React Summit 2023
170 min
React Performance Debugging Masterclass
Top Content
Featured WorkshopFree
Ivan Akulov
Ivan Akulov
Ivan’s first attempts at performance debugging were chaotic. He would see a slow interaction, try a random optimization, see that it didn't help, and keep trying other optimizations until he found the right one (or gave up).
Back then, Ivan didn’t know how to use performance devtools well. He would do a recording in Chrome DevTools or React Profiler, poke around it, try clicking random things, and then close it in frustration a few minutes later. Now, Ivan knows exactly where and what to look for. And in this workshop, Ivan will teach you that too.
Here’s how this is going to work. We’ll take a slow app → debug it (using tools like Chrome DevTools, React Profiler, and why-did-you-render) → pinpoint the bottleneck → and then repeat, several times more. We won’t talk about the solutions (in 90% of the cases, it’s just the ol’ regular useMemo() or memo()). But we’ll talk about everything that comes before – and learn how to analyze any React performance problem, step by step.
(Note: This workshop is best suited for engineers who are already familiar with how useMemo() and memo() work – but want to get better at using the performance tools around React. Also, we’ll be covering interaction performance, not load speed, so you won’t hear a word about Lighthouse 🤐)
React Hooks Tips Only the Pros Know
React Summit Remote Edition 2021React Summit Remote Edition 2021
177 min
React Hooks Tips Only the Pros Know
Top Content
Featured Workshop
Maurice de Beijer
Maurice de Beijer
The addition of the hooks API to React was quite a major change. Before hooks most components had to be class based. Now, with hooks, these are often much simpler functional components. Hooks can be really simple to use. Almost deceptively simple. Because there are still plenty of ways you can mess up with hooks. And it often turns out there are many ways where you can improve your components a better understanding of how each React hook can be used.You will learn all about the pros and cons of the various hooks. You will learn when to use useState() versus useReducer(). We will look at using useContext() efficiently. You will see when to use useLayoutEffect() and when useEffect() is better.
React, TypeScript, and TDD
React Advanced Conference 2021React Advanced Conference 2021
174 min
React, TypeScript, and TDD
Top Content
Featured WorkshopFree
Paul Everitt
Paul Everitt
ReactJS is wildly popular and thus wildly supported. TypeScript is increasingly popular, and thus increasingly supported.

The two together? Not as much. Given that they both change quickly, it's hard to find accurate learning materials.

React+TypeScript, with JetBrains IDEs? That three-part combination is the topic of this series. We'll show a little about a lot. Meaning, the key steps to getting productive, in the IDE, for React projects using TypeScript. Along the way we'll show test-driven development and emphasize tips-and-tricks in the IDE.
Designing Effective Tests With React Testing Library
React Summit 2023React Summit 2023
151 min
Designing Effective Tests With React Testing Library
Top Content
Featured Workshop
Josh Justice
Josh Justice
React Testing Library is a great framework for React component tests because there are a lot of questions it answers for you, so you don’t need to worry about those questions. But that doesn’t mean testing is easy. There are still a lot of questions you have to figure out for yourself: How many component tests should you write vs end-to-end tests or lower-level unit tests? How can you test a certain line of code that is tricky to test? And what in the world are you supposed to do about that persistent act() warning?
In this three-hour workshop we’ll introduce React Testing Library along with a mental model for how to think about designing your component tests. This mental model will help you see how to test each bit of logic, whether or not to mock dependencies, and will help improve the design of your components. You’ll walk away with the tools, techniques, and principles you need to implement low-cost, high-value component tests.
Table of contents- The different kinds of React application tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting DOM elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RTL tests and how to handle them
Prerequisites- Familiarity with building applications with React- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Testing Library- Machine setup: Node LTS, Yarn
Next.js 13: Data Fetching Strategies
React Day Berlin 2022React Day Berlin 2022
53 min
Next.js 13: Data Fetching Strategies
Top Content
WorkshopFree
Alice De Mauro
Alice De Mauro
- Introduction- Prerequisites for the workshop- Fetching strategies: fundamentals- Fetching strategies – hands-on: fetch API, cache (static VS dynamic), revalidate, suspense (parallel data fetching)- Test your build and serve it on Vercel- Future: Server components VS Client components- Workshop easter egg (unrelated to the topic, calling out accessibility)- Wrapping up
React at Scale with Nx
React Summit 2022React Summit 2022
160 min
React at Scale with Nx
WorkshopFree
Isaac Mann
Zack DeRose
2 authors
The larger a codebase grows, the more difficult it becomes to maintain. All the informal processes of a small team need to be systematized and supported with tooling as the team grows. Come learn how Nx allows developers to focus their attention more on application code and less on tooling.
We’ll build up a monorepo from scratch, creating a client app and server app that share an API type library. We’ll learn how Nx uses executors and generators to make the developer experience more consistent across projects. We’ll then make our own executors and generators for processes that are unique to our organization. We’ll also explore the growing ecosystem of plugins that allow for the smooth integration of frameworks and libraries.