2022-12-23 14:20:12 +01:00
|
|
|
import { useTranslation } from "next-i18next";
|
2023-06-02 14:57:27 +02:00
|
|
|
import { useCallback } from 'react';
|
2022-12-23 14:20:12 +01:00
|
|
|
|
2023-06-06 01:14:10 +02:00
|
|
|
import QueueEntry from "../../components/widgets/queue/queueEntry";
|
|
|
|
|
2022-09-26 15:25:10 +03:00
|
|
|
import Container from "components/services/widget/container";
|
|
|
|
import Block from "components/services/widget/block";
|
2022-09-27 22:59:14 +03:00
|
|
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
2023-06-02 14:57:27 +02:00
|
|
|
import BlockList from 'components/services/widget/block-list';
|
2022-09-25 10:13:31 -07:00
|
|
|
|
|
|
|
export default function Component({ service }) {
|
2022-12-23 14:20:12 +01:00
|
|
|
const { t } = useTranslation();
|
2022-09-27 22:59:14 +03:00
|
|
|
const { widget } = service;
|
2022-09-25 10:13:31 -07:00
|
|
|
|
2022-09-27 22:59:14 +03:00
|
|
|
const { data: wantedData, error: wantedError } = useWidgetAPI(widget, "wanted/missing");
|
|
|
|
const { data: queuedData, error: queuedError } = useWidgetAPI(widget, "queue");
|
|
|
|
const { data: seriesData, error: seriesError } = useWidgetAPI(widget, "series");
|
2023-06-02 14:57:27 +02:00
|
|
|
const { data: queueDetailsData, error: queueDetailsError } = useWidgetAPI(widget, "queue/details");
|
2022-09-25 10:13:31 -07:00
|
|
|
|
2023-06-02 14:57:27 +02:00
|
|
|
// information taken from the Sonarr docs: https://sonarr.tv/docs/api/
|
|
|
|
const formatDownloadState = useCallback((downloadState) => {
|
|
|
|
switch (downloadState) {
|
|
|
|
case "importPending":
|
|
|
|
return "import pending";
|
|
|
|
case "failedPending":
|
|
|
|
return "failed pending";
|
|
|
|
default:
|
|
|
|
return downloadState;
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
if (wantedError || queuedError || seriesError || queueDetailsError) {
|
|
|
|
const finalError = wantedError ?? queuedError ?? seriesError ?? queueDetailsError;
|
2023-04-30 19:09:37 -04:00
|
|
|
return <Container service={service} error={finalError} />;
|
2022-09-25 10:13:31 -07:00
|
|
|
}
|
|
|
|
|
2023-06-06 01:14:10 +02:00
|
|
|
const enableQueue = widget?.enableQueue;
|
|
|
|
|
2023-06-02 14:57:27 +02:00
|
|
|
if (!wantedData || !queuedData || !seriesData || !queueDetailsData) {
|
2022-09-25 10:13:31 -07:00
|
|
|
return (
|
2023-06-02 14:57:27 +02:00
|
|
|
<>
|
|
|
|
<Container service={service}>
|
|
|
|
<Block label="sonarr.wanted" />
|
|
|
|
<Block label="sonarr.queued" />
|
|
|
|
<Block label="sonarr.series" />
|
|
|
|
</Container>
|
2023-06-06 01:14:10 +02:00
|
|
|
{ enableQueue &&
|
|
|
|
<Container service={service}>
|
|
|
|
<BlockList label="sonarr.queued" />
|
|
|
|
</Container>
|
|
|
|
}
|
2023-06-02 14:57:27 +02:00
|
|
|
</>
|
2022-09-25 10:13:31 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2023-06-02 14:57:27 +02:00
|
|
|
<>
|
|
|
|
<Container service={service}>
|
|
|
|
<Block label="sonarr.wanted" value={t("common.number", { value: wantedData.totalRecords })} />
|
|
|
|
<Block label="sonarr.queued" value={t("common.number", { value: queuedData.totalRecords })} />
|
|
|
|
<Block label="sonarr.series" value={t("common.number", { value: seriesData.length })} />
|
|
|
|
</Container>
|
2023-06-06 01:14:10 +02:00
|
|
|
{ enableQueue &&
|
|
|
|
<Container service={service}>
|
|
|
|
<BlockList label="sonarr.queue" childHeight={24}>
|
|
|
|
{Array.isArray(queueDetailsData) ? queueDetailsData.map((queueEntry) => (
|
|
|
|
<QueueEntry
|
|
|
|
progress={(1 - queueEntry.sizeLeft / queueEntry.size) * 100}
|
|
|
|
status={queueEntry.status}
|
|
|
|
timeLeft={queueEntry.timeLeft}
|
|
|
|
title={`${seriesData.find((entry) => entry.id === queueEntry.seriesId)?.title } • ${ queueEntry.episodeTitle}`}
|
|
|
|
activity={formatDownloadState(queueEntry.trackedDownloadState)}
|
|
|
|
key={queueEntry.episodeId}
|
|
|
|
/>
|
|
|
|
)) : undefined}
|
|
|
|
</BlockList>
|
|
|
|
</Container>
|
|
|
|
}
|
2023-06-02 14:57:27 +02:00
|
|
|
</>
|
2022-09-25 10:13:31 -07:00
|
|
|
);
|
|
|
|
}
|