aboutsummaryrefslogtreecommitdiff
path: root/utils/Posts.tsx
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-07-21 04:42:31 -0500
committerFurkan Sahin <furkan-dev@proton.me>2026-02-20 13:28:04 -0500
commit711eb24cb0b8c03bc43edffd082e91d970fc3dc9 (patch)
tree7f8c09ab3dd138670bd5bc3a67ad7a117c94c55a /utils/Posts.tsx
parent745f7a50ebe2583b9badd371fc2a6f394148c88b (diff)
Added a timestamp and sorts posts by timestamp
Diffstat (limited to 'utils/Posts.tsx')
-rw-r--r--utils/Posts.tsx16
1 files changed, 14 insertions, 2 deletions
diff --git a/utils/Posts.tsx b/utils/Posts.tsx
index d82467e..2a69629 100644
--- a/utils/Posts.tsx
+++ b/utils/Posts.tsx
@@ -7,6 +7,7 @@ marked.setOptions(markedOptions);
interface PostMetadata {
name: string;
+ lastUpdated: string;
}
interface Post {
@@ -45,9 +46,20 @@ async function getPostFromDirectory(directory : string) {
async function getPosts() : Promise<Post[]> {
const directories = await fs.readdir(POST_PATH);
- const posts = directories.map(getPostFromDirectory);
+ const posts = await Promise.all(directories.map(getPostFromDirectory));
- return await Promise.all(posts);
+ return posts.sort((post_a, post_b) => {
+ const a = new Date(post_a.meta.lastUpdated);
+ const b = new Date(post_b.meta.lastUpdated);
+
+ if(a === b)
+ return 0;
+
+ if(a > b)
+ return -1;
+
+ return 1;
+ });
}
async function getMarkdown(post : Post) : Promise<string> {