chore: refactor

This commit is contained in:
Aaron Yarborough 2025-03-21 12:45:43 +00:00
parent 943e1ad4cf
commit 3b2e59b0a3
2 changed files with 23 additions and 24 deletions

View file

@ -1,5 +1,5 @@
const fs = require('fs'), const fs = require('fs')
fm = require('front-matter') const fm = require('front-matter')
/** @type {import('next-sitemap').IConfig} */ /** @type {import('next-sitemap').IConfig} */
module.exports = { module.exports = {
@ -19,53 +19,52 @@ module.exports = {
transform: async (config, path) => { transform: async (config, path) => {
const metadata = { const metadata = {
loc: path loc: path
}; }
if (isHomepage(path)) { if (isHomepage(path)) {
metadata.priority = 1; metadata.priority = 1
} else if (isBasePage(path)) { } else if (isBasePage(path)) {
metadata.priority = 0.8; metadata.priority = 0.8
} else { } else {
if (isArticle(path)) { if (isArticle(path)) {
metadata.priority = 0.6; metadata.priority = 0.6
const attributes = getArticleAttibutes(`content${path}.md`); const attributes = getArticleAttibutes(`content${path}.md`)
if (!attributes) if (!attributes) { return null }
return null;
metadata.pubdate = attributes.pubdate ?? null; metadata.pubdate = attributes.pubdate ?? null
metadata.moddate = attributes.moddate ?? null; metadata.moddate = attributes.moddate ?? null
console.log("Calculated sitemap dates for article", path); console.log('Calculated sitemap dates for article', path)
} }
} }
return metadata; return metadata
} }
} }
function isHomepage(path) { function isHomepage (path) {
return path === "/"; return path === '/'
} }
function isBasePage(path) { function isBasePage (path) {
return path.split("/").length === 2; return path.split('/').length === 2
} }
function isArticle(path) { function isArticle (path) {
return path.startsWith("/writing/"); return path.startsWith('/writing/')
} }
function getArticleAttibutes(path) { function getArticleAttibutes (path) {
const fileContents = fs.readFileSync(path, { const fileContents = fs.readFileSync(path, {
encoding: 'utf-8' encoding: 'utf-8'
}) })
// @ts-ignore // @ts-ignore
const { attributes } = fm(fileContents); const { attributes } = fm(fileContents)
return { return {
...attributes, ...attributes,
pubdate: attributes.pubdate?.toISOString() ?? null, pubdate: attributes.pubdate?.toISOString() ?? null,
moddate: attributes.moddate?.toISOString() ?? null moddate: attributes.moddate?.toISOString() ?? null
}; }
} }