mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
127 lines
2.9 KiB
TypeScript
127 lines
2.9 KiB
TypeScript
|
|
import { useTheme } from "@/context/theme-provider";
|
||
|
|
import { FrigateConfig } from "@/types/frigateConfig";
|
||
|
|
import { Threshold } from "@/types/graph";
|
||
|
|
import { useCallback, useEffect, useMemo } from "react";
|
||
|
|
import Chart from "react-apexcharts";
|
||
|
|
import useSWR from "swr";
|
||
|
|
|
||
|
|
type SystemGraphProps = {
|
||
|
|
graphId: string;
|
||
|
|
name: string;
|
||
|
|
unit: string;
|
||
|
|
threshold: Threshold;
|
||
|
|
updateTimes: number[];
|
||
|
|
data: ApexAxisChartSeries;
|
||
|
|
};
|
||
|
|
export default function SystemGraph({
|
||
|
|
graphId,
|
||
|
|
name,
|
||
|
|
unit,
|
||
|
|
threshold,
|
||
|
|
updateTimes,
|
||
|
|
data,
|
||
|
|
}: SystemGraphProps) {
|
||
|
|
const { data: config } = useSWR<FrigateConfig>("config", {
|
||
|
|
revalidateOnFocus: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const lastValue = useMemo<number>(
|
||
|
|
// @ts-expect-error y is valid
|
||
|
|
() => data[0].data[data[0].data.length - 1]?.y ?? 0,
|
||
|
|
[data],
|
||
|
|
);
|
||
|
|
|
||
|
|
const { theme, systemTheme } = useTheme();
|
||
|
|
|
||
|
|
const formatTime = useCallback(
|
||
|
|
(val: unknown) => {
|
||
|
|
const date = new Date(updateTimes[Math.round(val as number)] * 1000);
|
||
|
|
return date.toLocaleTimeString([], {
|
||
|
|
hour12: config?.ui.time_format != "24hour",
|
||
|
|
hour: "2-digit",
|
||
|
|
minute: "2-digit",
|
||
|
|
});
|
||
|
|
},
|
||
|
|
[config, updateTimes],
|
||
|
|
);
|
||
|
|
|
||
|
|
const options = useMemo(() => {
|
||
|
|
return {
|
||
|
|
chart: {
|
||
|
|
id: graphId,
|
||
|
|
selection: {
|
||
|
|
enabled: false,
|
||
|
|
},
|
||
|
|
toolbar: {
|
||
|
|
show: false,
|
||
|
|
},
|
||
|
|
zoom: {
|
||
|
|
enabled: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
colors: [
|
||
|
|
({ value }: { value: number }) => {
|
||
|
|
if (value >= threshold.error) {
|
||
|
|
return "#FA5252";
|
||
|
|
} else if (value >= threshold.warning) {
|
||
|
|
return "#FF9966";
|
||
|
|
} else {
|
||
|
|
return (systemTheme || theme) == "dark" ? "#404040" : "#E5E5E5";
|
||
|
|
}
|
||
|
|
},
|
||
|
|
],
|
||
|
|
grid: {
|
||
|
|
show: false,
|
||
|
|
},
|
||
|
|
legend: {
|
||
|
|
show: false,
|
||
|
|
},
|
||
|
|
dataLabels: {
|
||
|
|
enabled: false,
|
||
|
|
},
|
||
|
|
plotOptions: {
|
||
|
|
bar: {
|
||
|
|
distributed: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
tooltip: {
|
||
|
|
theme: systemTheme || theme,
|
||
|
|
},
|
||
|
|
xaxis: {
|
||
|
|
tickAmount: 6,
|
||
|
|
labels: {
|
||
|
|
formatter: formatTime,
|
||
|
|
},
|
||
|
|
axisBorder: {
|
||
|
|
show: false,
|
||
|
|
},
|
||
|
|
axisTicks: {
|
||
|
|
show: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
yaxis: {
|
||
|
|
show: false,
|
||
|
|
min: 0,
|
||
|
|
max: threshold.warning + 10,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
}, [graphId, threshold, systemTheme, theme, formatTime]);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
ApexCharts.exec(graphId, "updateOptions", options, true, true);
|
||
|
|
}, [graphId, options]);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="w-full flex flex-col">
|
||
|
|
<div className="flex items-center gap-1">
|
||
|
|
<div className="text-xs text-muted-foreground">{name}</div>
|
||
|
|
<div className="text-xs text-primary-foreground">
|
||
|
|
{lastValue}
|
||
|
|
{unit}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<Chart type="bar" options={options} series={data} height="120" />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|