DEV Community

Cover image for Understanding useEffect Hooks in React – An introduction and Comprehensive Guide for Web Developers
jlerocher
jlerocher

Posted on

Understanding useEffect Hooks in React – An introduction and Comprehensive Guide for Web Developers

Introduction

React is a powerful JavaScript library used for building user interfaces, particularly single-page applications. One of its core features is the concept of state and lifecycle methods which are now managed by using Hooks. Among these hooks, useEffect has gained popularity due to its ability to perform side effects in function components. This article aims to demystify what useEffect is, how to use it, and some best practices when working with useEffect.

What is useEffect?

The useEffect hook is a built-in feature provided by React for performing side effects in functional components. Side effects could be data fetching, subscriptions or manually changing the DOM. It accepts two arguments:

useEffect(didUpdate);
Enter fullscreen mode Exit fullscreen mode

or

useEffect(() => {
  // your code here
}, [dependencies]);
Enter fullscreen mode Exit fullscreen mode

Here, didUpdate is a function that performs the side effect and optionally returns a cleanup function. The array of dependencies (second argument) specifies when the effect should be run. If you pass an empty array ([]), it means the effect will only run once on mount and unmount.

Uses and Implementations

Let’s look at some practical examples:

// Fetching data from API
useEffect(() => {
  fetch('https://api.example.com/data')
    .then(response => response.json())
    .then(data => setData(data));
}, []); // Empty dependency array means this effect will only run once on mount
Enter fullscreen mode Exit fullscreen mode
// Subscribing to an event or API
useEffect(() => {
  const eventHandler = () => console.log('Event occurred');
  document.addEventListener("click", eventHandler);

  // Cleanup function: remove the event listener when the component unmounts
  return () => document.removeEventListener("click", eventHandler);
}, []); // Empty dependency array means this effect will only run once on mount
Enter fullscreen mode Exit fullscreen mode

Best Practices

Here are some tips when using useEffect:

  1. Avoiding Memory Leaks: If you're subscribing to an external service or setting up a timer, it's important that you clean up after yourself by removing the event listener or clearing the interval when your component unmounts, so as not to cause memory leaks in your app. This is what the return function of useEffect does for us.
  2. Conditional Effect Execution: If there are dependencies provided to useEffect, it will only execute after the initial render and on any updates where those values change. It's a way to control when side effects occur based on props or state changes.
  3. Using Cleanup Function: Every time your component renders, React runs your effect function (including useEffect). This is why you often see cleanup functions in useEffect — they allow for resource management and prevent memory leaks by cleaning up after ourselves.
  4. Avoiding Effects on Mount: If you want to run an effect only on updates, not on initial mount, you can pass a dependency array with one or more values as the second argument of useEffect.
  5. Nested useEffect and Cleanup: You may have multiple effects in your component. Each of them will run sequentially with the cleanup from the previous effect running before it runs.
  6. Splitting Effects: If you have a large effect that does several things, or if these things can be split apart for performance gains, consider breaking them out into their own useEffect hooks.

Conclusion

The useEffect Hook is an essential part of the React ecosystem as it enables side effects in functional components. Understanding its usage and best practices will allow you to handle more complex scenarios effectively with React. Happy coding Reacters!!

Top comments (0)