Files
Homarr/src/modules/usenet/UsenetHistoryList.tsx

127 lines
3.2 KiB
TypeScript
Raw Normal View History

2022-08-26 11:10:40 +02:00
import {
Alert,
Center,
Code,
Group,
Pagination,
Skeleton,
Table,
Text,
Title,
Tooltip,
} from '@mantine/core';
import { IconAlertCircle } from '@tabler/icons';
import { AxiosError } from 'axios';
2022-08-25 21:07:41 +02:00
import dayjs from 'dayjs';
import duration from 'dayjs/plugin/duration';
2022-08-26 10:46:34 +02:00
import { FunctionComponent, useState } from 'react';
import { useGetUsenetHistory } from '../../tools/hooks/api';
2022-08-25 21:07:41 +02:00
import { humanFileSize } from '../../tools/humanFileSize';
dayjs.extend(duration);
interface UsenetHistoryListProps {
2022-08-26 10:46:34 +02:00
serviceId: string;
2022-08-25 21:07:41 +02:00
}
2022-08-26 10:46:34 +02:00
const PAGE_SIZE = 10;
2022-08-25 21:07:41 +02:00
2022-08-26 10:46:34 +02:00
export const UsenetHistoryList: FunctionComponent<UsenetHistoryListProps> = ({ serviceId }) => {
const [page, setPage] = useState(1);
2022-08-26 11:10:40 +02:00
const { data, isLoading, isError, error } = useGetUsenetHistory({
2022-08-26 10:46:34 +02:00
limit: PAGE_SIZE,
offset: (page - 1) * PAGE_SIZE,
serviceId,
});
const totalPages = Math.ceil((data?.total || 1) / PAGE_SIZE);
if (isLoading) {
return (
<>
<Skeleton height={40} mt={10} />
<Skeleton height={40} mt={10} />
<Skeleton height={40} mt={10} />
</>
);
}
2022-08-26 11:10:40 +02:00
if (isError) {
return (
<Group position="center">
<Alert icon={<IconAlertCircle size={16} />} my="lg" title="Error!" color="red" radius="md">
Some error has occured while fetching data:
<Code mt="sm" block>
{(error as AxiosError)?.response?.data as string}
</Code>
</Alert>
</Group>
);
}
2022-08-26 10:46:34 +02:00
if (!data || data.items.length <= 0) {
2022-08-25 21:07:41 +02:00
return (
<Center style={{ display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
2022-08-26 11:10:40 +02:00
<Title order={3}>History is empty</Title>
2022-08-25 21:07:41 +02:00
</Center>
);
}
return (
2022-08-26 10:46:34 +02:00
<div>
<Table highlightOnHover style={{ tableLayout: 'fixed' }}>
<colgroup>
<col span={1} />
<col span={1} style={{ width: 100 }} />
<col span={1} style={{ width: 200 }} />
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Download Duration</th>
2022-08-25 21:07:41 +02:00
</tr>
2022-08-26 10:46:34 +02:00
</thead>
<tbody>
{data.items.map((history) => (
<tr key={history.id}>
<td>
<Tooltip position="top" label={history.name}>
<Text
size="xs"
style={{
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
}}
>
{history.name}
</Text>
</Tooltip>
</td>
<td>
<Text size="xs">{humanFileSize(history.size)}</Text>
</td>
<td>
<Text size="xs">
{dayjs
.duration(history.time, 's')
.format(history.time < 60 ? 's [seconds]' : 'm [minutes] s [seconds] ')}
</Text>
</td>
</tr>
))}
</tbody>
</Table>
<Pagination
size="sm"
position="center"
mt="md"
total={totalPages}
page={page}
onChange={setPage}
/>
</div>
2022-08-25 21:07:41 +02:00
);
};