If you prefer text to video, check out the transcript of the presentation above
The useRef hook in React provides a way to persist values across renders without causing a re-render. It is primarily used for:
Accessing DOM elements (like input fields or divs).
Storing mutable values that do not trigger re-renders. LEt's take a look at some common uses of useRef.
Let's talk about some key points about useRef.
useRef returns a mutable object with a current property.
The current property can hold either a DOM element reference or a mutable value that persists across renders.
The most common use of useRef is to access the DOM elements.
useRef(null) creates a reference object.
The ref attribute assigns the DOM node to inputRef-current.
In useEffect, after the component renders in the browser, inputRef-current-focus focuses the input field.
You can use useRef to store a value that does not trigger re-renders when updated. How it works?
useRef holds the value of renderCount and persists it across renders. You can see that the initial value is two, since we run React in Strict development mode, which renders each component twice. In production, this would be 1.
Updating renderCount.current does not trigger a re-render.
Clicking the button only triggers a re-render due to state (setCount), and renderCount continues to persist.
You can use useRef to store the previous value of a prop or state. How it work?
useRef stores the previous value of count
useEffect updates prevCount-current after every render
The previous value persists across renders without causing additional updates
To summarise. useRef is similar to useState as it preserves the value across multiple re-renders, the main difference is that storing value in ref does not cause re-renders. useRef is versatile for DOM access, storing values, and tracking previous states. Consequently, it helps optimise performance by avoiding unnecessary re-renders.
Description
All the extra information about this section
Understanding useRef in React
The useRef hook in React provides a way to persist values across renders without causing a re-render. It is primarily used for:
Accessing DOM elements (like input fields or divs).
Storing mutable values that do not trigger re-renders.
Key Points About useRef
useRef returns a mutable object with a current property:
constmyRef= useRef(initialValue);
The current property can hold:
A DOM element reference.
A mutable value that persists across renders.
Example 1: Accessing DOM Elements
This is the most common use case for useRef.
Code Example:
importReact, { useRef, useEffect } from"react";
constDomRefDemo = () => {
const inputRef = useRef(null);
useEffect(() => {
// Focus the input field on component mount
inputRef.current.focus();
}, []);
return (
<div><h1>useRef Example: DOM Access</h1><inputref={inputRef}type="text"placeholder="I will be focused on load" /></div>
);
};
exportdefaultDomRefDemo;
How It Works:
useRef(null) creates a reference object.
The ref attribute assigns the DOM node to inputRef.current.
In useEffect, inputRef.current.focus() focuses the input field.
Example 2: Storing Mutable Values Without Re-rendering
You can use useRef to store a value that does not trigger re-renders when updated.