mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-02-13 16:35:44 +01:00
- Fix syntax errors in skills markdown files (.github/skills, .opencode/skills) - Change typescript to tsx for code blocks with JSX - Replace ellipsis (...) in array examples with valid syntax - Separate CSS from TypeScript into distinct code blocks - Convert JavaScript object examples to valid JSON in docs - Fix enum definitions with proper comma separation
50 lines
1.2 KiB
Markdown
50 lines
1.2 KiB
Markdown
---
|
|
title: useLatest for Stable Callback Refs
|
|
impact: LOW
|
|
impactDescription: prevents effect re-runs
|
|
tags: advanced, hooks, useLatest, refs, optimization
|
|
---
|
|
|
|
## useLatest for Stable Callback Refs
|
|
|
|
Access latest values in callbacks without adding them to dependency arrays. Prevents effect re-runs while avoiding stale closures.
|
|
|
|
**Implementation:**
|
|
|
|
```typescript
|
|
function useLatest<T>(value: T) {
|
|
const ref = useRef(value);
|
|
useLayoutEffect(() => {
|
|
ref.current = value;
|
|
}, [value]);
|
|
return ref;
|
|
}
|
|
```
|
|
|
|
**Incorrect (effect re-runs on every callback change):**
|
|
|
|
```tsx
|
|
function SearchInput({ onSearch }: { onSearch: (q: string) => void }) {
|
|
const [query, setQuery] = useState("");
|
|
|
|
useEffect(() => {
|
|
const timeout = setTimeout(() => onSearch(query), 300);
|
|
return () => clearTimeout(timeout);
|
|
}, [query, onSearch]);
|
|
}
|
|
```
|
|
|
|
**Correct (stable effect, fresh callback):**
|
|
|
|
```tsx
|
|
function SearchInput({ onSearch }: { onSearch: (q: string) => void }) {
|
|
const [query, setQuery] = useState("");
|
|
const onSearchRef = useLatest(onSearch);
|
|
|
|
useEffect(() => {
|
|
const timeout = setTimeout(() => onSearchRef.current(query), 300);
|
|
return () => clearTimeout(timeout);
|
|
}, [query]);
|
|
}
|
|
```
|