mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-09-27 19:48:59 +03:00
* update docusaurus to 3.10.2 * bump @types/node to 25.9.6 and ES2022 target ES2022, which already includes ES2020 and ES2021.String, so the lib list was also trimmed * bump vite to 8.3.0 and vitest to 4.1.11 Swap `@vitejs/plugin-react-swc` for `@vitejs/plugin-react` and add `esbuild` as a devDependency, since `vite-plugin-monaco-editor` requires it and Vite 8 no longer ships it. `keepNames` moves to `build.rolldownOptions.output` because Vite 8 ignores the `esbuild` block. Rolldown's minifier now writes the preload helper's base path as a template literal instead of a double-quoted string, so the nginx `sub_filter` for `return"/BASE_PATH/"` stopped matching and lazy-loaded chunks and their CSS were requested from a literal `/BASE_PATH/` under Home Assistant ingress. The rule now matches the backtick form. * bump apexcharts to 7.3.0 and react-apexcharts to 2.1.1 Under Vite 8, a default import from a CommonJS package resolves to its whole `module.exports` when `package.json` has `"type": "module"`, so react-apexcharts 1.4.1 handed React an object and every chart crashed. 2.x ships an ESM build. apexcharts 7 no longer sets `window.ApexCharts`, so the chart components now import it for `ApexCharts.exec`, and `ApexAxisChartSeries` is derived in `types/graph.ts` because it's no longer a global type. * remove unused immer dep * remove unused cython pin from tensorrt requirements The pin was added alongside tensorrt 8.5.3 and cuda-python 11.8, which needed Cython to build, and both have since been dropped from this file. Nothing imports Cython at runtime, and `pip3 wheel` runs with build isolation, so any source build gets its own build dependencies. The pin only installed an unused Cython wheel into the TensorRT image. * require node 20.19 for docs
334 lines
8.2 KiB
TypeScript
334 lines
8.2 KiB
TypeScript
import { useTheme } from "@/context/theme-provider";
|
|
import { useDateLocale } from "@/hooks/use-date-locale";
|
|
import { FrigateConfig } from "@/types/frigateConfig";
|
|
import { ApexAxisChartSeries } from "@/types/graph";
|
|
import { formatUnixTimestampToDateTime } from "@/utils/dateUtil";
|
|
import { useCallback, useEffect, useMemo, useRef } from "react";
|
|
import ApexCharts from "apexcharts";
|
|
import Chart from "react-apexcharts";
|
|
import { isMobileOnly } from "react-device-detect";
|
|
import { useTranslation } from "react-i18next";
|
|
import { MdCircle } from "react-icons/md";
|
|
import useSWR from "swr";
|
|
import { useTimeFormat } from "@/hooks/use-date-utils";
|
|
|
|
const GRAPH_COLORS = ["#5C7CFA", "#ED5CFA", "#FAD75C"];
|
|
|
|
type CameraLineGraphProps = {
|
|
graphId: string;
|
|
unit: string;
|
|
dataLabels: string[];
|
|
updateTimes: number[];
|
|
data: ApexAxisChartSeries;
|
|
isActive?: boolean;
|
|
};
|
|
export function CameraLineGraph({
|
|
graphId,
|
|
unit,
|
|
dataLabels,
|
|
updateTimes,
|
|
data,
|
|
isActive = true,
|
|
}: CameraLineGraphProps) {
|
|
const { t } = useTranslation(["views/system", "common"]);
|
|
const { data: config } = useSWR<FrigateConfig>("config", {
|
|
revalidateOnFocus: false,
|
|
});
|
|
|
|
const lastValues = useMemo<number[] | undefined>(() => {
|
|
if (!dataLabels || !data || data.length == 0) {
|
|
return undefined;
|
|
}
|
|
|
|
return dataLabels.map(
|
|
(_, labelIdx) =>
|
|
// @ts-expect-error y is valid
|
|
data[labelIdx].data[data[labelIdx].data.length - 1]?.y ?? 0,
|
|
) as number[];
|
|
}, [data, dataLabels]);
|
|
|
|
const { theme, systemTheme } = useTheme();
|
|
|
|
const locale = useDateLocale();
|
|
|
|
const timeFormat = useTimeFormat(config);
|
|
const format = useMemo(() => {
|
|
return t(`time.formattedTimestampHourMinute.${timeFormat}`, {
|
|
ns: "common",
|
|
});
|
|
}, [t, timeFormat]);
|
|
|
|
const updateTimesRef = useRef(updateTimes);
|
|
useEffect(() => {
|
|
updateTimesRef.current = updateTimes;
|
|
}, [updateTimes]);
|
|
|
|
const formatTime = useCallback(
|
|
(val: unknown) => {
|
|
const times = updateTimesRef.current;
|
|
const ts = times[Math.round(val as number)];
|
|
if (isNaN(ts)) {
|
|
return "";
|
|
}
|
|
return formatUnixTimestampToDateTime(ts, {
|
|
timezone: config?.ui.timezone,
|
|
date_format: format,
|
|
locale,
|
|
});
|
|
},
|
|
[config?.ui.timezone, format, locale],
|
|
);
|
|
|
|
const options = useMemo(() => {
|
|
return {
|
|
chart: {
|
|
id: graphId,
|
|
selection: {
|
|
enabled: false,
|
|
},
|
|
toolbar: {
|
|
show: false,
|
|
},
|
|
zoom: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
colors: GRAPH_COLORS,
|
|
grid: {
|
|
show: false,
|
|
},
|
|
legend: {
|
|
show: false,
|
|
},
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
stroke: {
|
|
width: 1,
|
|
},
|
|
tooltip: {
|
|
theme: systemTheme || theme,
|
|
},
|
|
markers: {
|
|
size: 0,
|
|
},
|
|
xaxis: {
|
|
tickAmount: isMobileOnly ? 2 : 3,
|
|
tickPlacement: "on",
|
|
labels: {
|
|
rotate: 0,
|
|
formatter: formatTime,
|
|
style: {
|
|
colors: "#6B6B6B",
|
|
},
|
|
},
|
|
axisBorder: {
|
|
show: false,
|
|
},
|
|
axisTicks: {
|
|
show: false,
|
|
},
|
|
},
|
|
yaxis: {
|
|
show: true,
|
|
labels: {
|
|
formatter: (val: number) => Math.ceil(val).toString(),
|
|
style: {
|
|
colors: "#6B6B6B",
|
|
},
|
|
},
|
|
min: 0,
|
|
},
|
|
} as ApexCharts.ApexOptions;
|
|
}, [graphId, systemTheme, theme, formatTime]);
|
|
|
|
useEffect(() => {
|
|
ApexCharts.exec(graphId, "updateOptions", options, true, true);
|
|
}, [graphId, options]);
|
|
|
|
const hasBeenActive = useRef(isActive);
|
|
useEffect(() => {
|
|
if (isActive && hasBeenActive.current === false) {
|
|
ApexCharts.exec(graphId, "updateSeries", data, true);
|
|
}
|
|
hasBeenActive.current = isActive;
|
|
// only replay animation on visibility change, not data updates
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [isActive, graphId]);
|
|
|
|
return (
|
|
<div className="flex w-full flex-col">
|
|
{lastValues && (
|
|
<div className="flex flex-wrap items-center gap-2.5">
|
|
{dataLabels.map((label, labelIdx) => (
|
|
<div key={label} className="flex items-center gap-1">
|
|
<MdCircle
|
|
className="size-2"
|
|
style={{ color: GRAPH_COLORS[labelIdx] }}
|
|
/>
|
|
<div className="text-xs text-secondary-foreground">
|
|
{t("cameras.label." + label)}
|
|
</div>
|
|
<div className="text-xs text-primary">
|
|
{lastValues[labelIdx]}
|
|
{unit}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
<Chart type="line" options={options} series={data} height="120" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
type EventsPerSecondLineGraphProps = {
|
|
graphId: string;
|
|
unit: string;
|
|
name: string;
|
|
updateTimes: number[];
|
|
data: ApexAxisChartSeries;
|
|
isActive?: boolean;
|
|
};
|
|
export function EventsPerSecondsLineGraph({
|
|
graphId,
|
|
unit,
|
|
name,
|
|
updateTimes,
|
|
data,
|
|
isActive = true,
|
|
}: EventsPerSecondLineGraphProps) {
|
|
const { data: config } = useSWR<FrigateConfig>("config", {
|
|
revalidateOnFocus: false,
|
|
});
|
|
|
|
const { theme, systemTheme } = useTheme();
|
|
|
|
const lastValue = useMemo<number>(
|
|
// @ts-expect-error y is valid
|
|
() => data[0].data[data[0].data.length - 1]?.y ?? 0,
|
|
[data],
|
|
);
|
|
|
|
const locale = useDateLocale();
|
|
const { t } = useTranslation(["common"]);
|
|
|
|
const timeFormat = useTimeFormat(config);
|
|
const format = useMemo(() => {
|
|
return t(`time.formattedTimestampHourMinute.${timeFormat}`, {
|
|
ns: "common",
|
|
});
|
|
}, [t, timeFormat]);
|
|
|
|
const updateTimesRef = useRef(updateTimes);
|
|
useEffect(() => {
|
|
updateTimesRef.current = updateTimes;
|
|
}, [updateTimes]);
|
|
|
|
const formatTime = useCallback(
|
|
(val: unknown) => {
|
|
const times = updateTimesRef.current;
|
|
const ts = times[Math.round(val as number) - 1];
|
|
if (isNaN(ts)) {
|
|
return "";
|
|
}
|
|
return formatUnixTimestampToDateTime(ts, {
|
|
timezone: config?.ui.timezone,
|
|
date_format: format,
|
|
locale,
|
|
});
|
|
},
|
|
[config?.ui.timezone, format, locale],
|
|
);
|
|
|
|
const options = useMemo(() => {
|
|
return {
|
|
chart: {
|
|
id: graphId,
|
|
selection: {
|
|
enabled: false,
|
|
},
|
|
toolbar: {
|
|
show: false,
|
|
},
|
|
zoom: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
colors: GRAPH_COLORS,
|
|
grid: {
|
|
show: false,
|
|
},
|
|
legend: {
|
|
show: false,
|
|
},
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
stroke: {
|
|
width: 1,
|
|
},
|
|
tooltip: {
|
|
theme: systemTheme || theme,
|
|
},
|
|
markers: {
|
|
size: 0,
|
|
},
|
|
xaxis: {
|
|
tickAmount: isMobileOnly ? 2 : 3,
|
|
tickPlacement: "on",
|
|
labels: {
|
|
rotate: 0,
|
|
formatter: formatTime,
|
|
style: {
|
|
colors: "#6B6B6B",
|
|
},
|
|
},
|
|
axisBorder: {
|
|
show: false,
|
|
},
|
|
axisTicks: {
|
|
show: false,
|
|
},
|
|
},
|
|
yaxis: {
|
|
show: true,
|
|
labels: {
|
|
formatter: (val: number) => Math.ceil(val).toString(),
|
|
style: {
|
|
colors: "#6B6B6B",
|
|
},
|
|
},
|
|
min: 0,
|
|
},
|
|
} as ApexCharts.ApexOptions;
|
|
}, [graphId, systemTheme, theme, formatTime]);
|
|
|
|
useEffect(() => {
|
|
ApexCharts.exec(graphId, "updateOptions", options, true, true);
|
|
}, [graphId, options]);
|
|
|
|
const hasBeenActive = useRef(isActive);
|
|
useEffect(() => {
|
|
if (isActive && hasBeenActive.current === false) {
|
|
ApexCharts.exec(graphId, "updateSeries", data, true);
|
|
}
|
|
hasBeenActive.current = isActive;
|
|
// only replay animation on visibility change, not data updates
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [isActive, graphId]);
|
|
|
|
return (
|
|
<div className="flex w-full flex-col">
|
|
<div className="flex items-center gap-1">
|
|
<div className="text-xs text-secondary-foreground">{name}</div>
|
|
<div className="text-xs text-primary">
|
|
{lastValue}
|
|
{unit}
|
|
</div>
|
|
</div>
|
|
<Chart type="line" options={options} series={data} height="120" />
|
|
</div>
|
|
);
|
|
}
|