2024-04-19 14:34:07 +03:00
|
|
|
import Heading from "@/components/ui/heading";
|
|
|
|
|
import { FrigateConfig } from "@/types/frigateConfig";
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import ActivityIndicator from "@/components/indicators/activity-indicator";
|
|
|
|
|
import AutoUpdatingCameraImage from "@/components/camera/AutoUpdatingCameraImage";
|
|
|
|
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
|
|
|
|
import { Slider } from "@/components/ui/slider";
|
|
|
|
|
import { Label } from "@/components/ui/label";
|
|
|
|
|
import {
|
|
|
|
|
useImproveContrast,
|
|
|
|
|
useMotionContourArea,
|
|
|
|
|
useMotionThreshold,
|
|
|
|
|
} from "@/api/ws";
|
|
|
|
|
import { Skeleton } from "../ui/skeleton";
|
|
|
|
|
import { Button } from "../ui/button";
|
|
|
|
|
import { Switch } from "../ui/switch";
|
|
|
|
|
import { Toaster } from "@/components/ui/sonner";
|
|
|
|
|
import { toast } from "sonner";
|
|
|
|
|
import { Separator } from "../ui/separator";
|
|
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
|
import { LuExternalLink } from "react-icons/lu";
|
|
|
|
|
|
|
|
|
|
type MotionTunerProps = {
|
|
|
|
|
selectedCamera: string;
|
|
|
|
|
setUnsavedChanges: React.Dispatch<React.SetStateAction<boolean>>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type MotionSettings = {
|
|
|
|
|
threshold?: number;
|
|
|
|
|
contour_area?: number;
|
|
|
|
|
improve_contrast?: boolean;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function MotionTuner({
|
|
|
|
|
selectedCamera,
|
|
|
|
|
setUnsavedChanges,
|
|
|
|
|
}: MotionTunerProps) {
|
|
|
|
|
const { data: config, mutate: updateConfig } =
|
|
|
|
|
useSWR<FrigateConfig>("config");
|
|
|
|
|
const [changedValue, setChangedValue] = useState(false);
|
|
|
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
|
|
|
|
|
|
const { send: sendMotionThreshold } = useMotionThreshold(selectedCamera);
|
|
|
|
|
const { send: sendMotionContourArea } = useMotionContourArea(selectedCamera);
|
|
|
|
|
const { send: sendImproveContrast } = useImproveContrast(selectedCamera);
|
|
|
|
|
|
|
|
|
|
const [motionSettings, setMotionSettings] = useState<MotionSettings>({
|
|
|
|
|
threshold: undefined,
|
|
|
|
|
contour_area: undefined,
|
|
|
|
|
improve_contrast: undefined,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const [origMotionSettings, setOrigMotionSettings] = useState<MotionSettings>({
|
|
|
|
|
threshold: undefined,
|
|
|
|
|
contour_area: undefined,
|
|
|
|
|
improve_contrast: undefined,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const cameraConfig = useMemo(() => {
|
|
|
|
|
if (config && selectedCamera) {
|
|
|
|
|
return config.cameras[selectedCamera];
|
|
|
|
|
}
|
|
|
|
|
}, [config, selectedCamera]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (cameraConfig) {
|
|
|
|
|
setMotionSettings({
|
|
|
|
|
threshold: cameraConfig.motion.threshold,
|
|
|
|
|
contour_area: cameraConfig.motion.contour_area,
|
|
|
|
|
improve_contrast: cameraConfig.motion.improve_contrast,
|
|
|
|
|
});
|
|
|
|
|
setOrigMotionSettings({
|
|
|
|
|
threshold: cameraConfig.motion.threshold,
|
|
|
|
|
contour_area: cameraConfig.motion.contour_area,
|
|
|
|
|
improve_contrast: cameraConfig.motion.improve_contrast,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
// we know that these deps are correct
|
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
|
}, [selectedCamera]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (!motionSettings.threshold) return;
|
|
|
|
|
|
|
|
|
|
sendMotionThreshold(motionSettings.threshold);
|
|
|
|
|
}, [motionSettings.threshold, sendMotionThreshold]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (!motionSettings.contour_area) return;
|
|
|
|
|
|
|
|
|
|
sendMotionContourArea(motionSettings.contour_area);
|
|
|
|
|
}, [motionSettings.contour_area, sendMotionContourArea]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (motionSettings.improve_contrast === undefined) return;
|
|
|
|
|
|
|
|
|
|
sendImproveContrast(motionSettings.improve_contrast ? "ON" : "OFF");
|
|
|
|
|
}, [motionSettings.improve_contrast, sendImproveContrast]);
|
|
|
|
|
|
|
|
|
|
const handleMotionConfigChange = (newConfig: Partial<MotionSettings>) => {
|
|
|
|
|
setMotionSettings((prevConfig) => ({ ...prevConfig, ...newConfig }));
|
|
|
|
|
setUnsavedChanges(true);
|
|
|
|
|
setChangedValue(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const saveToConfig = useCallback(async () => {
|
|
|
|
|
setIsLoading(true);
|
|
|
|
|
|
|
|
|
|
axios
|
|
|
|
|
.put(
|
|
|
|
|
`config/set?cameras.${selectedCamera}.motion.threshold=${motionSettings.threshold}&cameras.${selectedCamera}.motion.contour_area=${motionSettings.contour_area}&cameras.${selectedCamera}.motion.improve_contrast=${motionSettings.improve_contrast}`,
|
|
|
|
|
{ requires_restart: 0 },
|
|
|
|
|
)
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.status === 200) {
|
|
|
|
|
toast.success("Motion settings have been saved.", {
|
|
|
|
|
position: "top-center",
|
|
|
|
|
});
|
|
|
|
|
setChangedValue(false);
|
|
|
|
|
updateConfig();
|
|
|
|
|
} else {
|
|
|
|
|
toast.error(`Failed to save config changes: ${res.statusText}`, {
|
|
|
|
|
position: "top-center",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch((error) => {
|
|
|
|
|
toast.error(
|
|
|
|
|
`Failed to save config changes: ${error.response.data.message}`,
|
|
|
|
|
{ position: "top-center" },
|
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
.finally(() => {
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
});
|
|
|
|
|
}, [
|
|
|
|
|
updateConfig,
|
|
|
|
|
motionSettings.threshold,
|
|
|
|
|
motionSettings.contour_area,
|
|
|
|
|
motionSettings.improve_contrast,
|
|
|
|
|
selectedCamera,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const onCancel = useCallback(() => {
|
|
|
|
|
setMotionSettings(origMotionSettings);
|
|
|
|
|
setChangedValue(false);
|
|
|
|
|
}, [origMotionSettings]);
|
|
|
|
|
|
|
|
|
|
if (!cameraConfig && !selectedCamera) {
|
|
|
|
|
return <ActivityIndicator />;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col md:flex-row size-full">
|
|
|
|
|
<Toaster position="top-center" />
|
2024-04-19 20:17:23 +03:00
|
|
|
<div className="flex flex-col h-full w-full overflow-y-auto mt-2 md:mt-0 mb-10 md:mb-0 md:w-3/12 order-last md:order-none md:mr-2 rounded-lg border-secondary-foreground border-[1px] p-2 bg-background_alt">
|
2024-04-19 14:34:07 +03:00
|
|
|
<Heading as="h3" className="my-2">
|
|
|
|
|
Motion Detection Tuner
|
|
|
|
|
</Heading>
|
|
|
|
|
<div className="text-sm text-muted-foreground my-3 space-y-3">
|
|
|
|
|
<p>
|
|
|
|
|
Frigate uses motion detection as a first line check to see if there
|
|
|
|
|
is anything happening in the frame worth checking with object
|
|
|
|
|
detection.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div className="flex items-center text-primary">
|
|
|
|
|
<Link
|
|
|
|
|
to="https://docs.frigate.video/configuration/motion_detection"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
className="inline"
|
|
|
|
|
>
|
|
|
|
|
Read the Motion Tuning Guide{" "}
|
|
|
|
|
<LuExternalLink className="size-3 ml-2 inline-flex" />
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<Separator className="flex my-2 bg-secondary" />
|
|
|
|
|
<div className="flex flex-col w-full space-y-6">
|
|
|
|
|
<div className="mt-2 space-y-6">
|
|
|
|
|
<div className="space-y-0.5">
|
|
|
|
|
<Label htmlFor="motion-threshold" className="text-md">
|
|
|
|
|
Threshold
|
|
|
|
|
</Label>
|
|
|
|
|
<div className="text-sm text-muted-foreground my-2">
|
|
|
|
|
<p>
|
|
|
|
|
The threshold value dictates how much of a change in a pixel's
|
|
|
|
|
luminance is required to be considered motion.{" "}
|
|
|
|
|
<em>Default: 30</em>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex flex-row justify-between">
|
|
|
|
|
<Slider
|
|
|
|
|
id="motion-threshold"
|
|
|
|
|
className="w-full"
|
|
|
|
|
disabled={motionSettings.threshold === undefined}
|
|
|
|
|
value={[motionSettings.threshold ?? 0]}
|
|
|
|
|
min={5}
|
|
|
|
|
max={80}
|
|
|
|
|
step={1}
|
|
|
|
|
onValueChange={(value) => {
|
|
|
|
|
handleMotionConfigChange({ threshold: value[0] });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<div className="text-lg ml-6 mr-2 flex align-center">
|
|
|
|
|
{motionSettings.threshold}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="mt-2 space-y-6">
|
|
|
|
|
<div className="space-y-0.5">
|
|
|
|
|
<Label htmlFor="motion-threshold" className="text-md">
|
|
|
|
|
Contour Area
|
|
|
|
|
</Label>
|
|
|
|
|
<div className="text-sm text-muted-foreground my-2">
|
|
|
|
|
<p>
|
|
|
|
|
The contour area value is used to decide which groups of
|
|
|
|
|
changed pixels qualify as motion. <em>Default: 10</em>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex flex-row justify-between">
|
|
|
|
|
<Slider
|
|
|
|
|
id="motion-contour-area"
|
|
|
|
|
className="w-full"
|
|
|
|
|
disabled={motionSettings.contour_area === undefined}
|
|
|
|
|
value={[motionSettings.contour_area ?? 0]}
|
|
|
|
|
min={5}
|
|
|
|
|
max={100}
|
|
|
|
|
step={1}
|
|
|
|
|
onValueChange={(value) => {
|
|
|
|
|
handleMotionConfigChange({ contour_area: value[0] });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<div className="text-lg ml-6 mr-2 flex align-center">
|
|
|
|
|
{motionSettings.contour_area}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<Separator className="flex my-2 bg-secondary" />
|
|
|
|
|
<div className="flex flex-row items-center justify-between">
|
|
|
|
|
<div className="space-y-0.5">
|
|
|
|
|
<Label htmlFor="improve-contrast">Improve Contrast</Label>
|
|
|
|
|
<div className="text-sm text-muted-foreground">
|
|
|
|
|
Improve contrast for darker scenes. <em>Default: ON</em>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<Switch
|
|
|
|
|
id="improve-contrast"
|
|
|
|
|
className="ml-3"
|
|
|
|
|
disabled={motionSettings.improve_contrast === undefined}
|
|
|
|
|
checked={motionSettings.improve_contrast === true}
|
|
|
|
|
onCheckedChange={(isChecked) => {
|
|
|
|
|
handleMotionConfigChange({ improve_contrast: isChecked });
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex flex-col flex-1 justify-end">
|
|
|
|
|
<div className="flex flex-row gap-2 pt-5">
|
|
|
|
|
<Button className="flex flex-1" onClick={onCancel}>
|
|
|
|
|
Reset
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
variant="select"
|
|
|
|
|
disabled={!changedValue || isLoading}
|
|
|
|
|
className="flex flex-1"
|
|
|
|
|
onClick={saveToConfig}
|
|
|
|
|
>
|
|
|
|
|
{isLoading ? (
|
|
|
|
|
<div className="flex flex-row items-center gap-2">
|
|
|
|
|
<ActivityIndicator />
|
|
|
|
|
<span>Saving...</span>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
"Save"
|
|
|
|
|
)}
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{cameraConfig ? (
|
|
|
|
|
<div className="flex md:w-7/12 md:grow md:h-dvh md:max-h-full">
|
|
|
|
|
<div className="size-full min-h-10">
|
|
|
|
|
<AutoUpdatingCameraImage
|
|
|
|
|
camera={cameraConfig.name}
|
|
|
|
|
searchParams={new URLSearchParams([["motion", "1"]])}
|
|
|
|
|
showFps={false}
|
|
|
|
|
className="size-full"
|
|
|
|
|
cameraClasses="relative w-full h-full flex flex-col justify-start"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<Skeleton className="size-full rounded-2xl" />
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|