mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-12-23 19:11:14 +01:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
|
import { useState, useEffect, useCallback, useRef } from "react";
|
||
|
|
||
|
type OptimisticStateResult<T> = [T, (newValue: T) => void];
|
||
|
|
||
|
const useOptimisticState = <T>(
|
||
|
initialState: T,
|
||
|
setState: (newValue: T) => void,
|
||
|
delay: number = 20,
|
||
|
): OptimisticStateResult<T> => {
|
||
|
const [optimisticValue, setOptimisticValue] = useState<T>(initialState);
|
||
|
const debounceTimeout = useRef<ReturnType<typeof setTimeout> | null>(null);
|
||
|
|
||
|
const handleValueChange = useCallback(
|
||
|
(newValue: T) => {
|
||
|
// Update the optimistic value immediately
|
||
|
setOptimisticValue(newValue);
|
||
|
|
||
|
// Clear any pending debounce timeout
|
||
|
if (debounceTimeout.current) {
|
||
|
clearTimeout(debounceTimeout.current);
|
||
|
}
|
||
|
|
||
|
// Set a new debounce timeout
|
||
|
debounceTimeout.current = setTimeout(() => {
|
||
|
// Update the actual value using the provided setter function
|
||
|
setState(newValue);
|
||
|
}, delay);
|
||
|
},
|
||
|
[delay, setState],
|
||
|
);
|
||
|
|
||
|
useEffect(() => {
|
||
|
return () => {
|
||
|
if (debounceTimeout.current) {
|
||
|
clearTimeout(debounceTimeout.current);
|
||
|
}
|
||
|
};
|
||
|
}, []);
|
||
|
|
||
|
return [optimisticValue, handleValueChange];
|
||
|
};
|
||
|
|
||
|
export default useOptimisticState;
|