If you’re working with React JS, understanding how to use the useEffect hook is essential for handling side effects in functional components. Whether you’re fetching data, setting up subscriptions, or manipulating the DOM, useEffect in React JS is your go-to tool. In this guide, we’ll break down everything you need to know about useEffect—from basic usage to best practices and common pitfalls.

Official documentation for useEffect in React JS: https://react.dev/reference/react/useEffect


What is useEffect in React JS?

useEffect in React JS - React Logo and useEffect text

In React JS, useEffect is a hook introduced in React 16.8 that allows you to perform side effects in function components. Side effects include things like:

  • Fetching data from an API.
  • Manipulating the DOM.
  • Setting up subscriptions or timers.

Here’s a simple example:

How Does useEffect Work?

The useEffect hook takes two arguments:

  1. A callback function: This function contains the side effect logic.
  2. An optional dependency array: Controls when the effect runs.

Key Concepts of useEffect

1. Running After Every Render

By default, useEffect runs after every render.

2. Using the Dependency Array

The dependency array is a list of values that useEffect watches. The effect runs only when one of these values changes.

Example:

  • Empty Dependency Array: useEffect runs only once, similar to componentDidMount.
  • No Dependency Array: useEffect runs after every render.

3. Cleaning Up Effects

Some effects, like subscriptions or timers, require cleanup. useEffect allows you to return a cleanup function.

Example:


Common Use Cases for useEffect

1. Fetching Data

2. Subscribing to Events

3. Animating Components


Best Practices for useEffect in React JS

  1. Keep Effects Focused
    Each useEffect should handle one concern to maintain readability and prevent bugs.
  2. Avoid Overusing Effects
    Sometimes effects are unnecessary. For instance, derived state can often replace an effect.
  3. Manage Dependencies Carefully
    Always include all external variables used in the effect in the dependency array.
  4. Handle Cleanup
    Ensure your effects clean up to avoid memory leaks.

Common Pitfalls of useEffect in React JS

1. Infinite Loops

Incorrectly setting dependencies can lead to infinite re-renders.

Solution: Avoid updating state directly inside the effect unless it’s wrapped in a condition or logic.


If you liked this post make sure to check out our previous post too: https://developercuisine.net/html-div/