Files
Homarr/src/widgets/rss/RssWidgetTile.tsx

264 lines
6.8 KiB
TypeScript
Raw Normal View History

2023-02-15 22:00:06 +01:00
import {
ActionIcon,
Badge,
Card,
Center,
createStyles,
Flex,
Group,
Image,
Loader,
LoadingOverlay,
MediaQuery,
ScrollArea,
Stack,
Text,
Title,
} from '@mantine/core';
import {
IconBulldozer,
IconCalendarTime,
IconClock,
IconCopyright,
IconRefresh,
IconRss,
IconSpeakerphone,
} from '@tabler/icons';
import { useQuery } from '@tanstack/react-query';
import dayjs from 'dayjs';
2023-02-15 22:00:06 +01:00
import { useTranslation } from 'next-i18next';
import Link from 'next/link';
import { useState } from 'react';
import { defineWidget } from '../helper';
import { IWidget } from '../widgets';
const definition = defineWidget({
id: 'rss',
icon: IconRss,
options: {
rssFeedUrl: {
type: 'text',
defaultValue: '',
},
},
gridstack: {
minWidth: 2,
minHeight: 2,
maxWidth: 12,
maxHeight: 12,
},
component: RssTile,
});
export type IRssWidget = IWidget<(typeof definition)['id'], typeof definition>;
interface RssTileProps {
widget: IRssWidget;
}
const useGetRssFeed = (feedUrl: string) =>
useQuery({
queryKey: ['rss-feed', feedUrl],
queryFn: async () => {
const response = await fetch('/api/modules/rss');
return response.json();
},
});
2023-02-15 22:00:06 +01:00
function RssTile({ widget }: RssTileProps) {
const { t } = useTranslation('modules/rss');
const { data, isLoading, isFetching, isError, refetch } = useGetRssFeed(
widget.properties.rssFeedUrl
);
const { classes } = useStyles();
const [loadingOverlayVisible, setLoadingOverlayVisible] = useState(false);
function formatDate(input: string): string {
// Parse the input date as a local date
const inputDate = dayjs(new Date(input));
const now = dayjs(); // Current date and time
const diffInHours = now.diff(inputDate, 'hour');
const diffInDays = now.diff(inputDate, 'day');
// If the input date is more than 2 weeks ago, return the formatted date
if (diffInDays > 14) {
return inputDate.format('DD MMM YYYY');
}
if (diffInDays >= 1) {
return `${diffInDays} days ago`;
}
return `${diffInHours} hours ago`;
}
2023-02-15 22:00:06 +01:00
if (!data || isLoading) {
return (
<Center h="100%">
2023-02-15 22:00:06 +01:00
<Loader />
</Center>
);
}
if (!data.success || isError) {
return (
<Center h="100%">
<Stack align="center">
<IconRss size={40} strokeWidth={1} />
<Title order={6}>{t('card.errors.general.title')}</Title>
<Text align="center">{t('card.errors.general.text')}</Text>
</Stack>
</Center>
);
}
return (
2023-02-28 20:35:57 +01:00
<Stack h="100%">
<LoadingOverlay visible={isFetching} />
<Flex align="end">{data.feed.title && <Title order={5}>{data.feed.title}</Title>}</Flex>
2023-02-15 22:00:06 +01:00
<ScrollArea className="scroll-area-w100" w="100%">
<Stack w="100%" spacing="xs">
{data.feed.items.map((item: any, index: number) => (
<Card
key={index}
withBorder
2023-02-28 20:35:57 +01:00
component={Link ?? 'div'}
2023-02-15 22:00:06 +01:00
href={item.link}
radius="md"
target="_blank"
w="100%"
>
{item.enclosure && (
// eslint-disable-next-line @next/next/no-img-element
<img
className={classes.backgroundImage}
src={item.enclosure.url ?? undefined}
alt="backdrop"
/>
)}
<Flex gap="xs">
{item.enclosure && (
<MediaQuery query="(max-width: 1200px)" styles={{ display: 'none' }}>
<Image
src={item.enclosure?.url ?? undefined}
width={140}
height={140}
radius="md"
withPlaceholder
/>
</MediaQuery>
)}
<Flex gap={2} direction="column" w="100%">
2023-02-15 22:00:06 +01:00
{item.categories && (
<Flex gap="xs" wrap="wrap" h={20} style={{ overflow: 'hidden' }}>
{item.categories.map((category: any, categoryIndex: number) => (
<Badge key={categoryIndex}>{category}</Badge>
2023-02-15 22:00:06 +01:00
))}
</Flex>
)}
<Text lineClamp={2}>{item.title}</Text>
<Text color="dimmed" size="xs" lineClamp={3}>
{item.content}
</Text>
{item.pubDate && <TimeDisplay date={formatDate(item.pubDate)} />}
2023-02-15 22:00:06 +01:00
</Flex>
</Flex>
</Card>
))}
</Stack>
</ScrollArea>
<Flex wrap="wrap" columnGap="md">
{data.feed.copyright && (
<Group spacing="sm">
<IconCopyright size={14} />
<Text color="dimmed" size="sm">
{data.feed.copyright}
</Text>
</Group>
)}
{data.feed.pubDate && (
<Group>
<IconCalendarTime size={14} />
<Text color="dimmed" size="sm">
{data.feed.pubDate}
</Text>
</Group>
)}
2023-02-28 20:35:57 +01:00
{data.feed.lastBuildDate && (
<Group>
<IconBulldozer size={14} />
<Text color="dimmed" size="sm">
{formatDate(data.feed.lastBuildDate)}
2023-02-28 20:35:57 +01:00
</Text>
</Group>
)}
2023-02-15 22:00:06 +01:00
{data.feed.feedUrl && (
<Group spacing="sm">
<IconSpeakerphone size={14} />
<Text
color="dimmed"
size="sm"
variant="link"
target="_blank"
component={Link}
href={data.feed.feedUrl}
>
Feed URL
</Text>
</Group>
)}
<ActionIcon
size="sm"
radius="xl"
pos="absolute"
right={10}
onClick={() => refetch()}
bottom={10}
styles={{
root: {
borderColor: 'red',
},
}}
>
{data.feed.image ? (
<Image src={data.feed.image.url} alt={data.feed.image.title} mx="auto" />
) : (
<IconRefresh />
)}
</ActionIcon>
2023-02-15 22:00:06 +01:00
</Flex>
</Stack>
);
}
const TimeDisplay = ({ date }: { date: string }) => (
<Group mt="auto" spacing="xs">
<IconClock size={14} />
<Text size="xs" color="dimmed">
{date}
</Text>
</Group>
);
const useStyles = createStyles(({ colorScheme }) => ({
backgroundImage: {
position: 'absolute',
width: '100%',
height: '100%',
filter: colorScheme === 'dark' ? 'blur(30px)' : 'blur(15px)',
transform: 'scaleX(-1)',
opacity: colorScheme === 'dark' ? 0.3 : 0.2,
transition: 'ease-in-out 0.2s',
'&:hover': {
opacity: colorScheme === 'dark' ? 0.4 : 0.3,
filter: 'blur(40px) brightness(0.7)',
},
},
}));
export default definition;