mirror of
https://github.com/gethomepage/homepage.git
synced 2026-09-26 05:51:17 -07:00
60 lines
2.1 KiB
React
60 lines
2.1 KiB
React
import Block from "components/services/widget/block";
|
|
import Container from "components/services/widget/container";
|
|
import { useTranslation } from "next-i18next";
|
|
|
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
|
|
|
export default function Component({ service }) {
|
|
const { t } = useTranslation();
|
|
const { widget } = service;
|
|
|
|
const { data: storageData, error: storageError } = useWidgetAPI(widget, "storage");
|
|
|
|
if (storageError) {
|
|
return <Container service={service} error={storageError} />;
|
|
}
|
|
|
|
if (!storageData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block field="unifi_drive.total" label="resources.total" />
|
|
<Block field="unifi_drive.used" label="resources.used" />
|
|
<Block field="unifi_drive.available" label="resources.free" />
|
|
<Block field="unifi_drive.status" label="widget.status" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const { pools } = storageData;
|
|
|
|
if (!Array.isArray(pools) || pools.length === 0) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block value={t("unifi_drive.no_data")} />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const totalBytes = pools.reduce((sum, p) => sum + (p.capacity ?? 0), 0);
|
|
const usedBytes = pools.reduce((sum, p) => sum + (p.usage ?? 0), 0);
|
|
const availableBytes = Math.max(0, totalBytes - usedBytes);
|
|
|
|
const status = pools.some((p) => p.status === "degraded") ? "degraded" : pools[0]?.status;
|
|
let statusValue = status;
|
|
if (status === "fullyOperational" || status === "noDataProtectionYet") statusValue = t("unifi_drive.healthy");
|
|
else if (status === "degraded") statusValue = t("unifi_drive.degraded");
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block field="unifi_drive.total" label="resources.total" value={t("common.bytes", { value: totalBytes })} />
|
|
<Block field="unifi_drive.used" label="resources.used" value={t("common.bytes", { value: usedBytes })} />
|
|
<Block
|
|
field="unifi_drive.available"
|
|
label="resources.free"
|
|
value={t("common.bytes", { value: availableBytes })}
|
|
/>
|
|
<Block field="unifi_drive.status" label="widget.status" value={statusValue} />
|
|
</Container>
|
|
);
|
|
}
|