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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
import { faCheck, faCircle, faTrash } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useMutation, useQuery } from "urql";
import {
GetFeedsDocument,
MarkFeedReadDocument,
MarkFeedUnreadDocument,
UnsubscribeFeedDocument,
} from "../graphql/generated/graphql";
interface Props {
onFeedUnsubscribed?: () => void;
}
export function FeedList({ onFeedUnsubscribed }: Props) {
const [{ data, fetching, error }] = useQuery({
query: GetFeedsDocument,
});
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?.();
}
};
if (fetching) return <div className="p-4">Loading feeds...</div>;
if (error)
return <div className="p-4 text-red-600">Error: {error.message}</div>;
if (!data?.feeds || data.feeds.length === 0) {
return <div className="p-4 text-gray-500">No feeds added yet.</div>;
}
return (
<div className="space-y-4 p-4">
{data.feeds.map((feed) => {
return (
<div
key={feed.id}
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>
);
})}
</div>
);
}
|