aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/helpers/rss.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/helpers/rss.ts')
-rw-r--r--src/utils/helpers/rss.ts25
1 files changed, 11 insertions, 14 deletions
diff --git a/src/utils/helpers/rss.ts b/src/utils/helpers/rss.ts
index d9c3b1e..82fa1ee 100644
--- a/src/utils/helpers/rss.ts
+++ b/src/utils/helpers/rss.ts
@@ -1,28 +1,25 @@
import { Feed } from 'feed';
import {
- getArticleFromRawData,
- getArticles,
- getTotalArticles,
+ convertPostPreviewToArticlePreview,
+ fetchPostsList,
+ fetchPostsCount,
} from '../../services/graphql';
-import type { Article } from '../../types';
+import type { ArticlePreview } from '../../types';
import { CONFIG } from '../config';
import { ROUTES } from '../constants';
/**
* Retrieve the data for all the articles.
*
- * @returns {Promise<Article[]>} - All the articles.
+ * @returns {Promise<ArticlePreview[]>} - All the articles.
*/
-const getAllArticles = async (): Promise<Article[]> => {
- const totalArticles = await getTotalArticles();
- const rawArticles = await getArticles({ first: totalArticles });
- const articles: Article[] = [];
+const getAllArticles = async (): Promise<ArticlePreview[]> => {
+ const totalPosts = await fetchPostsCount();
+ const posts = await fetchPostsList({ first: totalPosts });
- rawArticles.edges.forEach(async (edge) => {
- articles.push(await getArticleFromRawData(edge.node));
- });
-
- return articles;
+ return posts.edges.map((edge) =>
+ convertPostPreviewToArticlePreview(edge.node)
+ );
};
/**