frigate/web/src/pages/Events.tsx

124 lines
4.0 KiB
TypeScript
Raw Normal View History

2024-02-18 01:43:48 +03:00
import TimeAgo from "@/components/dynamic/TimeAgo";
import ActivityIndicator from "@/components/ui/activity-indicator";
2024-02-18 01:15:15 +03:00
import { Button } from "@/components/ui/button";
import { ToggleGroup, ToggleGroupItem } from "@/components/ui/toggle-group";
2024-02-18 01:43:48 +03:00
import { FrigateConfig } from "@/types/frigateConfig";
import { ReviewSegment, ReviewSeverity } from "@/types/review";
import { formatUnixTimestampToDateTime } from "@/utils/dateUtil";
import { useMemo, useState } from "react";
2024-02-18 01:15:15 +03:00
import { LuCalendar, LuFilter, LuVideo } from "react-icons/lu";
import { MdCircle } from "react-icons/md";
2024-02-18 01:43:48 +03:00
import useSWR from "swr";
2024-02-18 01:15:15 +03:00
export default function Events() {
2024-02-18 01:43:48 +03:00
const { data: config } = useSWR<FrigateConfig>("config");
2024-02-18 01:15:15 +03:00
const [severity, setSeverity] = useState<ReviewSeverity>("alert");
2024-02-18 01:43:48 +03:00
const { data: reviewSegments } = useSWR<ReviewSegment[]>("review");
const previewTimes = useMemo(() => {
if (!reviewSegments) {
return undefined;
}
const startDate = new Date();
startDate.setMinutes(0, 0, 0);
const endDate = new Date(reviewSegments.at(-1)!!.end_time);
endDate.setHours(0, 0, 0, 0);
return {
start: startDate.getTime() / 1000,
end: endDate.getTime() / 1000,
};
}, [reviewSegments]);
const { data: allPreviews } = useSWR<Preview[]>(
previewTimes
? `preview/all/start/${previewTimes.start}/end/${previewTimes.end}`
: null,
{ revalidateOnFocus: false }
);
if (!config) {
return <ActivityIndicator />;
}
2024-02-18 01:15:15 +03:00
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>
<Button className="mx-1" variant="secondary">
<LuCalendar className=" mr-[10px]" />
Fab 13
</Button>
<Button className="mx-1" variant="secondary">
<LuFilter className=" mr-[10px]" />
Filter
</Button>
</div>
</div>
2024-02-18 01:43:48 +03:00
<div className="flex flex-wrap gap-2 mt-2">
{reviewSegments?.map((value) => {
if (value.severity == severity) {
return (
<div className="relative h-[234px] w-[416px] bg-blue-500 rounded-lg">
{value.camera} {value.data.objects}
<div className="absolute left-1 right-1 bottom-0 flex justify-between">
<TimeAgo time={value.start_time * 1000} />
{formatUnixTimestampToDateTime(value.start_time, {
strftime_fmt:
config.ui.time_format == "24hour"
? "%b %-d, %H:%M"
: "%b %-d, %I:%M %p",
})}
</div>
</div>
);
}
})}
</div>
2024-02-18 01:15:15 +03:00
</>
);
}