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

View file

@ -76,4 +76,4 @@ export function getContentTags (contentPath) {
}
return allTags
}
}