DEV Community

Emmanuel Aiyenigba
Emmanuel Aiyenigba

Posted on

useEffect vs useLayoutEffect: the difference and when to use them

React hooks

I sort of noticed that alot of people do not know the difference between the useEffect and useLayoutEffect hooks in React. Finding a use case for useLayoutEffect seems like a very hard task.

Let's dive straight into it and see what this hooks are really all about, their difference(s) and when to use them.

useEffect

useEffect allows you perform side effects from a function component. When useEffect is called, React knows to render your side effect only after changes are made to the DOM
By default, React runs the effect after every render - including the first render. This is to say that useEffect is effected only after the component is rendered.

But if you need your side effect to fire synchronously after the DOM mutation, that is, before the next browser paint without the user ever noticing any flickering or visual inconsistency then you need to use useLayoutEffect

useLayoutEffect

useLayoutEffect fires synchronously after the DOM mutation and before the browser get to paint the new changes. This hook is especially useful for performing DOM measurement like scroll height, scroll width, scroll position and other style on any DOM element.

Let's make some example codes

useEffect(()=>{
  console.log("I will run second instead of first")
});

useLayoutEffect(()=>{
  console.log("I will run first")
})

Enter fullscreen mode Exit fullscreen mode

Javascript script is a single-threaded programming language. Suffice to say, it runs from top to bottom. But here if you check the console, "I will run first", that is, the useLayoutEffect actually runs before the useEffect runs. This is because useLayoutEffect is fired synchronously after DOM is mutated and before the browser paints the new changes.

Okay, I will like you to notice the change well in order to better understand how it works. Let's reference a DOM element with the useRef React hook and let's perform some changes with the two side effect hooks we've been talking about

import React, {useRef, useEffect, useLayoutEffect) from 'react'

const App = () => {
  const inputRef = useRef(null)
  useEffect(()=>{
    inputRef.current.value = "another user"
  });

  useLayoutEffect(()=>{
    console.log(inputRef.current.value)

  });
  return(
    <div>
      <input type="text" value="EmmanuelTheCoder" ref= 
        {inputRef}/>
    </div>
  );
}
export default App;

Enter fullscreen mode Exit fullscreen mode

Once the component is rendered, the input value becomes "another user" but the console says "EmmanuelTheCoder".
The useLayoutEffect already fired synchronously after the DOM mutation, before the browser could paint "another user"

I hope you got it.

Hey wait, one more thing!

React 18 brought some really good update to useEffect hook.

Starting in React 18, the function passed to useEffect will fire synchronously before layout and paint when it’s the result of a discrete user input such as a click, or when it’s the result of an update wrapped in https://reactjs.org/docs/react-dom.html#flushsync. This behavior allows the result of the effect to be observed by the event system, or by the caller of https://reactjs.org/docs/react-dom.html#flushsync.

Incase you don't know about React 18, I will put out an article on this blog shortly explaining it in detail, plus the newly added hooks.

Thanks for reading.

Top comments (7)

Collapse
 
thcero profile image
theo

Thank you for the simple and to the point information!

Collapse
 
emmanuelthecoder profile image
Emmanuel Aiyenigba

I'm glad you find it helpful.

Collapse
 
doshiparth642 profile image
doshiparth642

@emmanuelthecoder , I read your article, Actually yesterday I thought I would write article of UseEffect and UseLayoutEffect but........,
after reading your article I thought not necessary to write article on that topic because you can clear all points in Very Simple Manner.

Another thing is that UseEffectand UseLayoutEffect is called after render method called means whenver any DOM mutation occured but if we don't pass array dependency so it's called in infinite loop. That thing applied on both UseEffect and UseLayoutEffect.

So, It's necessary to pass Empty array dependency in the hook as second argument

useLayoutEffect(()=>{
    console.log("something")
    //second argument array dependency
  },[])

useEffect(()=>{
    console.log("something")
    //second argument array dependency
  },[])
Enter fullscreen mode Exit fullscreen mode
Collapse
 
emmanuelthecoder profile image
Emmanuel Aiyenigba

Thanks for the kind words and the additional point. I'm glad you found the article helpful.
Would be glad if you could give me a follow here and share the article.

Collapse
 
aderchox profile image
aderchox • Edited

Thanks, the explanation is clear, but about this sentence:

By default, React runs the effect after every render

it depends on the dependency array of the useEffect.

Collapse
 
emmanuelthecoder profile image
Emmanuel Aiyenigba

Yes! by default, React runs side-effect on every render but this can be customized by passing in an array of dependencies.

Collapse
 
valentyn profile image
Valentyn

Ok, I know I had a case on my previous project where it was better to use useLayoutEffect over useEffect. Thanks.