Remember the earlier versions of React that used to batch multiple state updates inside event handlers such as click or change to avoid multiple re-renders? React 18 has added automatic batching for all use cases to improve that performance optimization even further.
With React 18, state updates in event handlers, promises, time outs, native handlers are also batched by default.
For people who do not know about batching, let us discuss that first. If a function is applying multiple updates to the state of a component, react batches or combines them into one state update and a single render on the browser.
Let us say we had the following function:
const handleClick = () => {
setCount(count + 1);
setTotalCount(totalCount+1);
}
JavaScriptReact would then batch the two state updates into a single render.
Note: this used to work even in previous versions of React (since it is inside an event handler).
From React 18, there is a new root API, called createRoot. This allows us to use the concurrent features that were introduced in React 18.
As mentioned, above, this is only available from React 18 onwards. So the project needs to be using that.
After that, we need to replace our ReactDOM.render method from
ReactDOM.render(<App />, document.getElementById("root"));
JavaScriptto
ReactDOM.createRoot(rootNode).render(<App />);
JavaScriptAnd this enables batch updates automatically.
In all the following examples, the multiple calls to set state would be batched at once. This avoids re-rendering with partial states after a render.
const App = () => {
const [count, setCount] = useState(0);
const [flag, setFlag] = useState(false);
const handleClick = () => {
setCount(count + 1);
setFlag(!flag);
};
return (
<div>
<button onClick={handleClick}>Click here!</button>
<h1>{count}</h1>
<h1>{`${flag}`}</h1>
</div>
);
};
JavaScriptconst handleClick = () => {
fetch("URL").then(() => {
setCount(count + 1);
setFlag(!flag);
});
};
JavaScriptconst handleClick = () => {
setTimeout(() => {
setCount(count + 1);
setFlag(!flag);
}, 1000);
};
JavaScriptconst el = document.getElementById("button");
el.addEventListener("click", () => {
setCount(count + 1);
setFlag(!flag);
});
JavaScriptThere are going to be cases where we do not want React to batch update the state. We can make use of the flushSync API from react-dom.
import { flushSync } from 'react-dom';
function handleClick() {
flushSync(() => {
setCounter(c => c + 1);
});
// React has updated the DOM by now
flushSync(() => {
setFlag(f => !f);
});
}
JavaScriptFor more information, you can always head to the discussion on Github. Or leave a comment below if you have any questions!
I recently switched completely to the Brave browser and have set ad blocking to aggressive…
I was preparing a slide deck for a hackathon and decided to put in a…
I have been using npx a lot lately, especially whenever I want to use a…
Manually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is…
While working on a project, I wanted to do an integrity check of a file…
Popovers have been a problem that was typically solved by using a third-party solution. But…