mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-10 15:28:47 +00:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 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: moviesData, error: moviesError } = useWidgetAPI(widget, "movie");
|
|
const { data: queuedData, error: queuedError } = useWidgetAPI(widget, "queue/status");
|
|
|
|
if (moviesError || queuedError) {
|
|
return <Container error={t("widget.api_error")} />;
|
|
}
|
|
|
|
if (!moviesData || !queuedData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="radarr.wanted" />
|
|
<Block label="radarr.queued" />
|
|
<Block label="radarr.movies" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="radarr.wanted" value={moviesData.wanted} />
|
|
<Block label="radarr.queued" value={queuedData.totalCount} />
|
|
<Block label="radarr.movies" value={moviesData.have} />
|
|
</Container>
|
|
);
|
|
}
|