mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Use camera status to get state of camera config (#12787)
* Use camera status to get state of camera config * Fix spelling
This commit is contained in:
parent
b1806b0a7c
commit
7b274b6974
@ -129,7 +129,20 @@ class Dispatcher:
|
|||||||
elif topic == UPDATE_CAMERA_ACTIVITY:
|
elif topic == UPDATE_CAMERA_ACTIVITY:
|
||||||
self.camera_activity = payload
|
self.camera_activity = payload
|
||||||
elif topic == "onConnect":
|
elif topic == "onConnect":
|
||||||
self.publish("camera_activity", json.dumps(self.camera_activity))
|
camera_status = self.camera_activity.copy()
|
||||||
|
|
||||||
|
for camera in camera_status.keys():
|
||||||
|
camera_status[camera]["config"] = {
|
||||||
|
"detect": self.config.cameras[camera].detect.enabled,
|
||||||
|
"snapshots": self.config.cameras[camera].snapshots.enabled,
|
||||||
|
"record": self.config.cameras[camera].record.enabled,
|
||||||
|
"audio": self.config.cameras[camera].audio.enabled,
|
||||||
|
"autotracking": self.config.cameras[
|
||||||
|
camera
|
||||||
|
].onvif.autotracking.enabled,
|
||||||
|
}
|
||||||
|
|
||||||
|
self.publish("camera_activity", json.dumps(camera_status))
|
||||||
else:
|
else:
|
||||||
self.publish(topic, payload, retain=False)
|
self.publish(topic, payload, retain=False)
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { baseUrl } from "./baseUrl";
|
import { baseUrl } from "./baseUrl";
|
||||||
import { useCallback, useEffect, useState } from "react";
|
import { useCallback, useEffect, useState } from "react";
|
||||||
import useWebSocket, { ReadyState } from "react-use-websocket";
|
import useWebSocket, { ReadyState } from "react-use-websocket";
|
||||||
import { FrigateConfig } from "@/types/frigateConfig";
|
|
||||||
import {
|
import {
|
||||||
FrigateCameraState,
|
FrigateCameraState,
|
||||||
FrigateEvent,
|
FrigateEvent,
|
||||||
@ -9,7 +8,6 @@ import {
|
|||||||
ToggleableSetting,
|
ToggleableSetting,
|
||||||
} from "@/types/ws";
|
} from "@/types/ws";
|
||||||
import { FrigateStats } from "@/types/stats";
|
import { FrigateStats } from "@/types/stats";
|
||||||
import useSWR from "swr";
|
|
||||||
import { createContainer } from "react-tracked";
|
import { createContainer } from "react-tracked";
|
||||||
import useDeepMemo from "@/hooks/use-deep-memo";
|
import useDeepMemo from "@/hooks/use-deep-memo";
|
||||||
|
|
||||||
@ -26,40 +24,50 @@ type WsState = {
|
|||||||
type useValueReturn = [WsState, (update: Update) => void];
|
type useValueReturn = [WsState, (update: Update) => void];
|
||||||
|
|
||||||
function useValue(): useValueReturn {
|
function useValue(): useValueReturn {
|
||||||
// basic config
|
|
||||||
const { data: config } = useSWR<FrigateConfig>("config", {
|
|
||||||
revalidateOnFocus: false,
|
|
||||||
});
|
|
||||||
const wsUrl = `${baseUrl.replace(/^http/, "ws")}ws`;
|
const wsUrl = `${baseUrl.replace(/^http/, "ws")}ws`;
|
||||||
|
|
||||||
// main state
|
// main state
|
||||||
|
|
||||||
|
const [hasCameraState, setHasCameraState] = useState(false);
|
||||||
const [wsState, setWsState] = useState<WsState>({});
|
const [wsState, setWsState] = useState<WsState>({});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!config) {
|
if (hasCameraState) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const activityValue: string = wsState["camera_activity"] as string;
|
||||||
|
|
||||||
|
if (!activityValue) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const cameraActivity: { [key: string]: object } = JSON.parse(activityValue);
|
||||||
|
|
||||||
|
if (!cameraActivity) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const cameraStates: WsState = {};
|
const cameraStates: WsState = {};
|
||||||
|
|
||||||
Object.keys(config.cameras).forEach((camera) => {
|
Object.entries(cameraActivity).forEach(([name, state]) => {
|
||||||
const { name, record, detect, snapshots, audio, onvif } =
|
const { record, detect, snapshots, audio, autotracking } =
|
||||||
config.cameras[camera];
|
// @ts-expect-error we know this is correct
|
||||||
cameraStates[`${name}/recordings/state`] = record.enabled ? "ON" : "OFF";
|
state["config"];
|
||||||
cameraStates[`${name}/detect/state`] = detect.enabled ? "ON" : "OFF";
|
cameraStates[`${name}/recordings/state`] = record ? "ON" : "OFF";
|
||||||
cameraStates[`${name}/snapshots/state`] = snapshots.enabled
|
cameraStates[`${name}/detect/state`] = detect ? "ON" : "OFF";
|
||||||
? "ON"
|
cameraStates[`${name}/snapshots/state`] = snapshots ? "ON" : "OFF";
|
||||||
: "OFF";
|
cameraStates[`${name}/audio/state`] = audio ? "ON" : "OFF";
|
||||||
cameraStates[`${name}/audio/state`] = audio.enabled ? "ON" : "OFF";
|
cameraStates[`${name}/ptz_autotracker/state`] = autotracking
|
||||||
cameraStates[`${name}/ptz_autotracker/state`] = onvif.autotracking.enabled
|
|
||||||
? "ON"
|
? "ON"
|
||||||
: "OFF";
|
: "OFF";
|
||||||
});
|
});
|
||||||
|
|
||||||
setWsState({ ...wsState, ...cameraStates });
|
setWsState({ ...wsState, ...cameraStates });
|
||||||
|
setHasCameraState(true);
|
||||||
// we only want this to run initially when the config is loaded
|
// we only want this to run initially when the config is loaded
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [config]);
|
}, [wsState]);
|
||||||
|
|
||||||
// ws handler
|
// ws handler
|
||||||
const { sendJsonMessage, readyState } = useWebSocket(wsUrl, {
|
const { sendJsonMessage, readyState } = useWebSocket(wsUrl, {
|
||||||
|
Loading…
Reference in New Issue
Block a user