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
|
import { useAtomValue, useSetAtom } from "jotai";
import { Suspense, useEffect } from "react";
import { useSearch } from "wouter";
import {
articleFeedFilterAtom,
articlesInfiniteAtom,
articleViewAtom,
} from "../atoms";
import { ArticleList } from "../components/ArticleList";
import { ErrorBoundary } from "../components/ErrorBoundary";
import { FeedSidebar } from "../components/FeedSidebar";
import { LoadingSpinner } from "../components/LoadingSpinner";
export function ReadArticles() {
const search = useSearch();
const params = new URLSearchParams(search);
const feedId = params.get("feed");
const setView = useSetAtom(articleViewAtom);
const setFeedFilter = useSetAtom(articleFeedFilterAtom);
useEffect(() => {
setView("read");
setFeedFilter(feedId);
}, [feedId, setView, setFeedFilter]);
return (
<div className="flex gap-8">
<ErrorBoundary>
<Suspense fallback={<LoadingSpinner />}>
<FeedSidebar basePath="/read" isReadView />
</Suspense>
</ErrorBoundary>
<div className="min-w-0 flex-1">
<ReadArticleList feedId={feedId} />
</div>
</div>
);
}
function ReadArticleList({ feedId }: { feedId: string | null }) {
const {
data,
isLoading,
isFetchingNextPage,
hasNextPage,
fetchNextPage,
error,
} = useAtomValue(articlesInfiniteAtom);
const articles = data?.pages.flatMap((page) => page.articles) ?? [];
if (isLoading) {
return (
<div className="py-8 text-center">
<p className="text-sm text-stone-400">Loading read articles...</p>
</div>
);
}
if (error) {
return (
<div className="rounded-lg bg-red-50 p-4 text-sm text-red-600">
Error: {error.message}
</div>
);
}
return (
<>
<div className="mb-6">
<h1 className="text-xl font-semibold text-stone-900">Read</h1>
{articles.length > 0 && (
<p className="mt-1 text-sm text-stone-400">
{articles.length}
{hasNextPage ? "+" : ""} article
{articles.length !== 1 ? "s" : ""}
</p>
)}
</div>
<ArticleList
articles={articles}
isReadView={true}
isSingleFeed={!!feedId}
hasNextPage={hasNextPage}
loadingMore={isFetchingNextPage}
onLoadMore={() => fetchNextPage()}
/>
</>
);
}
|