image

Acesse bootcamps ilimitados e +650 cursos pra sempre

60
%OFF
Article image
Eric Ricielle
Eric Ricielle15/07/2024 20:27
Compartilhe

Understanding use vs. useEffect in React 19

    React 19 has introduced several exciting features and hooks to simplify and enhance the development experience. Among these are the use and useEffect hooks, both of which are crucial for managing side effects in functional components. However, they serve different purposes and understanding their differences can significantly improve your React code. Let's dive in!

    >>> useEffect

    🛠️ Purpose: Manages side effects such as data fetching, subscriptions, or manually changing the DOM in React components.

    🔍 How it Works:

    - Runs after the render is committed to the screen.

    - Can be used to perform operations like fetching data, setting up subscriptions, or manually changing the DOM.

    - Cleanup function can be provided to clean up side effects to prevent memory leaks.

    import { useEffect, useState } from 'react';
    
    function ExampleComponent() {
    const [data, setData] = useState(null);
    
    useEffect(() => {
    async function fetchData() {
    const response = await fetch('https://api.example.com/data');
    const result = await response.json();
    setData(result);
    }
    
    fetchData();
    return () => {
    console.log('Cleanup on component unmount');
    };
    }, []);
    
    return (
    <div>
    {data ? <pre>{JSON.stringify(data, null, 2)}</pre> : 'Loading...'}
    </div>
    );
    }
    

    >>> use

    🛠️ Purpose: Facilitates data fetching and other asynchronous operations directly within the render process of a component.

    🔍 How it Works:

    - Suspends the component rendering until the promise resolves.

    - Helps to create more predictable and declarative data fetching flows.

    - Often used with React's Suspense for data fetching.

    import { use } from 'react';
    
    async function fetchData() {
    const response = await fetch('https://api.example.com/data');
    return response.json();
    }
    
    function ExampleComponent() {
    const data = use(fetchData());
    
    return (
    <div>
    <pre>{JSON.stringify(data, null, 2)}</pre>
    </div>
    );
    }
    

    >>> Key Differences

    - Execution Timing: useEffect runs after the render is committed, while use is used during the render phase, suspending the component until the promise resolves.

    - Purpose: useEffect is versatile for various side effects including data fetching, while "use" is focused on integrating asynchronous data fetching directly within the component's render logic.

    - Suspense Integration: use works seamlessly with React Suspense to manage asynchronous operations.

    >>> Conclusion

    Both use and useEffect are powerful tools in React 19, designed to handle side effects in different contexts. Leveraging these hooks appropriately can lead to cleaner, more efficient, and more maintainable React components. 🚀

    Compartilhe
    Comentários (0)