chore: refactor

This commit is contained in:
Aaron Yarborough 2025-03-29 11:41:19 +00:00
parent 09bd28f64b
commit 01381d158d
6 changed files with 12 additions and 12 deletions

View file

@ -3,10 +3,10 @@ import { NextSeo } from 'next-seo'
import Image from 'next/image'
import Link from 'next/link'
import React from 'react'
import style from "./Book.module.css";
import style from './Book.module.css'
import ExternalLink from '../ExternalLink/ExternalLink'
function Book({ attributes, html }) {
function Book ({ attributes, html }) {
return (
<>
<h1>{attributes.title}<br /><small>by {attributes.author}</small></h1>

View file

@ -66,7 +66,7 @@ export function getContentTags (contentPath) {
for (const entry of entries) {
if (!entry.attributes.tags) { continue }
const tags = entry.attributes.tags;
const tags = entry.attributes.tags
for (const tag of tags) {
allTags[tag] = !allTags[tag] ? 1 : allTags[tag] + 1
}

View file

@ -11,9 +11,9 @@ export function formatDate (date) {
/**
* Silliness to make sure dates don't get passed to the
* page function below as [object Object]
* @param {*} obj
* @returns
* @param {*} obj
* @returns
*/
export function stringifyAndParse(obj) {
return JSON.parse(JSON.stringify(obj));
}
export function stringifyAndParse (obj) {
return JSON.parse(JSON.stringify(obj))
}

View file

@ -33,7 +33,7 @@ export default function Home ({ postEntries }) {
<section>
<h2>Recent posts</h2>
<StaticContentList entries={postEntries} urlPrefix='writing/' max={5}/>
<StaticContentList entries={postEntries} urlPrefix='writing/' max={5} />
</section>
</DefaultLayout>

View file

@ -5,8 +5,8 @@ import Book from '@/components/Book/Book'
import { stringifyAndParse } from '@/lib/helpers'
export const getStaticPaths = () => getStaticEntryPaths('./content/books')
export const getStaticProps = (ctx) =>
stringifyAndParse(getStaticEntryProps('./content/books', ctx));
export const getStaticProps = (ctx) =>
stringifyAndParse(getStaticEntryProps('./content/books', ctx))
export default function LibrarySingle ({ attributes, html }) {
return (

View file

@ -17,7 +17,7 @@ export const getStaticProps = () => {
props: {
bookEntries: stringifyAndParse(bookEntries)
}
};
}
}
export default function Library ({ bookEntries }) {