Altcademy - a Forbes magazine logo Best Coding Bootcamp 2023

What is React State?

In this blog post, we'll be diving into a fundamental concept in React called "state." If you're just getting started with programming or React, don't worry – we'll break things down in a way that's easy to understand by using simple explanations, real-world analogies, and code examples. By the end of this post, you should have a solid understanding of what React state is and how to work with it in your own applications.

Table of Contents

  1. Introduction to React
  2. What is State?
  3. Understanding State in React
  4. Managing State with useState Hook
  5. Updating State
  6. State Management Best Practices
  7. Conclusion

1. Introduction to React

Before diving into state, let's quickly recap what React is. React is a popular JavaScript library for building user interfaces. It was developed by Facebook and is used by many popular websites like Airbnb, Netflix, and WhatsApp.

The main idea behind React is to break your user interface (UI) into smaller, reusable pieces called "components." Each component is responsible for its own part of the UI, and they can be combined together to create complex interfaces.

Take a look at the following code example of a simple React component:

function Greeting() {
  return <h1>Hello, world!</h1>;
}

This component, called Greeting, simply renders an <h1> element with the text "Hello, world!" inside. To use this component in your application, you can include it like this:

function App() {
  return (
    <div>
      <Greeting />
    </div>
  );
}

Here, we have another component called App that includes the Greeting component. This is an example of how components can be combined to build a UI.

2. What is State?

Now that you have a basic understanding of React and components, let's talk about state. In a nutshell, state is the data that a component needs to function and render its UI properly. It can be thought of as the "memory" of the component, as it stores and manages the data that the component uses.

To illustrate the concept of state, think of a simple calculator app. The calculator has a few buttons, a display, and some internal logic to perform calculations. When you press a button, the calculator needs to remember the current input and update the display accordingly. This "remembering" part is where state comes in – it keeps track of the data (in this case, the current input) and allows the component to react to changes in that data.

In React, state is handled differently depending on whether you're using class components or functional components. In this post, we'll focus on state management in functional components, which is the more modern and recommended approach.

3. Understanding State in React

In React, state is managed using a built-in feature called "hooks." Hooks are special functions that allow you to "hook into" React features, such as state management, from within functional components. The most commonly used hook for managing state is the useState hook.

Let's see how we can use the useState hook to add some state to our Greeting component from earlier.

import React, { useState } from 'react';

function Greeting() {
  const [name, setName] = useState('world');

  return <h1>Hello, {name}!</h1>;
}

In this updated version of the Greeting component, we've imported the useState hook from the react package and used it inside our component. The useState function takes an initial value for the state (in this case, the string 'world') and returns an array with two elements: the current state value and a function to update the state.

We use array destructuring to assign these two elements to variables: name and setName. The name variable holds the current state value (which is initially 'world'), and the setName function can be used to update the state. In the component's JSX, we're now using the name variable to display the greeting.

This is a simple example of using state in a React component, but it demonstrates the core concept: state is a way to store and manage data within your component.

4. Managing State with useState Hook

Now that you've seen a basic example of using state in a React component, let's dive deeper into the useState hook and how it works.

As mentioned earlier, the useState function takes an initial value for the state and returns an array with two elements: the current state value and a function to update the state. The initial value can be any JavaScript value, such as a string, number, object, or array.

Here's a more complex example that demonstrates how to use multiple state variables in a single component:

import React, { useState } from 'react';

function Counter() {
  const [count, setCount] = useState(0);
  const [step, setStep] = useState(1);

  const increment = () => {
    setCount(count + step);
  };

  const updateStep = (event) => {
    setStep(Number(event.target.value));
  };

  return (
    <div>
      <h1>Count: {count}</h1>
      <button onClick={increment}>Increment</button>
      <p>
        Step:
        <input type="number" value={step} onChange={updateStep} />
      </p>
    </div>
  );
}

This Counter component has two state variables: count, which keeps track of the current count, and step, which determines how much to increment the count by when the "Increment" button is clicked. Each state variable has its own useState call and corresponding updater function (setCount and setStep, respectively).

The increment function is called when the "Increment" button is clicked, and it updates the count state using the setCount function. The updateStep function is called when the user changes the value of the "Step" input field, and it updates the step state using the setStep function.

This example demonstrates how to use multiple state variables in a single component and how to update state in response to user interactions.

5. Updating State

Updating state in React is a bit different than updating regular JavaScript variables. When you update a state variable using its updater function (like setCount or setStep in the previous example), React will re-render the component with the new state. This ensures that your UI always reflects the current state of the component.

However, there's an important thing to keep in mind when updating state: state updates can be asynchronous. This means that React may not immediately update the state when you call the updater function – it might wait a short period of time and then update the state in a batch. This is done for performance reasons, as it allows React to avoid unnecessary re-renders and make your app run faster.

Because of this asynchronous behavior, you should avoid directly referencing the current state value when updating the state. Instead, you should use the function form of the updater, which allows you to provide a function that takes the previous state as an argument and returns the new state. Here's an example of how to do this:

const increment = () => {
  setCount((prevCount) => prevCount + step);
};

In this updated increment function, we're using the function form of setCount. The function we provide takes the previous count value (prevCount) and returns the new count value (prevCount + step). This ensures that we're always working with the correct state value, even if the update is asynchronous.

6. State Management Best Practices

Now that you have a good understanding of state in React, let's go over some best practices for managing state in your components:

Keep your state as simple as possible: Try to minimize the amount of state in your components and only use it when necessary. This can help reduce complexity and make your components easier to maintain and understand. If a value can be derived from other state values or props, you should avoid storing it in state.

Avoid deeply nested state: If you find yourself working with deeply nested state objects, it might be a sign that your component is doing too much and should be split into smaller components. Also, updating deeply nested state can be more difficult and error-prone.

Use the function form of state updaters: As mentioned earlier, you should use the function form of state updaters when updating state based on the previous state value. This ensures that you're always working with the correct state value, even if the update is asynchronous.

Keep related state together: When using multiple state variables in a single component, try to group related state together. This can make it easier to understand the structure of your component and how the different pieces of state interact.

Don't mutate state directly: Always use the state updater function (like setCount or setStep) to update your state. Directly modifying the state (e.g., count = count + step) can lead to unexpected behavior and won't trigger a re-render of the component.

7. Conclusion

In this blog post, we've covered the concept of state in React and how to use the useState hook to manage state in functional components. We've also looked at some best practices for managing state in your components.

By understanding and applying these concepts, you'll be well-equipped to build dynamic, interactive, and stateful user interfaces with React. Keep practicing and experimenting with different state management patterns, and soon you'll be a pro at managing state in your React applications. Good luck, and happy coding!