mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01: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,
|
reviewSegmentFetcher,
|
||||||
{
|
{
|
||||||
revalidateOnFocus: false,
|
revalidateOnFocus: false,
|
||||||
|
revalidateOnReconnect: false,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -92,7 +93,7 @@ export default function Events() {
|
|||||||
cameras: reviewSearchParams["cameras"] ?? null,
|
cameras: reviewSearchParams["cameras"] ?? null,
|
||||||
labels: reviewSearchParams["labels"] ?? null,
|
labels: reviewSearchParams["labels"] ?? null,
|
||||||
},
|
},
|
||||||
{ revalidateOnFocus: false },
|
{ revalidateOnFocus: false, revalidateOnReconnect: false },
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const reloadData = useCallback(() => {
|
const reloadData = useCallback(() => {
|
||||||
@ -128,22 +129,31 @@ export default function Events() {
|
|||||||
previewTimes
|
previewTimes
|
||||||
? `preview/all/start/${previewTimes.start}/end/${previewTimes.end}`
|
? `preview/all/start/${previewTimes.start}/end/${previewTimes.end}`
|
||||||
: null,
|
: null,
|
||||||
{ revalidateOnFocus: false },
|
{ revalidateOnFocus: false, revalidateOnReconnect: false },
|
||||||
);
|
);
|
||||||
|
|
||||||
// Set a timeout to update previews on the hour
|
// Set a timeout to update previews on the hour
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const future = new Date();
|
if (!allPreviews || allPreviews.length == 0) {
|
||||||
future.setHours(future.getHours() + 1, 0, 30, 0);
|
return;
|
||||||
const timeoutId = setTimeout(
|
}
|
||||||
() => setPreviewKey(10 * Math.random()),
|
|
||||||
future.getTime() - Date.now(),
|
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 () => {
|
return () => {
|
||||||
clearTimeout(timeoutId);
|
document.removeEventListener("focusin", callback);
|
||||||
};
|
};
|
||||||
}, []);
|
}, [allPreviews]);
|
||||||
|
|
||||||
// review status
|
// review status
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user