From 3b2e59b0a362d2421cc10fe024013db607e628b4 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Date: Fri, 21 Mar 2025 12:45:43 +0000 Subject: [PATCH] chore: refactor --- next-sitemap.config.cjs | 45 ++++++++++++++++++++--------------------- src/lib/content.js | 2 +- 2 files changed, 23 insertions(+), 24 deletions(-) diff --git a/next-sitemap.config.cjs b/next-sitemap.config.cjs index f98d6ea..0414816 100644 --- a/next-sitemap.config.cjs +++ b/next-sitemap.config.cjs @@ -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 - }; -} \ No newline at end of file + } +} diff --git a/src/lib/content.js b/src/lib/content.js index 8cafce5..28e3424 100644 --- a/src/lib/content.js +++ b/src/lib/content.js @@ -76,4 +76,4 @@ export function getContentTags (contentPath) { } return allTags -} \ No newline at end of file +}