2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Qiita100万記事感謝祭!記事投稿キャンペーン開催のお知らせ

【Next.js】Providerの使い方をミスって" 'useContext' is not available in this environment."のエラーが出た

Posted at

はじめに

Next.js×TypeScriptでコーディングをしていたところ、下記のエラーに遭遇しました。

React functionality 'useContext' is not available in this environment.

原因

クライアントで動かすべき機能を、サーバーで動かそうとしたのが主な原因でした。

今回使用しているProviderはサーバーコンポーネントとしてサポートされていません。
従って、クライアント側で動かしてあげる必要があるということです。

解決方法

Providerを別コンポーネントに分けて、クライアントコンポーネントとして実行しました。

公式ドキュメントにも同様の解決法が提示されています。

修正前

layout.tsx
//サーバーサイド
export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body
        className={`${geistSans.variable} ${geistMono.variable} antialiased`}
      >
       <ApolloProvider client={client}>{children}</ApolloProvider>
      </body>
    </html>
  );
}

修正後

ApolloProviderを扱うクライアントコンポーネントを新規作成しました。

ClientProvider.tsx
"use client";
//クライアントサイドで実行

import { ApolloProvider } from "@apollo/client";
import { client } from "../lib /apolo-client";

export default function ClientProvider({
  children,
}: {
  children: React.ReactNode;
}) {
  return <ApolloProvider client={client}>{children}</ApolloProvider>;
}

layout.tsx
export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <body>
        <ClientProvider>{children}</ClientProvider>
      </body>
    </html>
  );
}

参考

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?