use googlefonts
1.0.0
<head />で予想されるフォントを先験的に定義できない場合、Googleフォントv2をロードするために反応します。
プロジェクトで必要な特定のフォントがわかっている場合は、このライブラリを省略し、next.jsを使用している場合はreact-helmetまたはnext/headを介してhtmlの<head />に<link />タグを直接挿入する必要があります。
flyyer.ioがこのフックを作成して、開発者がフォントを備えたテンプレートをその場で作成して、各ユーザーの優先フォントスタイリングに合わせて作成できます。これらのテンパートは、ソーシャルおよびマーケティング画像を作成するために使用されます。
この依存関係をインストールします:
yarn add @flyyer/use-googlefonts一般的なケースの使用法:
import React from "react" ;
import { useGoogleFonts , GoogleFontsStatus } from "@flyyer/use-googlefonts" ;
function App ( ) {
const font = useGoogleFonts ( [
{
family : "Cabin" , // Family Name
styles : [
"600..700" , // Range, if family supports it.
"100..200italic" , // Range with italic
"300italic" , // Weight with italic
"regular" , // Shortcut to 400
"italic" , // Shortcut to 400 Italic
"500" , // Regular with weight
444 , // Regular weight for variable font
] ,
} ,
{
family : "Roboto" , // Family Name - Roboto doesn't support ranges
styles : [
"300italic" , // Weight with italic
"regular" , // Shortcut to 400
"italic" , // Shortcut to 400 Italic
"500" ,
100 ,
] ,
} ,
] ) ;
if ( font . status === GoogleFontsStatus . FAILED ) {
console . log ( font . error ) ;
} else {
console . log ( font . href ) ;
// https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,444;0,500;0,600..700;1,100..200;1,300;1,400;1,600..700&family=Roboto:ital,wght@0,100;0,400;0,500;1,300;1,400&display=auto
}
return (
// Use .flyyer-wait class to prevent premature renders while the font is still loading.
< div className = { googleFont . status === GoogleFontsStatus . LOADING && "flyyer-wait" } >
< p style = { { fontFamily : "'Cabin', sans-serif" } } >
Almost before we knew it, we had left the ground.
</ p >
</ div >
) ;
}パフォーマンスと速度を向上させるには、HTMLの<head />に次の事前接続タグを追加することをお勧めします。
これは、 @flyyer/cliを使用している場合に自動的に行われるため、create-flyyer-appでデッキを作成した場合はこのセクションをスキップします
< html >
< head >
< link rel =" preconnect " href =" https://fonts.gstatic.com " crossorigin >
< link rel =" preconnect " href =" https://fonts.googleapis.com " crossorigin >
</ head >
< body >
...
</ body >
</ html >