Parallel Routes とは?
parallel routes は、1 つの layout が複数の名前付きスロットをホストし、それぞれが自身のルートを同時にレンダリングできるようにするルーティング機能です。各セクションは周囲のシェルを共有しつつ、独立して読み込み・ナビゲートできます。これにより、複数のパネルがそれぞれ更新される dashboard のようなビューがサポートされます。
なぜ重要か
parallel routes を使うと、複雑なページはビュー全体を一緒に再レンダリングさせることなく、独立した領域を構成できます。各スロットは自身のタイムラインで fetch と streaming を行えます。
関連ガイド
What Are Intercepting Routes?Intercepting routes display a destination route within the current context, such as opening a detail page as…
What Is a Data Fetching Waterfall?A data fetching waterfall is a chain of requests that run one after another because each waits on the previou…
What Is a Route Handler?A route handler is server-side code mapped to a URL path that processes a request and returns a response, use…