mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-06 12:18:48 +00:00
70 lines
2.4 KiB
JavaScript
70 lines
2.4 KiB
JavaScript
import { useTranslation } from "next-i18next";
|
|
import Container from "components/services/widget/container";
|
|
import Block from "components/services/widget/block";
|
|
|
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
|
|
|
export default function Component({ service }) {
|
|
const { t } = useTranslation();
|
|
|
|
const { widget } = service;
|
|
const { systemId } = widget;
|
|
|
|
const { data: systems, error: systemsError } = useWidgetAPI(widget, "systems");
|
|
|
|
const MAX_ALLOWED_FIELDS = 4;
|
|
if (!widget.fields?.length > 0) {
|
|
widget.fields = systemId ? ["name", "status", "cpu", "memory"] : ["systems", "up"];
|
|
}
|
|
if (widget.fields?.length > MAX_ALLOWED_FIELDS) {
|
|
widget.fields = widget.fields.slice(0, MAX_ALLOWED_FIELDS);
|
|
}
|
|
|
|
let system = null;
|
|
let finalError = systemsError;
|
|
|
|
if (systems && !systems.items) {
|
|
finalError = { message: "No items returned from beszel API" };
|
|
} else if (systems && systems.items && systemId) {
|
|
system = systems.items.find((item) => item.id === systemId || item.name === systemId);
|
|
if (!system) {
|
|
finalError = { message: `System with id ${systemId} not found` };
|
|
}
|
|
}
|
|
|
|
if (finalError) {
|
|
return <Container service={service} error={finalError} />;
|
|
}
|
|
|
|
if (!systems) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="beszel.systems" />
|
|
<Block label="beszel.up" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
if (system) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="beszel.name" value={system.name} />
|
|
<Block label="beszel.status" value={t(`beszel.${system.status}`)} />
|
|
<Block label="beszel.updated" value={t("common.relativeDate", { value: system.updated })} />
|
|
<Block label="beszel.cpu" value={t("common.percent", { value: system.info.cpu, maximumFractionDigits: 2 })} />
|
|
<Block label="beszel.memory" value={t("common.percent", { value: system.info.mp, maximumFractionDigits: 2 })} />
|
|
<Block label="beszel.disk" value={t("common.percent", { value: system.info.dp, maximumFractionDigits: 2 })} />
|
|
<Block label="beszel.network" value={t("common.percent", { value: system.info.b, maximumFractionDigits: 2 })} />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const upTotal = systems.items.filter((item) => item.status === "up").length;
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="beszel.systems" value={systems.totalItems} />
|
|
<Block label="beszel.up" value={`${upTotal} / ${systems.totalItems}`} />
|
|
</Container>
|
|
);
|
|
}
|