mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
121 lines
2.8 KiB
TypeScript
121 lines
2.8 KiB
TypeScript
|
import { useTheme } from "@/context/theme-provider";
|
||
|
import { useEffect, useMemo } from "react";
|
||
|
import Chart from "react-apexcharts";
|
||
|
|
||
|
const getUnitSize = (MB: number) => {
|
||
|
if (MB === null || isNaN(MB) || MB < 0) return "Invalid number";
|
||
|
if (MB < 1024) return `${MB.toFixed(2)} 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,
|
||
|
},
|
||
|
},
|
||
|
states: {
|
||
|
active: {
|
||
|
filter: {
|
||
|
type: "none",
|
||
|
},
|
||
|
},
|
||
|
hover: {
|
||
|
filter: {
|
||
|
type: "none",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
tooltip: {
|
||
|
enabled: false,
|
||
|
},
|
||
|
xaxis: {
|
||
|
axisBorder: {
|
||
|
show: false,
|
||
|
},
|
||
|
axisTicks: {
|
||
|
show: false,
|
||
|
},
|
||
|
labels: {
|
||
|
show: false,
|
||
|
},
|
||
|
},
|
||
|
yaxis: {
|
||
|
show: false,
|
||
|
min: 0,
|
||
|
max: 100,
|
||
|
},
|
||
|
} as ApexCharts.ApexOptions;
|
||
|
}, [graphId, systemTheme, theme]);
|
||
|
|
||
|
useEffect(() => {
|
||
|
ApexCharts.exec(graphId, "updateOptions", options, true, true);
|
||
|
}, [graphId, options]);
|
||
|
|
||
|
return (
|
||
|
<div className="flex w-full flex-col gap-2.5">
|
||
|
<div className="flex w-full items-center justify-between gap-1">
|
||
|
<div className="flex items-center gap-1">
|
||
|
<div className="text-xs text-primary">{getUnitSize(used)}</div>
|
||
|
<div className="text-xs text-primary">/</div>
|
||
|
<div className="text-xs text-muted-foreground">
|
||
|
{getUnitSize(total)}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div className="text-xs text-primary">
|
||
|
{Math.round((used / total) * 100)}%
|
||
|
</div>
|
||
|
</div>
|
||
|
<div className="h-5 overflow-hidden rounded-md">
|
||
|
<Chart
|
||
|
type="bar"
|
||
|
options={options}
|
||
|
series={[
|
||
|
{ data: [{ x: "storage", y: Math.round((used / total) * 100) }] },
|
||
|
]}
|
||
|
height="100%"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|