- Created `openspec-ff-change` skill for fast-forward artifact creation. - Introduced `openspec-new-change` skill for structured change creation. - Developed `openspec-onboard` skill for guided onboarding through OpenSpec workflow. - Added `openspec-sync-specs` skill for syncing delta specs to main specs. - Implemented `openspec-verify-change` skill for verifying implementation against change artifacts. - Updated `.gitignore` to exclude OpenSpec generated files. - Added `skills-lock.json` to manage skill dependencies.
40 lines
973 B
Markdown
40 lines
973 B
Markdown
---
|
|
title: Defer State Reads to Usage Point
|
|
impact: MEDIUM
|
|
impactDescription: avoids unnecessary subscriptions
|
|
tags: rerender, searchParams, localStorage, optimization
|
|
---
|
|
|
|
## Defer State Reads to Usage Point
|
|
|
|
Don't subscribe to dynamic state (searchParams, localStorage) if you only read it inside callbacks.
|
|
|
|
**Incorrect (subscribes to all searchParams changes):**
|
|
|
|
```tsx
|
|
function ShareButton({ chatId }: { chatId: string }) {
|
|
const searchParams = useSearchParams()
|
|
|
|
const handleShare = () => {
|
|
const ref = searchParams.get('ref')
|
|
shareChat(chatId, { ref })
|
|
}
|
|
|
|
return <button onClick={handleShare}>Share</button>
|
|
}
|
|
```
|
|
|
|
**Correct (reads on demand, no subscription):**
|
|
|
|
```tsx
|
|
function ShareButton({ chatId }: { chatId: string }) {
|
|
const handleShare = () => {
|
|
const params = new URLSearchParams(window.location.search)
|
|
const ref = params.get('ref')
|
|
shareChat(chatId, { ref })
|
|
}
|
|
|
|
return <button onClick={handleShare}>Share</button>
|
|
}
|
|
```
|