mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
36 lines
1.2 KiB
JavaScript
36 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: pyloadData, error: pyloadError } = useWidgetAPI(widget, "status");
|
|
|
|
if (pyloadError) {
|
|
return <Container error={pyloadError} />;
|
|
}
|
|
|
|
if (!pyloadData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="pyload.speed" />
|
|
<Block label="pyload.active" />
|
|
<Block label="pyload.queue" />
|
|
<Block label="pyload.total" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="pyload.speed" value={t("common.bitrate", { value: pyloadData.speed })} />
|
|
<Block label="pyload.active" value={t("common.number", { value: pyloadData.active })} />
|
|
<Block label="pyload.queue" value={t("common.number", { value: pyloadData.queue })} />
|
|
<Block label="pyload.total" value={t("common.number", { value: pyloadData.total })} />
|
|
</Container>
|
|
);
|
|
}
|