Next.js Integration: useIntlayer Hook Documentation
useIntlayerフックは、Next.jsアプリケーション向けにローカライズされたコンテンツを効率的に取得し、管理するためにカスタマイズされています。このドキュメントでは、Next.jsプロジェクト内でフックを利用する方法に焦点を当て、適切なローカリゼーションプラクティスを確保します。
Next.jsでのuseIntlayerのインポート
Next.jsアプリケーションでクライアントサイドまたはサーバーサイドコンポーネントを作業しているかに応じて、次のようにuseIntlayerフックをインポートできます。
クライアントコンポーネント:
typescriptimport { useIntlayer } from "next-intlayer"; // クライアントサイドコンポーネントで使用
サーバーコンポーネント:
tsximport { useIntlayer } from "next-intlayer/server"; // サーバーサイドコンポーネントで使用
パラメータ
- key: 取得したいコンテンツの辞書キーの識別子を示す文字列。
- locale(オプション): 使用する特定のロケール。省略された場合、フックはクライアントまたはサーバーのコンテキストで設定されたロケールをデフォルトとして使用します。
コンテンツ宣言ファイル
すべてのコンテンツキーは、ランタイムエラーを防ぎ、型安全性を確保するためにコンテンツ宣言ファイル内で定義されていることが重要です。このアプローチは、コンパイル時のバリデーションのためにTypeScriptとの統合も容易にします。
コンテンツ宣言ファイルのセットアップに関する指示はこちらで入手できます。
Next.jsでの例
Next.jsページ内でuseIntlayerフックを実装し、アプリケーションの現在のロケールに基づいてローカライズされたコンテンツを動的にロードする方法は次のとおりです。
src/pages/[locale]/index.tsx
import { ClientComponentExample } from "@components/ClientComponentExample";import { ServerComponentExample } from "@components/ServerComponentExample";import { type NextPageIntlayer, IntlayerClientProvider } from "next-intlayer";import { useIntlayer, IntlayerServerProvider } from "next-intlayer/server";const HomePage: NextPageIntlayer = async ({ params }) => { const { locale } = await params; const content = useIntlayer("homepage", locale); return ( <> <p>{content.introduction}</p> <IntlayerClientProvider locale={locale}> <ClientComponentExample /> </IntlayerClientProvider> <IntlayerServerProvider locale={locale}> <ServerComponentExample /> </IntlayerServerProvider> </> );};
src/components/ClientComponentExample.tsx
"use-client";import type { FC } from "react";import { useIntlayer } from "next-intlayer";const ClientComponentExample: FC = () => { const content = useIntlayer("component-content"); return ( <div> <h1>{content.title}</h1> <p>{content.description}</p> </div> );};
src/components/ServerComponentExample.tsx
import type { FC } from "react";import { useIntlayer } from "next-intlayer/server";const ServerComponentExample: FC = () => { const content = useIntlayer("component-content"); return ( <div> <h1>{content.title}</h1> <p>{content.description}</p> </div> );};
属性ローカリゼーションの処理
alt、title、href、aria-labelなどの属性をローカライズするには、コンテンツを正しく参照することを確認してください。
tsx
<img src={content.image.src.value} alt={content.image.alt.value} />
さらなる情報
- Intlayerビジュアルエディタ: より簡単にコンテンツを管理するためのビジュアルエディタの使い方についてはこちらをご覧ください。
このドキュメントでは、Next.js環境内で特にuseIntlayerフックの使用を概説しており、Next.jsアプリケーション全体でのローカリゼーション管理の堅牢なソリューションを提供します。
このドキュメントを改善するアイデアがある場合は、GitHubでプルリクエストを送信することで自由に貢献してください。
ドキュメントへのGitHubリンク