mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
38 lines
1.2 KiB
JavaScript
38 lines
1.2 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 { data: alertData, error: alertError } = useWidgetAPI(widget, "alerts");
|
|
const { data: statusData, error: statusError } = useWidgetAPI(widget, "status");
|
|
|
|
if (alertError || statusError) {
|
|
const finalError = alertError ?? statusError;
|
|
return <Container service={service} error={finalError} />;
|
|
}
|
|
|
|
if (!alertData || !statusData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="truenas.load" />
|
|
<Block label="truenas.uptime" />
|
|
<Block label="truenas.alerts" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="truenas.load" value={t("common.number", { value: statusData.loadavg[0] })} />
|
|
<Block label="truenas.uptime" value={t("common.uptime", { value: statusData.uptime_seconds })} />
|
|
<Block label="truenas.alerts" value={t("common.number", { value: alertData.pending })} />
|
|
</Container>
|
|
);
|
|
}
|