useSelectedLayoutSegment
useSelectedLayoutSegment
は、呼び出されたLayoutから1レベル下のアクティブなルートセグメントを読み取ることができるClient Componentフックです。
これは、ナビゲーションUIに便利です。たとえば、親レイアウト内のタブがアクティブな子セグメントに応じてスタイルを変えるような場合です。
- TypeScript
- JavaScript
app/example-client-component.tsx
'use client'
import { useSelectedLayoutSegment } from 'next/navigation'
export default function ExampleClientComponent() {
const segment = useSelectedLayoutSegment()
return <p>Active segment: {segment}</p>
}
app/example-client-component.js
'use client'
import { useSelectedLayoutSegment } from 'next/navigation'
export default function ExampleClientComponent() {
const segment = useSelectedLayoutSegment()
return <p>Active segment: {segment}</p>
}
Good to know:
useSelectedLayoutSegment
はClient Componentフックであり、LayoutはデフォルトでServer Componentsのため、通常useSelectedLayoutSegment
はLayoutにインポートされるClient Componentを介して呼ばれます。useSelectedLayoutSegment
は1レベル下のセグメントのみを返します。すべてのアクティブなセグメントを返すには、useSelectedLayoutSegments
を参照してください。
パラメータ
const segment = useSelectedLayoutSegment(parallelRoutesKey?: string)
useSelectedLayoutSegment
はオプションでparallelRoutesKey
を受け入れ、そのスロット内のアクティブなルートセグメントを読み取ることができます。
戻り値
useSelectedLayoutSegment
は、アクティブなセグメントの文字列を返すか、存在しない場合はnull
を返します。
たとえば、以下のLayoutとURLの場合、返されるセグメントは次のようになります:
Layout | 訪問したURL | 返されるセグメント |
---|---|---|
app/layout.js | / | null |
app/layout.js | /dashboard | 'dashboard' |
app/dashboard/layout.js | /dashboard | null |
app/dashboard/layout.js | /dashboard/settings | 'settings' |
app/dashboard/layout.js | /dashboard/analytics | 'analytics' |
app/dashboard/layout.js | /dashboard/analytics/monthly | 'analytics' |
例
アクティブリンクコンポーネントの作成
useSelectedLayoutSegment
を使用して、アクティブなセグメントに応じてスタイルを変更するアクティブリンクコンポーネントを作成できます。たとえば、ブログのサイドバーにある注目記事のリスト:
- TypeScript
- JavaScript
app/blog/blog-nav-link.tsx
'use client'
import Link from 'next/link'
import { useSelectedLayoutSegment } from 'next/navigation'
// この*client*コンポーネントは、ブログのレイアウトにインポートされます
export default function BlogNavLink({
slug,
children,
}: {
slug: string
children: React.ReactNode
}) {
// `/blog/hello-world`に移動すると、
// 選択されたレイアウトセグメントとして'hello-world'が返されます
const segment = useSelectedLayoutSegment()
const isActive = slug === segment
return (
<Link
href={`/blog/${slug}`}
// リンクがアクティブかどうかに応じてスタイルを変更
style={{ fontWeight: isActive ? 'bold' : 'normal' }}
>
{children}
</Link>
)
}
app/blog/blog-nav-link.js
'use client'
import Link from 'next/link'
import { useSelectedLayoutSegment } from 'next/navigation'
// この*client*コンポーネントは、ブログのレイアウトにインポートされます
export default function BlogNavLink({ slug, children }) {
// `/blog/hello-world`に移動すると、
// 選択されたレイアウトセグメントとして'hello-world'が返されます
const segment = useSelectedLayoutSegment()
const isActive = slug === segment
return (
<Link
href={`/blog/${slug}`}
// リンクがアクティブかどうかに応じてスタイルを変更
style={{ fontWeight: isActive ? 'bold' : 'normal' }}
>
{children}
</Link>
)
}
- TypeScript
- JavaScript
app/blog/layout.tsx
// Client Componentを親Layout(Server Component)にインポート
import { BlogNavLink } from './blog-nav-link'
import getFeaturedPosts from './get-featured-posts'
export default async function Layout({
children,
}: {
children: React.ReactNode
}) {
const featuredPosts = await getFeaturedPosts()
return (
<div>
{featuredPosts.map((post) => (
<div key={post.id}>
<BlogNavLink slug={post.slug}>{post.title}</BlogNavLink>
</div>
))}
<div>{children}</div>
</div>
)
}
app/blog/layout.js
// Client Componentを親Layout(Server Component)にインポート
import { BlogNavLink } from './blog-nav-link'
import getFeaturedPosts from './get-featured-posts'
export default async function Layout({ children }) {
const featuredPosts = await getFeaturedPosts()
return (
<div>
{featuredPosts.map((post) => (
<div key={post.id}>
<BlogNavLink slug={post.slug}>{post.title}</BlogNavLink>
</div>
))}
<div>{children}</div>
</div>
)
}
バージョン履歴
バージョン | 変更内容 |
---|---|
v13.0.0 | useSelectedLayoutSegment を導入しました。 |