frigate/web/src/components/settings/ZoneEditPane.tsx

402 lines
12 KiB
TypeScript
Raw Normal View History

2024-04-12 06:53:50 +03:00
import Heading from "../ui/heading";
import { Separator } from "../ui/separator";
import { Button } from "@/components/ui/button";
import {
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import { Input } from "@/components/ui/input";
import { Popover, PopoverContent, PopoverTrigger } from "../ui/popover";
import { Drawer, DrawerContent, DrawerTrigger } from "../ui/drawer";
import { useEffect, useMemo, useState } from "react";
import { GeneralFilterContent } from "../filter/ReviewFilterGroup";
import { FaObjectGroup } from "react-icons/fa";
2024-04-13 07:38:42 +03:00
import { ATTRIBUTES, CameraConfig, FrigateConfig } from "@/types/frigateConfig";
2024-04-12 06:53:50 +03:00
import useSWR from "swr";
import { isMobile } from "react-device-detect";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { Polygon } from "@/types/canvas";
import { Switch } from "../ui/switch";
import { Label } from "../ui/label";
type ZoneObjectSelectorProps = {
camera: string;
zoneName: string;
updateLabelFilter: (labels: string[] | undefined) => void;
};
export function ZoneObjectSelector({
camera,
zoneName,
updateLabelFilter,
}: ZoneObjectSelectorProps) {
const { data: config } = useSWR<FrigateConfig>("config");
const cameraConfig = useMemo(() => {
if (config && camera) {
return config.cameras[camera];
}
}, [config, camera]);
const allLabels = useMemo<string[]>(() => {
if (!config) {
return [];
}
const labels = new Set<string>();
Object.values(config.cameras).forEach((camera) => {
camera.objects.track.forEach((label) => {
if (!ATTRIBUTES.includes(label)) {
labels.add(label);
}
});
});
return [...labels].sort();
}, [config]);
const zoneLabels = useMemo<string[]>(() => {
if (!cameraConfig || !zoneName) {
return [];
}
const labels = new Set<string>();
cameraConfig.objects.track.forEach((label) => {
if (!ATTRIBUTES.includes(label)) {
labels.add(label);
}
});
if (cameraConfig.zones[zoneName]) {
cameraConfig.zones[zoneName].objects.forEach((label) => {
if (!ATTRIBUTES.includes(label)) {
labels.add(label);
}
});
}
return [...labels].sort() || [];
}, [cameraConfig, zoneName]);
const [currentLabels, setCurrentLabels] = useState<string[] | undefined>(
2024-04-13 07:38:42 +03:00
zoneLabels.every((label, index) => label === allLabels[index])
? undefined
: zoneLabels,
2024-04-12 06:53:50 +03:00
);
useEffect(() => {
updateLabelFilter(currentLabels);
}, [currentLabels, updateLabelFilter]);
return (
<>
<div className="h-auto overflow-y-auto overflow-x-hidden">
<div className="flex justify-between items-center my-2.5">
<Label
className="mx-2 text-primary cursor-pointer"
htmlFor="allLabels"
>
2024-04-13 07:38:42 +03:00
All Objects
2024-04-12 06:53:50 +03:00
</Label>
<Switch
className="ml-1"
id="allLabels"
checked={currentLabels == undefined}
onCheckedChange={(isChecked) => {
if (isChecked) {
setCurrentLabels(undefined);
}
}}
/>
</div>
<Separator />
<div className="my-2.5 flex flex-col gap-2.5">
{allLabels.map((item) => (
<div key={item} className="flex justify-between items-center">
<Label
className="w-full mx-2 text-primary capitalize cursor-pointer"
htmlFor={item}
>
{item.replaceAll("_", " ")}
</Label>
<Switch
key={item}
className="ml-1"
id={item}
checked={currentLabels?.includes(item) ?? false}
onCheckedChange={(isChecked) => {
if (isChecked) {
const updatedLabels = currentLabels
? [...currentLabels]
: [];
updatedLabels.push(item);
setCurrentLabels(updatedLabels);
} else {
const updatedLabels = currentLabels
? [...currentLabels]
: [];
// can not deselect the last item
if (updatedLabels.length > 1) {
updatedLabels.splice(updatedLabels.indexOf(item), 1);
setCurrentLabels(updatedLabels);
}
}
}}
/>
</div>
))}
</div>
</div>
</>
);
}
type ZoneEditPaneProps = {
polygons: Polygon[];
activePolygonIndex?: number;
2024-04-13 07:38:42 +03:00
onSave?: () => void;
onCancel?: () => void;
2024-04-12 06:53:50 +03:00
};
export function ZoneEditPane({
polygons,
activePolygonIndex,
2024-04-13 07:38:42 +03:00
onSave,
2024-04-12 06:53:50 +03:00
onCancel,
}: ZoneEditPaneProps) {
2024-04-13 07:38:42 +03:00
const { data: config } = useSWR<FrigateConfig>("config");
const cameras = useMemo(() => {
if (!config) {
return [];
}
return Object.values(config.cameras)
.filter((conf) => conf.ui.dashboard && conf.enabled)
.sort((aConf, bConf) => aConf.ui.order - bConf.ui.order);
}, [config]);
const formSchema = z.object({
name: z
.string()
.min(2, {
message: "Zone name must be at least 2 characters.",
})
.transform((val: string) => val.trim().replace(/\s+/g, "_"))
.refine(
(value: string) => {
return !cameras.map((cam) => cam.name).includes(value);
},
{
message: "Zone name must not be the name of a camera.",
},
)
.refine(
(value: string) => {
return !polygons
.filter((polygon, index) => index !== activePolygonIndex)
.map((polygon) => polygon.name)
.includes(value);
},
{
message: "Zone name already exists on this camera.",
},
),
inertia: z.coerce.number().min(1, {
message: "Inertia must be above 0.",
}),
loitering_time: z.coerce.number().min(0, {
message: "Loitering time must be greater than or equal to 0.",
}),
});
2024-04-12 06:53:50 +03:00
const polygon = useMemo(() => {
if (polygons && activePolygonIndex !== undefined) {
return polygons[activePolygonIndex];
} else {
return null;
}
}, [polygons, activePolygonIndex]);
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
2024-04-13 07:38:42 +03:00
mode: "onChange",
2024-04-12 06:53:50 +03:00
defaultValues: {
2024-04-13 07:38:42 +03:00
name: polygon?.name ?? "",
inertia:
((polygon &&
polygon.camera &&
polygon.name &&
config?.cameras[polygon.camera]?.zones[polygon.name]
?.inertia) as number) ?? 3,
loitering_time:
((polygon &&
polygon.camera &&
polygon.name &&
config?.cameras[polygon.camera]?.zones[polygon.name]
?.loitering_time) as number) ?? 0,
2024-04-12 06:53:50 +03:00
},
});
function onSubmit(values: z.infer<typeof formSchema>) {
2024-04-13 07:38:42 +03:00
console.log(values, polygons[activePolygonIndex]);
onSave();
2024-04-12 06:53:50 +03:00
}
if (!polygon) {
return;
}
return (
<>
2024-04-13 07:38:42 +03:00
<Heading as="h3">Zone</Heading>
2024-04-12 06:53:50 +03:00
<div className="flex my-3">
<Separator className="bg-secondary" />
</div>
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
<FormField
control={form.control}
name="name"
render={({ field }) => (
<FormItem>
<FormLabel>Name</FormLabel>
<FormControl>
2024-04-13 07:38:42 +03:00
<Input placeholder={polygon.name} {...field} />
2024-04-12 06:53:50 +03:00
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<div className="flex my-3">
<Separator className="bg-secondary" />
</div>
<FormField
control={form.control}
name="inertia"
render={({ field }) => (
<FormItem>
<FormLabel>Inertia</FormLabel>
<FormControl>
<Input placeholder="" {...field} />
</FormControl>
<FormDescription>
Specifies how many frames that an object must be in a zone
before they are considered in the zone.
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<div className="flex my-3">
<Separator className="bg-secondary" />
</div>
<FormField
control={form.control}
name="loitering_time"
render={({ field }) => (
<FormItem>
<FormLabel>Loitering Time</FormLabel>
<FormControl>
<Input placeholder="" {...field} />
</FormControl>
<FormDescription>
Sets a minimum amount of time in seconds that the object must
be in the zone for it to activate.
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<div className="flex my-3">
<Separator className="bg-secondary" />
</div>
<FormItem>
<FormLabel>Objects</FormLabel>
<FormDescription>
List of objects that apply to this zone.
</FormDescription>
<ZoneObjectSelector
camera={polygon.camera}
zoneName={polygon.name}
updateLabelFilter={(objects) => {
// console.log(objects);
}}
/>
</FormItem>
2024-04-13 07:38:42 +03:00
<div className="flex my-3">
<Separator className="bg-secondary" />
</div>
<FormItem>
<FormLabel>Alerts and Detections</FormLabel>
<FormDescription>
When an object enters this zone, ensure it is marked as an alert
or detection.
</FormDescription>
<FormControl>
<div className="flex flex-col gap-2.5">
<div className="flex flex-row justify-between items-center">
<Label
className="mx-2 text-primary cursor-pointer"
htmlFor="mark_alert"
>
Required for Alert
</Label>
<Switch
className="ml-1"
id="mark_alert"
checked={false}
onCheckedChange={(isChecked) => {
if (isChecked) {
return;
}
}}
/>
</div>
<div className="flex flex-row justify-between items-center">
<Label
className="mx-2 text-primary cursor-pointer"
htmlFor="mark_detection"
>
Required for Detection
</Label>
<Switch
className="ml-1"
id="mark_detection"
checked={false}
onCheckedChange={(isChecked) => {
if (isChecked) {
return;
}
}}
/>
</div>
</div>
</FormControl>
</FormItem>
<div className="flex flex-row gap-2 pt-5">
2024-04-12 06:53:50 +03:00
<Button className="flex flex-1" onClick={onCancel}>
Cancel
</Button>
<Button variant="select" className="flex flex-1" type="submit">
Save
</Button>
</div>
</form>
</Form>
</>
);
}