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,40 +19,39 @@ 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 === "/";
return path === '/'
}
function isBasePage (path) {
return path.split("/").length === 2;
return path.split('/').length === 2
}
function isArticle (path) {
return path.startsWith("/writing/");
return path.startsWith('/writing/')
}
function getArticleAttibutes (path) {
@ -61,11 +60,11 @@ function getArticleAttibutes(path) {
})
// @ts-ignore
const { attributes } = fm(fileContents);
const { attributes } = fm(fileContents)
return {
...attributes,
pubdate: attributes.pubdate?.toISOString() ?? null,
moddate: attributes.moddate?.toISOString() ?? null
};
}
}