How to call useEffect React Hook on a component mount and unmount

Article autor
April 18, 2020
How to call useEffect React Hook on a component mount and unmount
Elixir Newsletter
Join Elixir newsletter

Subscribe to receive Elixir news to your inbox every two weeks.

Oops! Something went wrong while submitting the form.
Elixir Newsletter
Expand your skills

Download free e-books, watch expert tech talks, and explore open-source projects. Everything you need to grow as a developer - completely free.

Table of contents

With pure function React Components you're not allowed to use lifecycle methods like componentDidMount or componentWillUnmount.

These can be replaced with proper use of useEffect hook introduced in React version 16.8.

Here is the code that will run exactly once when a component is mounted and exactly once when it's supposed to be unmounted:

import { useEffect } from "React";

const ExampleComponent = () => {
  useEffect(() => {
    // Here goes the code you wish to run on mount

    return () => {
      // Here goes the code you wish to run on unmount
    }
  }, []);

  ...
}

It's crucial to pass an empty array as the second argument of useEffect function call. If you omit it or pass dependencies inside of array it won't work as intended.

Work with a team that keeps learning and building better software every day.

Related posts

Dive deeper into this topic with these related posts

No items found.

You might also like

Discover more content from this category

How to override Kernel macros

The macro mechanism in Elixir is not only an interesting metaprogramming feature - in fact, it is at the language's very core. And the more awesome fact is that, using macros, you can override the algorithm of defining functions itself!

How to run tests in Elixir IEx shell

Hey! Have you ever wondered about tests running inside the IEx shell? For a long time, I was convinced that it’s not really possible. And as it turns out - that’s not really straightforward. You won’t easily find information about that in the documentation.

How to check if a set contains exact values with Jest in JS?

TLDR: With jest-extended package you can write: expect([...set]).toIncludeSameMembers([value1, value2]);. If you are looking to a native, but longer solution scroll down a bit.