mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
25 lines
634 B
TypeScript
25 lines
634 B
TypeScript
import { useRef, useState, useCallback, Dispatch, SetStateAction } 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;
|