Files
homarr/src/widgets/torrent/TorrentQueueItem.tsx
2023-01-19 09:09:31 +09:00

219 lines
6.3 KiB
TypeScript

/* eslint-disable @next/next/no-img-element */
import { NormalizedTorrent } from '@ctrl/shared-torrent';
import {
Badge,
Divider,
Flex,
Group,
List,
MantineColor,
Popover,
Progress,
Stack,
Text,
Title,
useMantineTheme,
} from '@mantine/core';
import { useDisclosure, useElementSize } from '@mantine/hooks';
import {
IconAffiliate,
IconDatabase,
IconDownload,
IconInfoCircle,
IconPercentage,
IconSortDescending,
IconUpload,
} from '@tabler/icons';
import { useTranslation } from 'next-i18next';
import { calculateETA } from '../../tools/calculateEta';
import { humanFileSize } from '../../tools/humanFileSize';
import { AppType } from '../../types/app';
interface TorrentQueueItemProps {
torrent: NormalizedTorrent;
app?: AppType;
}
export const BitTorrrentQueueItem = ({ torrent, app }: TorrentQueueItemProps) => {
const [popoverOpened, { open: openPopover, close: closePopover }] = useDisclosure(false);
const MIN_WIDTH_MOBILE = useMantineTheme().breakpoints.xs;
const { width } = useElementSize();
const downloadSpeed = torrent.downloadSpeed / 1024 / 1024;
const uploadSpeed = torrent.uploadSpeed / 1024 / 1024;
const size = torrent.totalSelected;
return (
<tr key={torrent.id}>
<td>
<Popover
opened={popoverOpened}
radius="md"
shadow="md"
width="target"
withinPortal
>
<Popover.Dropdown>
<TorrentQueuePopover torrent={torrent} app={app} />
</Popover.Dropdown>
<Popover.Target>
<div onMouseEnter={openPopover} onMouseLeave={closePopover}>
<Text
style={{
maxWidth: '30vw',
}}
size="xs"
lineClamp={1}
>
{torrent.name}
</Text>
{app && (
<Text size="xs" color="dimmed">
Managed by {app.name}, {torrent.ratio.toFixed(2)} ratio
</Text>
)}
</div>
</Popover.Target>
</Popover>
</td>
<td>
<Text size="xs">{humanFileSize(size)}</Text>
</td>
{width > MIN_WIDTH_MOBILE && (
<td>
<Text size="xs">{downloadSpeed > 0 ? `${downloadSpeed.toFixed(1)} Mb/s` : '-'}</Text>
</td>
)}
{width > MIN_WIDTH_MOBILE && (
<td>
<Text size="xs">{uploadSpeed > 0 ? `${uploadSpeed.toFixed(1)} Mb/s` : '-'}</Text>
</td>
)}
{width > MIN_WIDTH_MOBILE && (
<td>
<Text size="xs">{torrent.eta <= 0 ? '∞' : calculateETA(torrent.eta)}</Text>
</td>
)}
<td>
<Text>{(torrent.progress * 100).toFixed(1)}%</Text>
<Progress
radius="lg"
color={torrent.progress === 1 ? 'green' : torrent.state === 'paused' ? 'yellow' : 'blue'}
value={torrent.progress * 100}
size="lg"
/>
</td>
</tr>
);
};
const TorrentQueuePopover = ({ torrent, app }: TorrentQueueItemProps) => {
const { t } = useTranslation('modules/torrents-status');
const { colors } = useMantineTheme();
const RatioMetric = () => {
const color = (): MantineColor => {
if (torrent.ratio < 1) {
return colors.red[7];
}
if (torrent.ratio < 1.15) {
return colors.orange[7];
}
return colors.green[7];
};
return (
<Group spacing="xs">
<Group spacing={3}>
<Text>Ratio -</Text>
<Text color={color()} weight="bold">
{torrent.ratio.toFixed(2)}
</Text>
</Group>
</Group>
);
};
return (
<Stack spacing="xs" justify="space-evenly">
{app && (
<Group spacing={3}>
<Text size="xs" color="dimmed">
{t('card.popover.introductionPrefix')}
</Text>
<img src={app.appearance.iconUrl} alt="download client logo" width={15} height={15} />
<Text size="xs" color="dimmed">
{app.name}
</Text>
</Group>
)}
<Title order={5}>{torrent.name}</Title>
<List>
<List.Item icon={<IconAffiliate size={16} />}>
<RatioMetric />
</List.Item>
<List.Item icon={<IconSortDescending size={16} />}>
<Group spacing="xs">
<Text>
{t('card.popover.metrics.queuePosition', { position: torrent.queuePosition })}
</Text>
</Group>
</List.Item>
<List.Item icon={<IconPercentage size={16} />}>
<Group spacing="xs">
<Text>
{t('card.popover.metrics.progress', {
progress: (torrent.progress * 100).toFixed(2),
})}
<Progress
color={
torrent.progress === 1 ? 'green' : torrent.state === 'paused' ? 'yellow' : 'blue'
}
radius="md"
size="sm"
value={torrent.progress * 100}
animate={torrent.state !== 'paused'}
/>
</Text>
</Group>
</List.Item>
<List.Item icon={<IconDatabase size={16} />}>
<Text>
{t('card.popover.metrics.totalSelectedSize', {
totalSize: humanFileSize(torrent.totalSelected),
})}
</Text>
</List.Item>
<List.Item icon={<IconDownload size={16} />}>
<Group spacing="xs">
<Text>{humanFileSize(torrent.totalDownloaded)}</Text>
<Divider orientation="vertical" />
<IconUpload size={16} />
<Text>{humanFileSize(torrent.totalUploaded)}</Text>
</Group>
</List.Item>
<List.Item icon={<IconInfoCircle size={16} />}>
<Text>
{t('card.popover.metrics.state', {
state: torrent.stateMessage !== '' ? torrent.stateMessage : torrent.state,
})}
</Text>
</List.Item>
{(torrent.label || torrent.isCompleted) && (
<List.Item>
<Flex gap="sm">
{torrent.label && <Badge variant="outline">{torrent.label}</Badge>}
{torrent.isCompleted && (
<Badge variant="dot" color="green">
{t('card.popover.metrics.completed')}
</Badge>
)}
</Flex>
</List.Item>
)}
</List>
</Stack>
);
};