DEV Community

Cover image for React Hooks: The Superheroes of Functional Components
souraya
souraya

Posted on

React Hooks: The Superheroes of Functional Components

React hooks are a powerful tool that allow developers to reuse stateful logic across multiple components in a clean and efficient manner. In this article, we will explore some of the most commonly used React hooks for beginners.

useState

The useState hook is used to add state to functional components. It takes an initial state value as an argument and returns an array with two elements: the current state value and a function to update it. Here's an example:

import { useState } from 'react';

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

  const increment = () => {
    setCount(count + 1);
  };

  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={increment}>Click me</button>
    </div>
  );
}

Enter fullscreen mode Exit fullscreen mode

In the above example, we use the useState hook to add a count state variable to our Counter component. We then define an increment function that calls setCount to update the state value.

useEffect

The useEffect hook is used to perform side effects in functional components. It takes a function as an argument and runs it after every render. Here's an example:

import { useState, useEffect } from 'react';

function Clock() {
  const [time, setTime] = useState(new Date());

  useEffect(() => {
    const interval = setInterval(() => {
      setTime(new Date());
    }, 1000);

    return () => {
      clearInterval(interval);
    };
  }, []);

  return (
    <div>
      <p>The time is {time.toLocaleTimeString()}</p>
    </div>
  );
}

Enter fullscreen mode Exit fullscreen mode

In the above example, we use the useEffect hook to update the time state variable every second. We use the setInterval function to run the update function every second and clear it when the component unmounts.

useContext

The useContext hook is used to share state between components without having to pass props down through the component tree. Here's an example:

import React, { createContext, useContext, useState } from 'react';

const ThemeContext = createContext('light');

function App() {
  const [theme, setTheme] = useState('light');

  return (
    <ThemeContext.Provider value={theme}>
      <button onClick={() => setTheme(theme === 'light' ? 'dark' : 'light')}>
        Change theme
      </button>
      <Content />
    </ThemeContext.Provider>
  );
}

function Content() {
  const theme = useContext(ThemeContext);

  return (
    <div>
      <p>Current theme: {theme}</p>
    </div>
  );
}

Enter fullscreen mode Exit fullscreen mode

In the above example, we use the useContext hook to share the current theme between the App and Content components. We define a ThemeContext with a default value of 'light' and use the Provider component to pass the theme value to the Content component. The Content component then uses the useContext hook to get the theme value.

useRef

The useRef hook is used to access DOM elements or to persist a value between renders. Here's an example:

import { useRef } from 'react';

function TextInput() {
  const inputRef = useRef(null);

  const focusInput = () => {
    inputRef.current.focus();
  };

  return (
    <div>
      <input type="text" ref={inputRef} />
      <button onClick={focusInput}>Focus input</button>
    </div>
  );
}

Enter fullscreen mode Exit fullscreen mode

In the above example, we use the useRef hook to access the input element. We define a ref with an initial value of null and assign it to the input element using the ref prop. We then define a focusInput function that uses.

In conclusion, React hooks are a powerful feature that allows functional components to have state, perform side effects, consume context, hold a reference, and memoize a value. These hooks can make code more readable, easier to write, and more maintainable.

As a beginner, it's essential to understand how these hooks work and when to use them appropriately. By using hooks, you can write cleaner, more concise code that is easier to understand and maintain.

I hope this article has provided you with a good starting point to explore React hooks further. Keep in mind that there are many more hooks available, and each of them serves a specific purpose. Happy coding!

Top comments (0)