mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Fix optimistic state (#11556)
This commit is contained in:
parent
7a9ee63bd3
commit
be147d218b
@ -3,11 +3,11 @@ import { useState, useEffect, useCallback, useRef } from "react";
|
||||
type OptimisticStateResult<T> = [T, (newValue: T) => void];
|
||||
|
||||
const useOptimisticState = <T>(
|
||||
initialState: T,
|
||||
currentState: T,
|
||||
setState: (newValue: T) => void,
|
||||
delay: number = 20,
|
||||
): OptimisticStateResult<T> => {
|
||||
const [optimisticValue, setOptimisticValue] = useState<T>(initialState);
|
||||
const [optimisticValue, setOptimisticValue] = useState<T>(currentState);
|
||||
const debounceTimeout = useRef<ReturnType<typeof setTimeout> | null>(null);
|
||||
|
||||
const handleValueChange = useCallback(
|
||||
@ -37,6 +37,16 @@ const useOptimisticState = <T>(
|
||||
};
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
if (currentState != optimisticValue) {
|
||||
setOptimisticValue(currentState);
|
||||
}
|
||||
// sometimes an external action will cause the currentState to change
|
||||
// without handleValueChange being called. In this case
|
||||
// we need to update the optimistic value so the UI reflects the change
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [currentState]);
|
||||
|
||||
return [optimisticValue, handleValueChange];
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user