Create custom Google Fonts from page content!
npm install react-content-font
If you're developing React applications for languages like Japanese, and want to use non-system fonts, you might find this package interesting.
Fonts for languages like Japanese, are very big. A single font weight for Noto Sans Japanese for instance is 5.7 MB. Definitely not ideal to make your users download such a big file. Not to mention if you want more than one font weight...
This package will check a page, get a list of unique characters on that page, and then request a font from Google Fonts with only those characters included using an optimized request!
On initial render, it uses createTreeWalker to efficiently walk the DOM and get all the characters. After initial render, it uses MutationObserver and checks only the updated nodes for new text that get added dynamically.
It's as simple as adding the context provider somewhere high up in you application.
For example, if you have a Next.js app using App Router, you can update your app/layout.tsx
file like so:
import FontProvider from 'react-content-font';
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="jp">
<body>
<FontProvider fontName="Noto Sans JP">{children}</FontProvider>
</body>
</html>
);
}
Simply provide the font you want with the fontName
prop, and by default it will request only normal (meaning 400) weight font.
Requesting additional font weights is as simple as adding the fontWeights
prop, like so:
import FontProvider from 'react-content-font';
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="jp">
<body>
<FontProvider fontName="Noto Sans JP" fontWeights={[400, 600]}>
{children}
</FontProvider>
</body>
</html>
);
}
I'm not sure any Japanese fonts have italic variants, but maybe the font you want to use does? If so, you can request italic variants for whatever weight you desire, like so:
import FontProvider from 'react-content-font';
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="jp">
<body>
<FontProvider
fontName="Noto Sans JP"
fontWeights={[400, 600, ['ital', 400], ['ital', 900]]}
>
{children}
</FontProvider>
</body>
</html>
);
}
In this example, in addition to regular 400 and 600 weight fonts, we'll also get 400 and 900 italic.
In the Google Fonts API documentation, it mentions "specifying a value other than the default auto is usually appropriate". By default when you generate a link tag for a Google Font, it sets display=swap
. So this package will do the same thing.
But if you want something else, all you need to do is set the display
prop, like so:
import FontProvider from 'react-content-font';
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="jp">
<body>
<FontProvider fontName="Noto Sans JP" display="block">
{children}
</FontProvider>
</body>
</html>
);
}
Valid values for display
are 'auto' | 'block' | 'swap' | 'fallback' | 'optional'
.
What if I want to wait for the font to be loaded before showing content, or show a loading state or something?
Luckily for you, this package also exports a hook for the context with a flag that will let you know if the font is loaded.
Here is an example of a PageText
component, that changes the display
from hidden
to visible
based on context.
'use client';
import { useFontContext } from 'react-content-font';
export default function PageText() {
const { isFontLoaded } = useFontContext();
return (
<p style={{ visibility: isFontLoaded ? 'visible' : 'hidden' }}>
よそはほかまあこの威圧心というのの後をしないう。きっと場合で仕事帰りはひょろひょろその評でたなりでするが行くたをも表裏できなけれでば、なぜにはもっなないうた。個人にできたのはついに十月から向後ますだない。もっと岡田さんから批評その道それほど説明が云った他人その自力いつか修養にというお吹聴だでますでて、この先刻は私か同人引込で思うば、大森さんののを自分の私に勢いごろかと広めよば私手でご話の出ように引続きお[#「に解らうだので、とにかくたとい指図にするだろといるです事を考えだう。
</p>
);
}
It's important to note that YOU MUST RENDER THE TEXT, or else the characters will not be discovered and won't be included in the requested font.
For example, DO NOT DO THIS:
'use client';
import { useFontContext } from 'react-content-font';
export default function PageText() {
const { isFontLoaded } = useFontContext();
return (
<>
{isFontLoaded && (
<p>
よそはほかまあこの威圧心というのの後をしないう。きっと場合で仕事帰りはひょろひょろその評でたなりでするが行くたをも表裏できなけれでば、なぜにはもっなないうた。個人にできたのはついに十月から向後ますだない。もっと岡田さんから批評その道それほど説明が云った他人その自力いつか修養にというお吹聴だでますでて、この先刻は私か同人引込で思うば、大森さんののを自分の私に勢いごろかと広めよば私手でご話の出ように引続きお[#「に解らうだので、とにかくたとい指図にするだろといるです事を考えだう。
</p>
)}
</>
);
}
Luckily for you, there's another flag in the context that lets you know if the font is being updated.
Similar to the previous example, you can defer showing content on update, like so:
'use client';
import { useFontContext } from 'react-content-font';
export default function PageText() {
const { isFontUpdating } = useFontContext();
return (
<p style={{ visibility: isFontUpdating ? 'visible' : 'hidden' }}>
よそはほかまあこの威圧心というのの後をしないう。きっと場合で仕事帰りはひょろひょろその評でたなりでするが行くたをも表裏できなけれでば、なぜにはもっなないうた。個人にできたのはついに十月から向後ますだない。もっと岡田さんから批評その道それほど説明が云った他人その自力いつか修養にというお吹聴だでますでて、この先刻は私か同人引込で思うば、大森さんののを自分の私に勢いごろかと広めよば私手でご話の出ように引続きお[#「に解らうだので、とにかくたとい指図にするだろといるです事を考えだう。
</p>
);
}
It's important to note that YOU MUST RENDER THE TEXT, or else the characters will not be discovered and won't be included in the requested font.
Yes please!