Add detailed landing page development plan in docs/frontend_landing_plan.md: - Complete landing page structure (Hero, Problem/Solution, Features, Demo, CTA) - Design guidelines from downloaded skills (typography, color, motion, composition) - Security considerations (XSS prevention, input sanitization, CSP) - Performance targets (LCP <2.5s, bundle <150KB, Lighthouse >90) - Responsiveness and accessibility requirements (WCAG 2.1 AA) - Success KPIs and monitoring setup - 3-week development timeline with daily tasks - Definition of Done checklist Download 10+ frontend/UI/UX skills via universal-skills-manager: - frontend-ui-ux: UI/UX design without mockups - frontend-design-guidelines: Production-grade interface guidelines - frontend-developer: React best practices (40+ rules) - frontend-engineer: Next.js 14 App Router patterns - ui-ux-master: Comprehensive design systems and accessibility - ui-ux-systems-designer: Information architecture and interaction - ui-ux-design-user-experience: Platform-specific guidelines - Plus additional reference materials and validation scripts Configure universal-skills MCP with SkillsMP API key for curated skill access. Safety first: All skills validated before installation, no project code modified. Refs: Universal Skills Manager (github:jacob-bd/universal-skills-manager) Next: Begin Sprint 3 landing page development
100 lines
2.5 KiB
Markdown
100 lines
2.5 KiB
Markdown
---
|
|
title: Strategic Suspense Boundaries
|
|
impact: HIGH
|
|
impactDescription: faster initial paint
|
|
tags: async, suspense, streaming, layout-shift
|
|
---
|
|
|
|
## Strategic Suspense Boundaries
|
|
|
|
Instead of awaiting data in async components before returning JSX, use Suspense boundaries to show the wrapper UI faster while data loads.
|
|
|
|
**Incorrect (wrapper blocked by data fetching):**
|
|
|
|
```tsx
|
|
async function Page() {
|
|
const data = await fetchData() // Blocks entire page
|
|
|
|
return (
|
|
<div>
|
|
<div>Sidebar</div>
|
|
<div>Header</div>
|
|
<div>
|
|
<DataDisplay data={data} />
|
|
</div>
|
|
<div>Footer</div>
|
|
</div>
|
|
)
|
|
}
|
|
```
|
|
|
|
The entire layout waits for data even though only the middle section needs it.
|
|
|
|
**Correct (wrapper shows immediately, data streams in):**
|
|
|
|
```tsx
|
|
function Page() {
|
|
return (
|
|
<div>
|
|
<div>Sidebar</div>
|
|
<div>Header</div>
|
|
<div>
|
|
<Suspense fallback={<Skeleton />}>
|
|
<DataDisplay />
|
|
</Suspense>
|
|
</div>
|
|
<div>Footer</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
async function DataDisplay() {
|
|
const data = await fetchData() // Only blocks this component
|
|
return <div>{data.content}</div>
|
|
}
|
|
```
|
|
|
|
Sidebar, Header, and Footer render immediately. Only DataDisplay waits for data.
|
|
|
|
**Alternative (share promise across components):**
|
|
|
|
```tsx
|
|
function Page() {
|
|
// Start fetch immediately, but don't await
|
|
const dataPromise = fetchData()
|
|
|
|
return (
|
|
<div>
|
|
<div>Sidebar</div>
|
|
<div>Header</div>
|
|
<Suspense fallback={<Skeleton />}>
|
|
<DataDisplay dataPromise={dataPromise} />
|
|
<DataSummary dataPromise={dataPromise} />
|
|
</Suspense>
|
|
<div>Footer</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function DataDisplay({ dataPromise }: { dataPromise: Promise<Data> }) {
|
|
const data = use(dataPromise) // Unwraps the promise
|
|
return <div>{data.content}</div>
|
|
}
|
|
|
|
function DataSummary({ dataPromise }: { dataPromise: Promise<Data> }) {
|
|
const data = use(dataPromise) // Reuses the same promise
|
|
return <div>{data.summary}</div>
|
|
}
|
|
```
|
|
|
|
Both components share the same promise, so only one fetch occurs. Layout renders immediately while both components wait together.
|
|
|
|
**When NOT to use this pattern:**
|
|
|
|
- Critical data needed for layout decisions (affects positioning)
|
|
- SEO-critical content above the fold
|
|
- Small, fast queries where suspense overhead isn't worth it
|
|
- When you want to avoid layout shift (loading → content jump)
|
|
|
|
**Trade-off:** Faster initial paint vs potential layout shift. Choose based on your UX priorities.
|