Rename to getPosts from getAllPosts

This commit is contained in:
prototypa
2022-08-19 03:40:26 -04:00
parent d8481a0637
commit 78e0507970

25
src/utils/getPosts.js Normal file
View File

@@ -0,0 +1,25 @@
import { getNormalizedPost } from "~/utils/getNormalizedPost";
const load = async function () {
const posts = import.meta.glob("../data/posts/**/*.{md,mdx}", {
eager: true,
});
const normalizedPosts = Object.keys(posts).map(async (key) => {
const post = await posts[key];
return await getNormalizedPost(post);
});
const results = (await Promise.all(normalizedPosts)).sort(
(a, b) => new Date(b.pubDate).valueOf() - new Date(a.pubDate).valueOf()
);
return results;
};
let _posts;
export const getPosts = async () => {
_posts = _posts || load();
return await _posts;
};