Use Effect In React | asadmukhtar.info
Step-by-Step Guide to Setting Up Authentication in Laravel 12 with Breeze   |   Manual Authentication in Laravel 12: Step-by-Step Guide   |   How to Build a REST API in Laravel 12 with Sanctum   |   Laravel 12 CRUD Application with Image Upload   |   Laravel 12 Multi-Auth System: Admin & User Login   |   How to Integrate Stripe Payment Gateway in Laravel 12   |   Building a Role-Based Access Control (RBAC) in Laravel 12   |   How to Use Laravel 12 Queues and Jobs for Background Tasks   |   Laravel 12 Livewire CRUD Example with Validation   |   Email Verification and Password Reset in Laravel 12   |   How to Use Laravel 12 API with Vue.js 3   |   Laravel 12 AJAX CRUD with jQuery and Bootstrap   |   Laravel 12 Multi-Language Website Setup   |   React Best Practices for 2025: Performance, SEO, and Scalability   |   How to Build a Full-Stack MERN App: A Step-by-Step Guide   |   React State Management: Redux vs. Context API vs. Recoil   |   Server-Side Rendering (SSR) in React with Next.js for SEO   |   How to Optimize React Apps for Faster Load Times   |   Building a REST API with Node.js and Express for a React App   |   Integrating JWT Authentication in React and Node.js (MERN Stack)   |   Real-time Chat App with React, Node.js, and Socket.io   |   How to Deploy a MERN Stack Application on AWS or Vercel   |   Connecting React Frontend to a Node.js Backend with Axios   |   Laravel Implement Flash Messages Example   |   How to integrate Angular 19 with Node.js and Express for full-stack development   |   Best practices for connecting Angular 19 frontend with Laravel API   |   Step-by-step guide to upgrading an existing project to Angular 19   |   How to implement authentication in Angular 19 using JWT and Firebase   |   Optimizing server-side rendering in Angular 19 with route-level render modes   |   Using Angular 19 signals for state management in large applications   |   How to create standalone components in Angular 19 for modular architecture   |   Building a CRUD application in Angular 19 with MongoDB and Express   |   Implementing lazy loading in Angular 19 to improve performance   |   How to integrate Angular 19 with GraphQL for efficient data fetching   |   Vue 3 Composition API vs Options API: A Comprehensive Comparison   |   Fetching and Displaying Data from APIs in Vue.js with Axios   |   Building a Todo App in Vue.js with Local Storage Integration   |   Handling Forms and Validation in Vue.js Using VeeValidate   |   State Management in Vue.js Applications Using Vuex   |   10 Most Important Tasks Every MERN Stack Developer Should Master   |   How to Build a Full-Stack CRUD App with MERN Stack   |   Best Practices for Authentication & Authorization in MERN Stack   |   1. MEAN Stack vs. MERN Stack: Which One Should You Choose in 2025   |   Top 10 Node.js Best Practices for Scalable and Secure Applications   |   How to Build a REST API with Laravel and Node.js (Step-by-Step Guide)   |   Mastering Angular and Express.js for Full-Stack Web Development   |   Top 10 Daily Tasks Every Frontend Developer Should Practice   |   Essential Backend Development Tasks to Boost Your Coding Skills   |   Real-World Mini Projects for Practicing React.js Daily   |   Laravel Developer Task List: Beginner to Advanced Challenges   |   How to Assign Effective Tasks to Your Intern Developers   |   10 Must-Try Tasks to Master JavaScript Fundamentals   |   Practical CSS Challenges That Improve Your UI Design Skills   |   Top Tasks to Learn API Integration in React and Angular   |   Best Task Ideas for a 30-Day Web Development Challenge   |   Top Git and GitHub Tasks Every Developer Should Know   |   30-Day Task Plan for Web Development Interns   |   Weekly Task Schedule for Junior Developers in a Startup   |   How to Track Progress with Development Tasks for Interns   |   What Tasks Should You Give to Interns in a MERN Stack Project   |   Build These 5 Projects to Master React Routing   |   Task-Based Learning: Become a Full-Stack Developer in 90 Days   |   Daily Coding Tasks That Will Sharpen Your Logical Thinking   |   Top 7 Backend Task Ideas to Practice With Node.js and MongoDB   |  

1. What is useEffect?

  • The useEffect hook allows you to perform side effects in your component, such as fetching data, subscribing to events, and manually changing the DOM.
  • It can be used for various purposes like:
    • Data fetching
    • Setting up subscriptions
    • Changing document titles
    • Cleaning up resources (like timers or subscriptions)

2. Basic Syntax of useEffect

The basic syntax of useEffect is as follows:

