53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import { Paper, Text } from "@mantine/core";
|
|
import { IconCpu } from "@tabler/icons-react";
|
|
|
|
import { useScopedI18n } from "@homarr/translation/client";
|
|
|
|
import type { LabelDisplayModeOption } from "..";
|
|
import { CommonChart } from "./common-chart";
|
|
|
|
export const SystemResourceCPUChart = ({
|
|
cpuUsageOverTime,
|
|
hasShadow,
|
|
labelDisplayMode,
|
|
}: {
|
|
cpuUsageOverTime: number[];
|
|
hasShadow: boolean;
|
|
labelDisplayMode: LabelDisplayModeOption;
|
|
}) => {
|
|
const chartData = cpuUsageOverTime.map((usage, index) => ({ index, usage }));
|
|
const t = useScopedI18n("widget.systemResources.card");
|
|
|
|
return (
|
|
<CommonChart
|
|
data={chartData}
|
|
dataKey={"index"}
|
|
series={[{ name: "usage", color: "blue.5" }]}
|
|
title={t("cpu")}
|
|
icon={IconCpu}
|
|
lastValue={
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
cpuUsageOverTime.length > 0 ? `${Math.round(cpuUsageOverTime[cpuUsageOverTime.length - 1]!)}%` : undefined
|
|
}
|
|
chartType={hasShadow ? "area" : "line"}
|
|
yAxisProps={{ domain: [0, 100] }}
|
|
labelDisplayMode={labelDisplayMode}
|
|
tooltipProps={{
|
|
content: ({ payload }) => {
|
|
if (!payload) {
|
|
return null;
|
|
}
|
|
const value = payload[0] ? Number(payload[0].value) : 0;
|
|
return (
|
|
<Paper px={3} py={2} withBorder shadow="md" radius="md">
|
|
<Text c="dimmed" size="xs">
|
|
{value.toFixed(0)}%
|
|
</Text>
|
|
</Paper>
|
|
);
|
|
},
|
|
}}
|
|
/>
|
|
);
|
|
};
|