useInsertionEffect
useInsertionEffect
allows inserting elements into the DOM before any layout Effects fire.
useInsertionEffect(setup, dependencies?)
Reference
useInsertionEffect(setup, dependencies?)
Call useInsertionEffect
to insert styles before any Effects fire that may need to read layout:
import { useInsertionEffect } from 'react';
// Inside your CSS-in-JS library
function useCSS(rule) {
useInsertionEffect(() => {
// ... inject <style> tags here ...
});
return rule;
}
Parameters
-
setup
: The function with your Effect’s logic. Your setup function may also optionally return a cleanup function. When your component is added to the DOM, but before any layout Effects fire, React will run your setup function. After every re-render with changed dependencies, React will first run the cleanup function (if you provided it) with the old values, and then run your setup function with the new values. When your component is removed from the DOM, React will run your cleanup function. -
optional
dependencies
: The list of all reactive values referenced inside of thesetup
code. Reactive values include props, state, and all the variables and functions declared directly inside your component body. If your linter is configured for React, it will verify that every reactive value is correctly specified as a dependency. The list of dependencies must have a constant number of items and be written inline like[dep1, dep2, dep3]
. React will compare each dependency with its previous value using theObject.is
comparison algorithm. If you don’t specify the dependencies at all, your Effect will re-run after every re-render of the component.
Returns
useInsertionEffect
returns undefined
.
Caveats
- Effects only run on the client. They don’t run during server rendering.
- You can’t update state from inside
useInsertionEffect
. - By the time
useInsertionEffect
runs, refs are not attached yet. useInsertionEffect
may run either before or after the DOM has been updated. You shouldn’t rely on the DOM being updated at any particular time.- Unlike other types of Effects, which fire cleanup for every Effect and then setup for every Effect,
useInsertionEffect
will fire both cleanup and setup one component at a time. This results in an “interleaving” of the cleanup and setup functions.
Usage
Injecting dynamic styles from CSS-in-JS libraries
Traditionally, you would style React components using plain CSS.
// In your JS file:
<button className="success" />
// In your CSS file:
.success { color: green; }
Some teams prefer to author styles directly in JavaScript code instead of writing CSS files. This usually requires using a CSS-in-JS library or a tool. There are three common approaches to CSS-in-JS:
- Static extraction to CSS files with a compiler
- Inline styles, e.g.
<div style={{ opacity: 1 }}>
- Runtime injection of
<style>
tags
If you use CSS-in-JS, we recommend a combination of the first two approaches (CSS files for static styles, inline styles for dynamic styles). We don’t recommend runtime <style>
tag injection for two reasons:
- Runtime injection forces the browser to recalculate the styles a lot more often.
- Runtime injection can be very slow if it happens at the wrong time in the React lifecycle.
The first problem is not solvable, but useInsertionEffect
helps you solve the second problem.
Call useInsertionEffect
to insert the styles before any layout Effects fire:
// Inside your CSS-in-JS library
let isInserted = new Set();
function useCSS(rule) {
useInsertionEffect(() => {
// As explained earlier, we don't recommend runtime injection of <style> tags.
// But if you have to do it, then it's important to do in useInsertionEffect.
if (!isInserted.has(rule)) {
isInserted.add(rule);
document.head.appendChild(getStyleForRule(rule));
}
});
return rule;
}
function Button() {
const className = useCSS('...');
return <div className={className} />;
}
Similarly to useEffect
, useInsertionEffect
does not run on the server. If you need to collect which CSS rules have been used on the server, you can do it during rendering:
let collectedRulesSet = new Set();
function useCSS(rule) {
if (typeof window === 'undefined') {
collectedRulesSet.add(rule);
}
useInsertionEffect(() => {
// ...
});
return rule;
}
Read more about upgrading CSS-in-JS libraries with runtime injection to useInsertionEffect
.
Deep Dive
If you insert styles during rendering and React is processing a non-blocking update, the browser will recalculate the styles every single frame while rendering a component tree, which can be extremely slow.
useInsertionEffect
is better than inserting styles during useLayoutEffect
or useEffect
because it ensures that by the time other Effects run in your components, the <style>
tags have already been inserted. Otherwise, layout calculations in regular Effects would be wrong due to outdated styles.