2023-04-04 22:32:08 +02:00
|
|
|
import { Badge, Card, Center, Flex, Group, Image, Stack, Text } from '@mantine/core';
|
2023-04-06 23:11:29 +02:00
|
|
|
import { useTranslation } from 'next-i18next';
|
2023-05-15 17:40:59 +09:00
|
|
|
import { IconGitPullRequest } from '@tabler/icons-react';
|
2023-04-04 22:32:08 +02:00
|
|
|
import { defineWidget } from '../helper';
|
|
|
|
|
import { WidgetLoading } from '../loading';
|
|
|
|
|
import { IWidget } from '../widgets';
|
|
|
|
|
import { useMediaRequestQuery } from './media-request-query';
|
|
|
|
|
import { MediaRequestStatus } from './media-request-types';
|
|
|
|
|
|
|
|
|
|
const definition = defineWidget({
|
|
|
|
|
id: 'media-requests-list',
|
|
|
|
|
icon: IconGitPullRequest,
|
|
|
|
|
options: {},
|
|
|
|
|
component: MediaRequestListTile,
|
|
|
|
|
gridstack: {
|
|
|
|
|
minWidth: 3,
|
|
|
|
|
minHeight: 2,
|
|
|
|
|
maxWidth: 12,
|
|
|
|
|
maxHeight: 12,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export type MediaRequestListWidget = IWidget<(typeof definition)['id'], typeof definition>;
|
|
|
|
|
|
|
|
|
|
interface MediaRequestListWidgetProps {
|
|
|
|
|
widget: MediaRequestListWidget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function MediaRequestListTile({ widget }: MediaRequestListWidgetProps) {
|
2023-04-06 23:11:29 +02:00
|
|
|
const { t } = useTranslation('modules/media-requests-list');
|
2023-04-04 22:32:08 +02:00
|
|
|
const { data, isFetching } = useMediaRequestQuery();
|
|
|
|
|
|
|
|
|
|
if (!data || isFetching) {
|
|
|
|
|
return <WidgetLoading />;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data.length === 0) {
|
|
|
|
|
return (
|
|
|
|
|
<Center h="100%">
|
2023-04-06 23:11:29 +02:00
|
|
|
<Text>{t('noRequests')}</Text>
|
2023-04-04 22:32:08 +02:00
|
|
|
</Center>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const countPendingApproval = data.filter(
|
|
|
|
|
(x) => x.status === MediaRequestStatus.PendingApproval
|
|
|
|
|
).length;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Stack>
|
|
|
|
|
{countPendingApproval > 0 ? (
|
2023-04-06 23:11:29 +02:00
|
|
|
<Text>{t('pending', { countPendingApproval })}</Text>
|
2023-04-04 22:32:08 +02:00
|
|
|
) : (
|
2023-04-06 23:11:29 +02:00
|
|
|
<Text>{t('nonePending')}</Text>
|
2023-04-04 22:32:08 +02:00
|
|
|
)}
|
|
|
|
|
{data.map((item) => (
|
|
|
|
|
<Card pos="relative" withBorder>
|
|
|
|
|
<Flex justify="space-between" gap="md">
|
|
|
|
|
<Flex gap="md">
|
|
|
|
|
<Image
|
|
|
|
|
src={item.posterPath}
|
|
|
|
|
width={30}
|
|
|
|
|
height={50}
|
|
|
|
|
alt="poster"
|
|
|
|
|
radius="xs"
|
|
|
|
|
withPlaceholder
|
|
|
|
|
/>
|
|
|
|
|
<Stack spacing={0}>
|
|
|
|
|
<Group spacing="xs">
|
|
|
|
|
<Text>{item.airDate.split('-')[0]}</Text>
|
|
|
|
|
<MediaRequestStatusBadge status={item.status} />
|
|
|
|
|
</Group>
|
|
|
|
|
<Text
|
|
|
|
|
sx={{ cursor: 'pointer', '&:hover': { textDecoration: 'underline' } }}
|
|
|
|
|
lineClamp={1}
|
|
|
|
|
weight="bold"
|
|
|
|
|
component="a"
|
|
|
|
|
href={item.href}
|
|
|
|
|
>
|
|
|
|
|
{item.name}
|
|
|
|
|
</Text>
|
|
|
|
|
</Stack>
|
|
|
|
|
</Flex>
|
|
|
|
|
<Flex gap="xs">
|
2023-04-07 20:06:27 +02:00
|
|
|
<Image
|
|
|
|
|
src={item.userProfilePicture}
|
|
|
|
|
width={25}
|
|
|
|
|
height={25}
|
|
|
|
|
alt="requester avatar"
|
|
|
|
|
radius="xl"
|
|
|
|
|
withPlaceholder
|
|
|
|
|
/>
|
2023-04-04 22:32:08 +02:00
|
|
|
<Text
|
|
|
|
|
component="a"
|
|
|
|
|
href={item.userLink}
|
|
|
|
|
sx={{ cursor: 'pointer', '&:hover': { textDecoration: 'underline' } }}
|
|
|
|
|
>
|
|
|
|
|
{item.userName}
|
|
|
|
|
</Text>
|
|
|
|
|
</Flex>
|
|
|
|
|
</Flex>
|
|
|
|
|
|
|
|
|
|
<Image
|
|
|
|
|
src={item.backdropPath}
|
|
|
|
|
pos="absolute"
|
|
|
|
|
w="100%"
|
|
|
|
|
h="100%"
|
|
|
|
|
opacity={0.1}
|
|
|
|
|
top={0}
|
|
|
|
|
left={0}
|
|
|
|
|
style={{ pointerEvents: 'none' }}
|
|
|
|
|
/>
|
|
|
|
|
</Card>
|
|
|
|
|
))}
|
|
|
|
|
</Stack>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const MediaRequestStatusBadge = ({ status }: { status: MediaRequestStatus }) => {
|
2023-04-06 23:11:29 +02:00
|
|
|
const { t } = useTranslation('modules/media-requests-list');
|
2023-04-04 22:32:08 +02:00
|
|
|
switch (status) {
|
|
|
|
|
case MediaRequestStatus.Approved:
|
2023-04-06 23:11:29 +02:00
|
|
|
return <Badge color="green">{t('state.approved')}</Badge>;
|
2023-04-04 22:32:08 +02:00
|
|
|
case MediaRequestStatus.Declined:
|
2023-04-06 23:11:29 +02:00
|
|
|
return <Badge color="red">{t('state.declined')}</Badge>;
|
2023-04-04 22:32:08 +02:00
|
|
|
case MediaRequestStatus.PendingApproval:
|
2023-04-06 23:11:29 +02:00
|
|
|
return <Badge color="orange">{t('state.pendingApproval')}</Badge>;
|
2023-04-04 22:32:08 +02:00
|
|
|
default:
|
|
|
|
|
return <></>;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default definition;
|