KAKAMU

ReactとNext.jsを理解する

そもそも

ReactNext.jsを使用する際の開発手法をまとめる。

React基礎

React公式ドキュメントは随所に挟まれる「Deep Dive」や「Pitfall」の内容が特に学びが多い。

React 19

React Server Components(RSC)

Next.js

Next.js 15

App Routerへの移行

Vercel

Client Componentsを理解する

  • Client Componentsとは、あくまでも二段階仕掛けのReactコンポーネントツリーのうちの一つを指し示す概念であり、クライアントサイドでのみ実行されるコンポーネントを意味しない。
  • その証拠に、主なReact Hooks(useStateuseReduceruseMemouseCallbackuseRefなど)は、Client Componentsでのみ使用可能だが、SSR時(ビルド時・リクエスト時)にも実行され、その結果はクライアントサイドでの初回レンダリング時に初期値となる。
  • そのため、Static Renderingされるページでは、クライアントサイドでの初回レンダリング時の初期値が、ビルド時に計算された値になる(クライアントサイドで最新化されない)。
    • 日付や時刻など、サーバーサイドとクライアントサイド、またはビルド時とリクエスト時で、値が異なりうるデータを扱う際には特に注意が必要。
  • クライアントサイドでのみ処理を実行したい場合は、useEffectを使う。
  • Server Componentsはサーバーサイドでのみ実行される。
  • Next.jsのレンダリング方式
'use client'
 
function ClientComponent() {
  // Runs during SSR, state is serialized and sent to client
  const [count, setCount] = useState(0)
 
  // Runs during SSR, value is computed and serialized and sent to client
  const expensiveValue = useMemo(() => computeExpensive(), [])
 
  // Runs only after hydration on client
  useEffect(() => {
    document.title = `Count: ${count}`
  }, [count])
 
  return <div>{expensiveValue}</div>
}