aaronjy-me/src/lib/content.js
Aaron Yarborough 085bffee88 feat: tags page
2025-03-20 20:04:40 +00:00

79 lines
1.8 KiB
JavaScript

import fs from 'fs'
import fm from 'front-matter'
import showdown from 'showdown'
import { toSlug } from './helpers'
export function getMarkdownEntry (path) {
const fileContents = fs.readFileSync(path, {
encoding: 'utf-8'
})
const { attributes, body } = fm(fileContents)
const converter = new showdown.Converter({
tables: true,
tablesHeaderId: true
})
const html = converter.makeHtml(body)
const slug = toSlug(path.substring(path.lastIndexOf('/') + 1))
return {
attributes: {
...attributes,
pubdate: attributes.pubdate?.toUTCString() ?? null
},
html,
slug
}
}
export function getStaticEntryPaths (contentPath) {
const entries = fs.readdirSync(contentPath, { withFileTypes: true })
const paths = entries.map((dirent) => ({
params: {
slug: toSlug(dirent.name)
}
}))
return {
fallback: false,
paths
}
}
export function getStaticEntryProps (contentPath, { params }) {
const path = `${contentPath}/${params.slug}.md`
const entry = getMarkdownEntry(path)
const { attributes } = entry
return { props: { ...entry, attributes } }
}
export function getStaticEntries (contentPath) {
const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true })
return directoryItems.map((dirent) =>
getMarkdownEntry(`${dirent.path}/${dirent.name}`)
).sort((a, b) =>
new Date(b.attributes.pubdate).getTime() - new Date(a.attributes.pubdate).getTime()
)
}
export function getContentTags (contentPath) {
const allTags = {}
const entries = getStaticEntries(contentPath)
for (const entry of entries) {
if (!entry.attributes.tags) { continue }
const tags = entry.attributes.tags.split(', ')
for (const tag of tags) {
allTags[tag] = !allTags[tag] ? 1 : allTags[tag] + 1
}
}
return allTags
}