1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-05 04:51:30 +01:00
.profile/utils/blog.ts

66 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-07-01 23:12:47 +02:00
import fs from 'node:fs'
import path from 'node:path'
2021-11-08 15:10:26 +01:00
import { cache } from 'react'
2021-11-08 15:10:26 +01:00
import matter from 'gray-matter'
export const POSTS_PATH = path.join(process.cwd(), 'posts')
2021-11-08 15:10:26 +01:00
export interface FrontMatter {
title: string
description: string
isPublished: boolean
publishedOn: string
}
export interface Post {
2021-11-08 15:10:26 +01:00
frontmatter: FrontMatter
slug: string
content: string
}
export const getPosts = cache(async (): Promise<Post[]> => {
const posts = await fs.promises.readdir(POSTS_PATH)
2021-11-08 15:10:26 +01:00
const postsWithTime = await Promise.all(
posts.map(async (postFilename) => {
2022-08-27 02:30:55 +02:00
const [slug, extension] = postFilename.split('.')
2023-01-10 23:56:46 +01:00
if (slug == null || extension == null) {
throw new Error('Invalid postFilename.')
}
2022-08-27 02:30:55 +02:00
const blogPostPath = path.join(POSTS_PATH, `${slug}.${extension}`)
2021-11-08 15:10:26 +01:00
const blogPostContent = await fs.promises.readFile(blogPostPath, {
encoding: 'utf8'
})
const { data, content } = matter(blogPostContent) as unknown as {
data: FrontMatter
content: string
}
2021-11-08 15:10:26 +01:00
const date = new Date(data.publishedOn)
return {
slug,
content,
frontmatter: data,
time: date.getTime()
}
})
)
const postsWithTimeSorted = postsWithTime
2022-09-04 20:40:58 +02:00
.filter((post) => {
return post.frontmatter.isPublished
})
.sort((a, b) => {
return b.time - a.time
})
2021-11-08 15:10:26 +01:00
return postsWithTimeSorted
})
2021-11-08 15:10:26 +01:00
export const getPostBySlug = cache(
async (slug: string): Promise<Post | undefined> => {
const posts = await getPosts()
const post = posts.find((post) => {
return post.slug === slug
})
return post
2021-11-08 15:10:26 +01:00
}
)