mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-11 01:11:31 +01:00
38 lines
1.1 KiB
React
38 lines
1.1 KiB
React
![]() |
import useSWR from "swr";
|
||
|
import { useTranslation } from "next-i18next";
|
||
|
import Block from "components/services/widget/block";
|
||
|
import Container from "components/services/widget/container";
|
||
|
import { formatProxyUrl } from "utils/proxy/api-helpers";
|
||
|
|
||
|
export default function Component({ service }) {
|
||
|
const { t } = useTranslation();
|
||
|
|
||
|
const { widget } = service;
|
||
|
|
||
|
const { data: plexData, error: plexAPIError } = useSWR(formatProxyUrl(widget, "unified"), {
|
||
|
refreshInterval: 5000,
|
||
|
});
|
||
|
|
||
|
if (plexAPIError) {
|
||
|
return <Container error={t("widget.api_error")} />;
|
||
|
}
|
||
|
|
||
|
if (!plexData) {
|
||
|
return (
|
||
|
<Container service={service}>
|
||
|
<Block label="plex.streams" />
|
||
|
<Block label="plex.movies" />
|
||
|
<Block label="plex.tv" />
|
||
|
</Container>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<Container service={service}>
|
||
|
<Block label="plex.streams" value={t("common.number", { value: plexData.streams })} />
|
||
|
<Block label="plex.movies" value={t("common.number", { value: plexData.movies })} />
|
||
|
<Block label="plex.tv" value={t("common.number", { value: plexData.tv })} />
|
||
|
</Container>
|
||
|
);
|
||
|
}
|