mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-22 08:57:20 -06:00
Always check previews when refocusing the page (#10546)
This commit is contained in:
parent
741f0a5115
commit
f474bc4037
@ -80,6 +80,7 @@ export default function Events() {
|
||||
reviewSegmentFetcher,
|
||||
{
|
||||
revalidateOnFocus: false,
|
||||
revalidateOnReconnect: false,
|
||||
},
|
||||
);
|
||||
|
||||
@ -92,7 +93,7 @@ export default function Events() {
|
||||
cameras: reviewSearchParams["cameras"] ?? null,
|
||||
labels: reviewSearchParams["labels"] ?? null,
|
||||
},
|
||||
{ revalidateOnFocus: false },
|
||||
{ revalidateOnFocus: false, revalidateOnReconnect: false },
|
||||
]);
|
||||
|
||||
const reloadData = useCallback(() => {
|
||||
@ -128,22 +129,31 @@ export default function Events() {
|
||||
previewTimes
|
||||
? `preview/all/start/${previewTimes.start}/end/${previewTimes.end}`
|
||||
: null,
|
||||
{ revalidateOnFocus: false },
|
||||
{ revalidateOnFocus: false, revalidateOnReconnect: false },
|
||||
);
|
||||
|
||||
// Set a timeout to update previews on the hour
|
||||
useEffect(() => {
|
||||
const future = new Date();
|
||||
future.setHours(future.getHours() + 1, 0, 30, 0);
|
||||
const timeoutId = setTimeout(
|
||||
() => setPreviewKey(10 * Math.random()),
|
||||
future.getTime() - Date.now(),
|
||||
);
|
||||
if (!allPreviews || allPreviews.length == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
const callback = () => {
|
||||
const nextPreviewStart = new Date(
|
||||
allPreviews[allPreviews.length - 1].end * 1000,
|
||||
);
|
||||
nextPreviewStart.setHours(nextPreviewStart.getHours() + 1);
|
||||
|
||||
if (Date.now() > nextPreviewStart.getTime()) {
|
||||
setPreviewKey(10 * Math.random());
|
||||
}
|
||||
};
|
||||
document.addEventListener("focusin", callback);
|
||||
|
||||
return () => {
|
||||
clearTimeout(timeoutId);
|
||||
document.removeEventListener("focusin", callback);
|
||||
};
|
||||
}, []);
|
||||
}, [allPreviews]);
|
||||
|
||||
// review status
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user