gitignore 의 *.md / .claude/ 차단을 풀어 다음 파일을 git 으로 추적. - /CLAUDE.md, /AGENTS.md (루트 에이전트 가이드) - .agents/**/*.md (skills 문서 95개) - .claude/settings.json (Claude Code 프로젝트 설정) .claude/worktrees/ 는 git worktree 메타이므로 신규 ignore 라인으로 제외. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
68 lines
1.3 KiB
Markdown
68 lines
1.3 KiB
Markdown
# Suspense Boundaries
|
|
|
|
Client hooks that cause CSR bailout without Suspense boundaries.
|
|
|
|
## useSearchParams
|
|
|
|
Always requires Suspense boundary in static routes. Without it, the entire page becomes client-side rendered.
|
|
|
|
```tsx
|
|
// Bad: Entire page becomes CSR
|
|
'use client'
|
|
|
|
import { useSearchParams } from 'next/navigation'
|
|
|
|
export default function SearchBar() {
|
|
const searchParams = useSearchParams()
|
|
return <div>Query: {searchParams.get('q')}</div>
|
|
}
|
|
```
|
|
|
|
```tsx
|
|
// Good: Wrap in Suspense
|
|
import { Suspense } from 'react'
|
|
import SearchBar from './search-bar'
|
|
|
|
export default function Page() {
|
|
return (
|
|
<Suspense fallback={<div>Loading...</div>}>
|
|
<SearchBar />
|
|
</Suspense>
|
|
)
|
|
}
|
|
```
|
|
|
|
## usePathname
|
|
|
|
Requires Suspense boundary when route has dynamic parameters.
|
|
|
|
```tsx
|
|
// In dynamic route [slug]
|
|
// Bad: No Suspense
|
|
'use client'
|
|
import { usePathname } from 'next/navigation'
|
|
|
|
export function Breadcrumb() {
|
|
const pathname = usePathname()
|
|
return <nav>{pathname}</nav>
|
|
}
|
|
```
|
|
|
|
```tsx
|
|
// Good: Wrap in Suspense
|
|
<Suspense fallback={<BreadcrumbSkeleton />}>
|
|
<Breadcrumb />
|
|
</Suspense>
|
|
```
|
|
|
|
If you use `generateStaticParams`, Suspense is optional.
|
|
|
|
## Quick Reference
|
|
|
|
| Hook | Suspense Required |
|
|
|------|-------------------|
|
|
| `useSearchParams()` | Yes |
|
|
| `usePathname()` | Yes (dynamic routes) |
|
|
| `useParams()` | No |
|
|
| `useRouter()` | No |
|