mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-09 12:45:25 +03:00
251 lines
7.5 KiB
TypeScript
251 lines
7.5 KiB
TypeScript
import PreviewThumbnailPlayer from "@/components/player/PreviewThumbnailPlayer";
|
|
import ActivityIndicator from "@/components/ui/activity-indicator";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Calendar } from "@/components/ui/calendar";
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/components/ui/popover";
|
|
import { ToggleGroup, ToggleGroupItem } from "@/components/ui/toggle-group";
|
|
import { FrigateConfig } from "@/types/frigateConfig";
|
|
import { ReviewSegment, ReviewSeverity } from "@/types/review";
|
|
import { formatUnixTimestampToDateTime } from "@/utils/dateUtil";
|
|
import axios from "axios";
|
|
import { useCallback, useMemo, useRef, useState } from "react";
|
|
import { LuCalendar, LuFilter, LuVideo } from "react-icons/lu";
|
|
import { MdCircle } from "react-icons/md";
|
|
import useSWR from "swr";
|
|
import useSWRInfinite from "swr/infinite";
|
|
|
|
const API_LIMIT = 20;
|
|
|
|
export default function Events() {
|
|
const { data: config } = useSWR<FrigateConfig>("config");
|
|
const [severity, setSeverity] = useState<ReviewSeverity>("alert");
|
|
|
|
// review paging
|
|
|
|
const reviewSearchParams = {};
|
|
const reviewSegmentFetcher = useCallback((key: any) => {
|
|
const [path, params] = Array.isArray(key) ? key : [key, undefined];
|
|
return axios.get(path, { params }).then((res) => res.data);
|
|
}, []);
|
|
|
|
const getKey = useCallback(
|
|
(index: number, prevData: ReviewSegment[]) => {
|
|
if (index > 0) {
|
|
const lastDate = prevData[prevData.length - 1].start_time;
|
|
const pagedParams = reviewSearchParams
|
|
? { before: lastDate, limit: API_LIMIT, severity: severity }
|
|
: {
|
|
...reviewSearchParams,
|
|
before: lastDate,
|
|
limit: API_LIMIT,
|
|
};
|
|
return ["review", pagedParams];
|
|
}
|
|
|
|
const params = reviewSearchParams
|
|
? { limit: API_LIMIT, severity: severity }
|
|
: { ...reviewSearchParams, limit: API_LIMIT };
|
|
return ["review", params];
|
|
},
|
|
[reviewSearchParams]
|
|
);
|
|
|
|
const {
|
|
data: reviewPages,
|
|
mutate: updateSegments,
|
|
size,
|
|
setSize,
|
|
isValidating,
|
|
} = useSWRInfinite<ReviewSegment[]>(getKey, reviewSegmentFetcher);
|
|
|
|
const isDone = useMemo(
|
|
() => (reviewPages?.at(-1)?.length ?? 0) < API_LIMIT,
|
|
[reviewPages]
|
|
);
|
|
|
|
const observer = useRef<IntersectionObserver | null>();
|
|
const lastReviewRef = useCallback(
|
|
(node: HTMLElement | null) => {
|
|
if (isValidating) return;
|
|
if (observer.current) observer.current.disconnect();
|
|
try {
|
|
observer.current = new IntersectionObserver((entries) => {
|
|
if (entries[0].isIntersecting && !isDone) {
|
|
setSize(size + 1);
|
|
}
|
|
});
|
|
if (node) observer.current.observe(node);
|
|
} catch (e) {
|
|
// no op
|
|
}
|
|
},
|
|
[isValidating, isDone]
|
|
);
|
|
|
|
// review status
|
|
|
|
const setReviewed = useCallback(
|
|
async (id: string) => {
|
|
const resp = await axios.post(`review/${id}/viewed`);
|
|
|
|
if (resp.status == 200) {
|
|
updateSegments();
|
|
}
|
|
},
|
|
[updateSegments]
|
|
);
|
|
|
|
// preview videos
|
|
|
|
const previewTimes = useMemo(() => {
|
|
if (
|
|
!reviewPages ||
|
|
reviewPages.length == 0 ||
|
|
reviewPages.at(-1)!!.length == 0
|
|
) {
|
|
return undefined;
|
|
}
|
|
|
|
const startDate = new Date();
|
|
startDate.setMinutes(0, 0, 0);
|
|
|
|
const endDate = new Date(reviewPages.at(-1)!!.at(-1)!!.end_time);
|
|
endDate.setHours(0, 0, 0, 0);
|
|
return {
|
|
start: startDate.getTime() / 1000,
|
|
end: endDate.getTime() / 1000,
|
|
};
|
|
}, [reviewPages]);
|
|
const { data: allPreviews } = useSWR<Preview[]>(
|
|
previewTimes
|
|
? `preview/all/start/${previewTimes.start}/end/${previewTimes.end}`
|
|
: null,
|
|
{ revalidateOnFocus: false }
|
|
);
|
|
|
|
if (!config) {
|
|
return <ActivityIndicator />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className="w-full flex justify-between">
|
|
<ToggleGroup
|
|
type="single"
|
|
defaultValue="alert"
|
|
size="sm"
|
|
onValueChange={(value: ReviewSeverity) => setSeverity(value)}
|
|
>
|
|
<ToggleGroupItem
|
|
className={`px-3 py-4 rounded-2xl ${
|
|
severity == "alert" ? "" : "text-gray-500"
|
|
}`}
|
|
value="alert"
|
|
aria-label="Select alerts"
|
|
>
|
|
<MdCircle className="w-2 h-2 mr-[10px] text-danger" />
|
|
Alerts
|
|
</ToggleGroupItem>
|
|
<ToggleGroupItem
|
|
className={`px-3 py-4 rounded-2xl ${
|
|
severity == "detection" ? "" : "text-gray-500"
|
|
}`}
|
|
value="detection"
|
|
aria-label="Select detections"
|
|
>
|
|
<MdCircle className="w-2 h-2 mr-[10px] text-orange-400" />
|
|
Detections
|
|
</ToggleGroupItem>
|
|
<ToggleGroupItem
|
|
className={`px-3 py-4 rounded-2xl ${
|
|
severity == "significant_motion" ? "" : "text-gray-500"
|
|
}`}
|
|
value="significant_motion"
|
|
aria-label="Select motion"
|
|
>
|
|
<MdCircle className="w-2 h-2 mr-[10px] text-yellow-400" />
|
|
Motion
|
|
</ToggleGroupItem>
|
|
</ToggleGroup>
|
|
<div>
|
|
<Button className="mx-1" variant="secondary">
|
|
<LuVideo className=" mr-[10px]" />
|
|
All Cameras
|
|
</Button>
|
|
<ReviewCalendarButton />
|
|
<Button className="mx-1" variant="secondary">
|
|
<LuFilter className=" mr-[10px]" />
|
|
Filter
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex flex-wrap gap-2 mt-2">
|
|
{reviewPages?.map((reviewSegments, pageIdx) => {
|
|
return reviewSegments.map((value, segIdx) => {
|
|
const lastRow =
|
|
pageIdx == size - 1 && segIdx == reviewSegments.length - 1;
|
|
const detectConfig = config.cameras[value.camera].detect;
|
|
const relevantPreview = Object.values(allPreviews || []).find(
|
|
(preview) =>
|
|
preview.camera == value.camera &&
|
|
preview.start < value.start_time &&
|
|
preview.end > value.end_time
|
|
);
|
|
|
|
return (
|
|
<div key={value.id}>
|
|
<div
|
|
ref={lastRow ? lastReviewRef : null}
|
|
className="relative h-[234px] rounded-lg overflow-hidden"
|
|
style={{
|
|
aspectRatio: detectConfig.width / detectConfig.height,
|
|
}}
|
|
>
|
|
<PreviewThumbnailPlayer
|
|
review={value}
|
|
relevantPreview={relevantPreview}
|
|
isMobile={false}
|
|
setReviewed={() => setReviewed(value.id)}
|
|
/>
|
|
</div>
|
|
{lastRow && !isDone && <ActivityIndicator />}
|
|
</div>
|
|
);
|
|
});
|
|
})}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function ReviewCalendarButton() {
|
|
const disabledDates = useMemo(() => {
|
|
const tomorrow = new Date();
|
|
tomorrow.setHours(tomorrow.getHours() + 24, -1, 0, 0);
|
|
const future = new Date();
|
|
future.setFullYear(tomorrow.getFullYear() + 10);
|
|
return { from: tomorrow, to: future };
|
|
}, []);
|
|
|
|
return (
|
|
<Popover>
|
|
<PopoverTrigger asChild>
|
|
<Button className="mx-1" variant="secondary">
|
|
<LuCalendar className=" mr-[10px]" />
|
|
{formatUnixTimestampToDateTime(Date.now() / 1000, {
|
|
strftime_fmt: "%b %-d",
|
|
})}
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent>
|
|
<Calendar mode="single" disabled={disabledDates} />
|
|
</PopoverContent>
|
|
</Popover>
|
|
);
|
|
}
|