VMS-frontend/src/shared/components/frigate/DebugCameraImage.tsx
NlightN22 2692e00787 add grid view
add config editor
2024-02-21 01:35:26 +07:00

160 lines
4.5 KiB
TypeScript

import { useCallback, useMemo, useState } from "react";
import AutoUpdatingCameraImage from "./AutoUpdatingCameraImage";
import { CameraConfig } from "../../../types/frigateConfig";
import { usePersistence } from "../../../hooks/use-persistence";
import { Button, Switch, Text } from "@mantine/core";
import { Card, CardContent, CardHeader, CardTitle } from "./card";
import { IconSettings } from "@tabler/icons-react";
type Options = { [key: string]: boolean };
const emptyObject = Object.freeze({});
type DebugCameraImageProps = {
className?: string;
cameraConfig: CameraConfig
url: string
};
export default function DebugCameraImage({
className,
cameraConfig,
url,
}: DebugCameraImageProps) {
const [showSettings, setShowSettings] = useState(false);
const [options, setOptions] = usePersistence(
`${cameraConfig?.name}-feed`,
emptyObject
);
const handleSetOption = useCallback(
(id: string, value: boolean) => {
const newOptions = { ...options, [id]: value };
setOptions(newOptions);
},
[options]
);
const searchParams = useMemo(
() =>
new URLSearchParams(
Object.keys(options).reduce((memo, key) => {
//@ts-ignore we know this is correct
memo.push([key, options[key] === true ? "1" : "0"]);
return memo;
}, [])
),
[options]
);
const handleToggleSettings = useCallback(() => {
setShowSettings(!showSettings);
}, [showSettings]);
return (
<div className={className}>
<AutoUpdatingCameraImage
cameraConfig={cameraConfig}
searchParams={searchParams}
url={url}
/>
<Button onClick={handleToggleSettings} variant="link" size="sm">
<span className="w-5 h-5">
<IconSettings />
</span>{" "}
<span>{showSettings ? "Hide" : "Show"} Options</span>
</Button>
{showSettings ? (
<Card>
<CardHeader>
<CardTitle>Options</CardTitle>
</CardHeader>
<CardContent>
<DebugSettings
handleSetOption={handleSetOption}
options={options}
/>
</CardContent>
</Card>
) : null}
</div>
);
}
type DebugSettingsProps = {
handleSetOption: (id: string, value: boolean) => void;
options: Options;
};
function DebugSettings({ handleSetOption, options }: DebugSettingsProps) {
return (
<div className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
<div className="flex items-center space-x-2">
<Switch
id="bbox"
checked={options["bbox"]}
onChange={() => { }}
// onCheckedChange={(isChecked) => {
// handleSetOption("bbox", isChecked);
// }}
/>
{/* <Label htmlFor="bbox">Bounding Box</Label> */}
<Text>Bounding Box</Text>
</div>
<div className="flex items-center space-x-2">
<Switch
id="timestamp"
checked={options["timestamp"]}
// onCheckedChange={(isChecked) => {
// handleSetOption("timestamp", isChecked);
// }}
/>
{/* <Label htmlFor="timestamp">Timestamp</Label> */}
<Text>Timestamp</Text>
</div>
<div className="flex items-center space-x-2">
<Switch
id="zones"
checked={options["zones"]}
// onCheckedChange={(isChecked) => {
// handleSetOption("zones", isChecked);
// }}
/>
{/* <Label htmlFor="zones">Zones</Label> */}
<Text>Zones</Text>
</div>
<div className="flex items-center space-x-2">
<Switch
id="mask"
checked={options["mask"]}
// onCheckedChange={(isChecked) => {
// handleSetOption("mask", isChecked);
// }}
/>
{/* <Label htmlFor="mask">Mask</Label> */}
<Text>Mask</Text>
</div>
<div className="flex items-center space-x-2">
<Switch
id="motion"
checked={options["motion"]}
// onCheckedChange={(isChecked) => {
// handleSetOption("motion", isChecked);
// }}
/>
{/* <Label htmlFor="motion">Motion</Label> */}
<Text>Motion</Text>
</div>
<div className="flex items-center space-x-2">
<Switch
id="regions"
checked={options["regions"]}
// onCheckedChange={(isChecked) => {
// handleSetOption("regions", isChecked);
// }}
/>
{/* <Label htmlFor="regions">Regions</Label> */}
<Text>Regions</Text>
</div>
</div>
);
}