Skills included: - pr-reviewer: Adapted for Gitea/GitHub via platform-aware scripts (dropped fetch_pr_data.py and add_inline_comment.py, kept generate_review_files.py) - code-review-excellence: Methodology and checklists (React, TS, Python, etc.) - vercel-react-best-practices: 57 rules for React/Next.js performance - tailwind-design-system: Tailwind CSS v4 patterns, CVA, design tokens New shell scripts added to ~/.claude/scripts/git/: - pr-diff.sh: Get PR diff (GitHub gh / Gitea API) - pr-metadata.sh: Get PR metadata as normalized JSON Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
84 lines
1.5 KiB
Markdown
84 lines
1.5 KiB
Markdown
---
|
|
title: Parallel Data Fetching with Component Composition
|
|
impact: CRITICAL
|
|
impactDescription: eliminates server-side waterfalls
|
|
tags: server, rsc, parallel-fetching, composition
|
|
---
|
|
|
|
## Parallel Data Fetching with Component Composition
|
|
|
|
React Server Components execute sequentially within a tree. Restructure with composition to parallelize data fetching.
|
|
|
|
**Incorrect (Sidebar waits for Page's fetch to complete):**
|
|
|
|
```tsx
|
|
export default async function Page() {
|
|
const header = await fetchHeader()
|
|
return (
|
|
<div>
|
|
<div>{header}</div>
|
|
<Sidebar />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
async function Sidebar() {
|
|
const items = await fetchSidebarItems()
|
|
return <nav>{items.map(renderItem)}</nav>
|
|
}
|
|
```
|
|
|
|
**Correct (both fetch simultaneously):**
|
|
|
|
```tsx
|
|
async function Header() {
|
|
const data = await fetchHeader()
|
|
return <div>{data}</div>
|
|
}
|
|
|
|
async function Sidebar() {
|
|
const items = await fetchSidebarItems()
|
|
return <nav>{items.map(renderItem)}</nav>
|
|
}
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div>
|
|
<Header />
|
|
<Sidebar />
|
|
</div>
|
|
)
|
|
}
|
|
```
|
|
|
|
**Alternative with children prop:**
|
|
|
|
```tsx
|
|
async function Header() {
|
|
const data = await fetchHeader()
|
|
return <div>{data}</div>
|
|
}
|
|
|
|
async function Sidebar() {
|
|
const items = await fetchSidebarItems()
|
|
return <nav>{items.map(renderItem)}</nav>
|
|
}
|
|
|
|
function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<div>
|
|
<Header />
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default function Page() {
|
|
return (
|
|
<Layout>
|
|
<Sidebar />
|
|
</Layout>
|
|
)
|
|
}
|
|
```
|