-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: useSize error ResizeObserver loop limit exceeded
- Loading branch information
1 parent
abfce57
commit b8e7542
Showing
2 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import type { Dispatch, SetStateAction } from 'react'; | ||
import { useCallback, useRef, useState } from 'react'; | ||
import useUnmount from '../useUnmount'; | ||
|
||
const useRafState = <S>(initialState: S | (() => S)): [S, Dispatch<SetStateAction<S>>] => { | ||
const frame = useRef(0); | ||
const [state, setState] = useState(initialState); | ||
|
||
const setRafState = useCallback((value: S | ((prevState: S) => S)) => { | ||
cancelAnimationFrame(frame.current); | ||
|
||
frame.current = requestAnimationFrame(() => { | ||
setState(value); | ||
}); | ||
}, []); | ||
|
||
useUnmount(() => { | ||
cancelAnimationFrame(frame.current); | ||
}); | ||
|
||
return [state, setRafState]; | ||
}; | ||
|
||
export default useRafState; |