aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/atoms/articles.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/atoms/articles.ts')
-rw-r--r--frontend/src/atoms/articles.ts46
1 files changed, 46 insertions, 0 deletions
diff --git a/frontend/src/atoms/articles.ts b/frontend/src/atoms/articles.ts
new file mode 100644
index 0000000..46c57a4
--- /dev/null
+++ b/frontend/src/atoms/articles.ts
@@ -0,0 +1,46 @@
+import type { InfiniteData } from "@tanstack/query-core";
+import { atom } from "jotai";
+import { atomWithInfiniteQuery } from "jotai-tanstack-query";
+import type { components } from "../api/generated";
+import { api } from "../services/api-client";
+
+type ArticleConnection = components["schemas"]["ArticleConnection"];
+
+export const articleViewAtom = atom<"read" | "unread">("unread");
+export const articleFeedFilterAtom = atom<string | null>(null);
+
+export const articlesInfiniteAtom = atomWithInfiniteQuery<
+ ArticleConnection,
+ Error,
+ InfiniteData<ArticleConnection, string | null>,
+ string[],
+ string | null
+>((get) => {
+ const view = get(articleViewAtom);
+ const feedId = get(articleFeedFilterAtom);
+
+ return {
+ queryKey: ["articles", view, feedId ?? "all"],
+ queryFn: async ({ pageParam }) => {
+ const query: { feedId?: string; after?: string } = {};
+ if (feedId) query.feedId = feedId;
+ if (pageParam) query.after = pageParam;
+
+ if (view === "read") {
+ const { data } = await api.GET("/api/articles/read", {
+ params: { query },
+ });
+ return data ?? { articles: [], pageInfo: { hasNextPage: false } };
+ }
+ const { data } = await api.GET("/api/articles/unread", {
+ params: { query },
+ });
+ return data ?? { articles: [], pageInfo: { hasNextPage: false } };
+ },
+ initialPageParam: null as string | null,
+ getNextPageParam: (lastPage: ArticleConnection) =>
+ lastPage.pageInfo.hasNextPage
+ ? (lastPage.pageInfo.endCursor ?? null)
+ : null,
+ };
+});