import fs from 'fs' import PageTitle from '@/components/PageTitle' import generateRss from '@/lib/generate-rss' import { MDXLayoutRenderer } from '@/components/MDXComponents' import { formatSlug, getAllFilesFrontMatter, getFileBySlug, getFiles } from '@/lib/mdx' const DEFAULT_LAYOUT = 'PostLayout' export async function getStaticPaths() { const posts = getFiles('blog') return { paths: posts.map((p) => ({ params: { slug: formatSlug(p).split('/'), }, })), fallback: false, } } export async function getStaticProps({ params }) { const allPosts = await getAllFilesFrontMatter('blog') const postIndex = allPosts.findIndex((post) => formatSlug(post.slug) === params.slug.join('/')) const prev = allPosts[postIndex + 1] || null const next = allPosts[postIndex - 1] || null const post = await getFileBySlug('blog', params.slug.join('/')) const authorList = post.frontMatter.authors || ['default'] const authorPromise = authorList.map(async (author) => { const authorResults = await getFileBySlug('authors', [author]) return authorResults.frontMatter }) const authorDetails = await Promise.all(authorPromise) // rss if (allPosts.length > 0) { const rss = generateRss(allPosts) fs.writeFileSync('./public/feed.xml', rss) } return { props: { post, authorDetails, prev, next } } } export default function Blog({ post, authorDetails, prev, next }) { const { mdxSource, toc, frontMatter } = post return ( <> {frontMatter.draft !== true ? ( ) : (
Under Construction{' '} 🚧
)} ) }