blob: 020825ac6a9ed85951ba24f2f2bf7a7d64e02d26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
import { faCheck, faCircle, faTrash } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useMutation } from "urql";
import type { GetFeedsQuery } from "../graphql/generated/graphql";
import {
MarkFeedReadDocument,
MarkFeedUnreadDocument,
UnsubscribeFeedDocument,
} from "../graphql/generated/graphql";
type Feed = NonNullable<GetFeedsQuery["feeds"]>[0];
interface Props {
feed: Feed;
onFeedUnsubscribed?: () => void;
}
export function FeedItem({ feed, onFeedUnsubscribed }: Props) {
const [, markFeedRead] = useMutation(MarkFeedReadDocument);
const [, markFeedUnread] = useMutation(MarkFeedUnreadDocument);
const [, unsubscribeFeed] = useMutation(UnsubscribeFeedDocument);
const handleMarkAllRead = async (feedId: string) => {
await markFeedRead({ id: feedId });
};
const handleMarkAllUnread = async (feedId: string) => {
await markFeedUnread({ id: feedId });
};
const handleUnsubscribeFeed = async (feedId: string) => {
const confirmed = window.confirm(
"Are you sure you want to unsubscribe from this feed?",
);
if (confirmed) {
await unsubscribeFeed({ id: feedId });
onFeedUnsubscribed?.();
}
};
return (
<div className="rounded-lg border border-gray-200 bg-white p-4 shadow-sm">
<div className="flex items-start justify-between">
<div className="flex-1">
<h3 className="text-lg font-semibold text-gray-900">{feed.title}</h3>
<p className="mt-1 text-sm text-gray-500">
<a href={feed.url} target="_blank" rel="noreferrer">
{feed.url}
</a>
</p>
<div className="mt-2 flex items-center gap-4 text-sm">
<span className="text-gray-400">
Last fetched: {new Date(feed.fetchedAt).toLocaleString()}
</span>
</div>
</div>
<div className="flex items-center gap-2">
<button
type="button"
onClick={() => handleMarkAllRead(feed.id)}
className="rounded p-2 text-gray-600 hover:bg-gray-100 hover:text-gray-900"
title="Mark all as read"
>
<FontAwesomeIcon icon={faCheck} />
</button>
<button
type="button"
onClick={() => handleMarkAllUnread(feed.id)}
className="rounded p-2 text-gray-600 hover:bg-gray-100 hover:text-gray-900"
title="Mark all as unread"
>
<FontAwesomeIcon icon={faCircle} />
</button>
<button
type="button"
onClick={() => handleUnsubscribeFeed(feed.id)}
className="rounded p-2 text-red-600 hover:bg-red-50 hover:text-red-700"
title="Unsubscribe from feed"
>
<FontAwesomeIcon icon={faTrash} />
</button>
</div>
</div>
</div>
);
}
|