useEffect(() => {
  // Side effect code here
}, [dependencies]);
  • The first parameter is a function that contains the side effect code.
  • The second parameter is an optional dependency array that tells React when to run the effect:
    • If the dependency array is empty ([]), the effect runs only once when the component mounts.
    • If there are values inside the array, the effect runs whenever any of those values change.
    • If you omit the dependency array entirely, the effect runs after every render.

3. Example 1: Using useEffect to Fetch Data

Let's create an example where we fetch data from an API when the component mounts.

Step 1: Creating the Component

import React, { useState, useEffect } from "react";

function FetchData() {
  const [data, setData] = useState(null);
  const [loading, setLoading] = useState(true);

  useEffect(() => {
    fetch("https://api.example.com/data")
      .then((response) => response.json())
      .then((data) => {
        setData(data);
        setLoading(false);
      })
      .catch((error) => console.error(error));
  }, []); // Empty array means effect runs once when the component mounts

  return loading ? <p>Loading...</p> : <pre>{JSON.stringify(data, null, 2)}</pre>;
}

export default FetchData;

🔹 Explanation:

  • useEffect is used to perform the fetching of data from an API when the component is mounted.
  • The empty dependency array [] ensures that the effect runs only once when the component mounts.
  • We update the data state and set loading to false once the data is fetched.

4. Example 2: Changing the Document Title with useEffect

You can use useEffect to modify the document title whenever a state changes.

Step 1: Creating the Component

import React, { useState, useEffect } from "react";

function TitleChanger() {
  const [count, setCount] = useState(0);

  useEffect(() => {
    document.title = `Count: ${count}`;
  }, [count]); // Effect runs whenever `count` changes

  return (
    <div>
      <p>Count: {count}</p>
      <button onClick={() => setCount(count + 1)}>Increment</button>
    </div>
  );
}

export default TitleChanger;

🔹 Explanation:

  • In this example, we use useEffect to change the document title every time the count state changes.
  • The dependency array [count] means the effect will run whenever count is updated.

5. Example 3: Cleanup with useEffect

useEffect also allows you to clean up side effects, like unsubscribing from a data stream or clearing a timer. This is done by returning a cleanup function inside the useEffect function.

Step 1: Creating the Component with Cleanup

import React, { useState, useEffect } from "react";

function Timer() {
  const [seconds, setSeconds] = useState(0);

  useEffect(() => {
    const timer = setInterval(() => {
      setSeconds((prevSeconds) => prevSeconds + 1);
    }, 1000);

    // Cleanup function to clear the interval when the component unmounts
    return () => clearInterval(timer);
  }, []); // Effect runs once on mount and cleans up on unmount

  return <p>Timer: {seconds} seconds</p>;
}

export default Timer;

🔹 Explanation:

  • useEffect sets up an interval that increases the seconds state every second.
  • The cleanup function clearInterval(timer) is returned inside useEffect, which will be called when the component unmounts, cleaning up the interval.
  • The empty dependency array [] ensures that the effect runs only once when the component mounts.

6. Example 4: Conditional Effect with Dependencies

Sometimes, you want to run the effect only when specific values change. You can achieve this by using dependencies.

Step 1: Creating the Component with Conditional Effect

import React, { useState, useEffect } from "react";

function SearchComponent() {
  const [query, setQuery] = useState("");
  const [results, setResults] = useState([]);

  useEffect(() => {
    if (query) {
      fetch(`https://api.example.com/search?q=${query}`)
        .then((response) => response.json())
        .then((data) => setResults(data))
        .catch((error) => console.error(error));
    }
  }, [query]); // Effect runs whenever `query` changes

  return (
    <div>
      <input
        type="text"
        value={query}
        onChange={(e) => setQuery(e.target.value)}
        placeholder="Search..."
      />
      <ul>
        {results.map((item) => (
          <li key={item.id}>{item.name}</li>
        ))}
      </ul>
    </div>
  );
}

export default SearchComponent;

🔹 Explanation:

  • useEffect only runs when the query state changes.
  • If query has a value, it triggers a fetch request and updates the results state.
  • The effect will not run if the query is an empty string.

7. Key Points to Remember About useEffect

  • Runs after render: useEffect runs after the component renders. This allows it to interact with the DOM.
  • Dependency Array: You can control when the effect runs by passing an array of dependencies ([dependency1, dependency2]).
  • Cleanup: You can return a cleanup function from the effect to clean up side effects when the component unmounts or before the effect runs again.
  • Multiple Effects: You can use multiple useEffect hooks in a single component for different purposes (e.g., one for data fetching, another for DOM manipulation).

8. Conclusion

The useEffect hook in React allows you to handle side effects such as fetching data, modifying the DOM, setting up subscriptions, and cleaning up resources in a declarative manner. It’s a versatile tool that can help you manage side effects efficiently in your functional components.

By understanding how useEffect works, you can create more dynamic, interactive, and responsive React applications.