Update deluge component to show leech progress
This commit is contained in:
parent
b17db643fd
commit
7df38420d5
@ -1,5 +1,7 @@
|
|||||||
import { useTranslation } from "next-i18next";
|
import { useTranslation } from "next-i18next";
|
||||||
|
|
||||||
|
import QueueEntry from "../../components/widgets/queue/queueEntry";
|
||||||
|
|
||||||
import Container from "components/services/widget/container";
|
import Container from "components/services/widget/container";
|
||||||
import Block from "components/services/widget/block";
|
import Block from "components/services/widget/block";
|
||||||
import useWidgetAPI from "utils/proxy/use-widget-api";
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
||||||
@ -32,21 +34,38 @@ export default function Component({ service }) {
|
|||||||
let rateDl = 0;
|
let rateDl = 0;
|
||||||
let rateUl = 0;
|
let rateUl = 0;
|
||||||
let completed = 0;
|
let completed = 0;
|
||||||
|
const leechTorrents = [];
|
||||||
|
|
||||||
for (let i = 0; i < keys.length; i += 1) {
|
for (let i = 0; i < keys.length; i += 1) {
|
||||||
const torrent = torrents[keys[i]];
|
const torrent = torrents[keys[i]];
|
||||||
rateDl += torrent.download_payload_rate;
|
rateDl += torrent.download_payload_rate;
|
||||||
rateUl += torrent.upload_payload_rate;
|
rateUl += torrent.upload_payload_rate;
|
||||||
completed += torrent.total_remaining === 0 ? 1 : 0;
|
completed += torrent.total_remaining === 0 ? 1 : 0;
|
||||||
|
if (torrent.state === "Downloading") {
|
||||||
|
leechTorrents.push(torrent);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const leech = keys.length - completed || 0;
|
const leech = keys.length - completed || 0;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container service={service}>
|
<>
|
||||||
<Block label="deluge.leech" value={t("common.number", { value: leech })} />
|
<Container service={service}>
|
||||||
<Block label="deluge.download" value={t("common.byterate", { value: rateDl })} />
|
<Block label="deluge.leech" value={t("common.number", { value: leech })} />
|
||||||
<Block label="deluge.seed" value={t("common.number", { value: completed })} />
|
<Block label="deluge.download" value={t("common.byterate", { value: rateDl })} />
|
||||||
<Block label="deluge.upload" value={t("common.byterate", { value: rateUl })} />
|
<Block label="deluge.seed" value={t("common.number", { value: completed })} />
|
||||||
</Container>
|
<Block label="deluge.upload" value={t("common.byterate", { value: rateUl })} />
|
||||||
|
</Container>
|
||||||
|
{widget?.enableLeechProgress &&
|
||||||
|
leechTorrents.map((queueEntry) => (
|
||||||
|
<QueueEntry
|
||||||
|
progress={queueEntry.progress}
|
||||||
|
timeLeft={t("common.duration", { value: queueEntry.eta })}
|
||||||
|
title={queueEntry.name}
|
||||||
|
activity={queueEntry.state}
|
||||||
|
key={`${queueEntry.name}-${queueEntry.total_remaining}`}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user