2024-04-04 06:22:11 +03:00
|
|
|
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";
|
|
|
|
|
|
2024-04-04 19:24:23 +03:00
|
|
|
type ThresholdBarGraphProps = {
|
2024-04-04 06:22:11 +03:00
|
|
|
graphId: string;
|
|
|
|
|
name: string;
|
|
|
|
|
unit: string;
|
|
|
|
|
threshold: Threshold;
|
|
|
|
|
updateTimes: number[];
|
|
|
|
|
data: ApexAxisChartSeries;
|
|
|
|
|
};
|
2024-04-04 19:24:23 +03:00
|
|
|
export function ThresholdBarGraph({
|
2024-04-04 06:22:11 +03:00
|
|
|
graphId,
|
|
|
|
|
name,
|
|
|
|
|
unit,
|
|
|
|
|
threshold,
|
|
|
|
|
updateTimes,
|
|
|
|
|
data,
|
2024-04-04 19:24:23 +03:00
|
|
|
}: ThresholdBarGraphProps) {
|
2024-04-04 06:22:11 +03:00
|
|
|
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,
|
|
|
|
|
},
|
2024-04-04 19:24:23 +03:00
|
|
|
markers: {
|
|
|
|
|
size: 0,
|
|
|
|
|
},
|
2024-04-04 06:22:11 +03:00
|
|
|
xaxis: {
|
2024-04-04 19:24:23 +03:00
|
|
|
tickAmount: 4,
|
|
|
|
|
tickPlacement: "on",
|
2024-04-04 06:22:11 +03:00
|
|
|
labels: {
|
|
|
|
|
formatter: formatTime,
|
|
|
|
|
},
|
|
|
|
|
axisBorder: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
axisTicks: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
yaxis: {
|
|
|
|
|
show: false,
|
|
|
|
|
min: 0,
|
|
|
|
|
max: threshold.warning + 10,
|
|
|
|
|
},
|
2024-04-04 19:24:23 +03:00
|
|
|
} as ApexCharts.ApexOptions;
|
2024-04-04 06:22:11 +03:00
|
|
|
}, [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>
|
|
|
|
|
);
|
|
|
|
|
}
|
2024-04-04 19:24:23 +03:00
|
|
|
|
|
|
|
|
const getUnitSize = (MB: number) => {
|
|
|
|
|
if (isNaN(MB) || MB < 0) return "Invalid number";
|
|
|
|
|
if (MB < 1024) return `${MB} MiB`;
|
|
|
|
|
if (MB < 1048576) return `${(MB / 1024).toFixed(2)} GiB`;
|
|
|
|
|
|
|
|
|
|
return `${(MB / 1048576).toFixed(2)} TiB`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type StorageGraphProps = {
|
|
|
|
|
graphId: string;
|
|
|
|
|
used: number;
|
|
|
|
|
total: number;
|
|
|
|
|
};
|
|
|
|
|
export function StorageGraph({ graphId, used, total }: StorageGraphProps) {
|
|
|
|
|
const { theme, systemTheme } = useTheme();
|
|
|
|
|
|
|
|
|
|
const options = useMemo(() => {
|
|
|
|
|
return {
|
|
|
|
|
chart: {
|
|
|
|
|
id: graphId,
|
|
|
|
|
background: (systemTheme || theme) == "dark" ? "#404040" : "#E5E5E5",
|
|
|
|
|
selection: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
},
|
|
|
|
|
toolbar: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
zoom: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
grid: {
|
|
|
|
|
show: false,
|
|
|
|
|
padding: {
|
|
|
|
|
bottom: -40,
|
|
|
|
|
top: -60,
|
|
|
|
|
left: -20,
|
|
|
|
|
right: 0,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
legend: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
dataLabels: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
},
|
|
|
|
|
plotOptions: {
|
|
|
|
|
bar: {
|
|
|
|
|
horizontal: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
theme: systemTheme || theme,
|
|
|
|
|
},
|
|
|
|
|
xaxis: {
|
|
|
|
|
axisBorder: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
axisTicks: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
labels: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
yaxis: {
|
|
|
|
|
show: false,
|
|
|
|
|
min: 0,
|
|
|
|
|
max: 100,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}, [graphId, systemTheme, theme]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
ApexCharts.exec(graphId, "updateOptions", options, true, true);
|
|
|
|
|
}, [graphId, options]);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="w-full flex flex-col gap-2.5">
|
|
|
|
|
<div className="w-full flex justify-between items-center gap-1">
|
|
|
|
|
<div className="flex items-center gap-1">
|
|
|
|
|
<div className="text-xs text-primary-foreground">
|
|
|
|
|
{getUnitSize(used)}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="text-xs text-primary-foreground">/</div>
|
|
|
|
|
<div className="text-xs text-muted-foreground">
|
|
|
|
|
{getUnitSize(total)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="text-xs text-primary-foreground">
|
|
|
|
|
{Math.round((used / total) * 100)}%
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="h-5 rounded-md overflow-hidden">
|
|
|
|
|
<Chart
|
|
|
|
|
type="bar"
|
|
|
|
|
options={options}
|
|
|
|
|
series={[
|
|
|
|
|
{ data: [{ x: "storage", y: Math.round((used / total) * 100) }] },
|
|
|
|
|
]}
|
|
|
|
|
height="100%"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|