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 Image from 'next/image'
import Link from 'next/link' import Link from 'next/link'
import React from 'react' import React from 'react'
import style from "./Book.module.css"; import style from './Book.module.css'
import ExternalLink from '../ExternalLink/ExternalLink' import ExternalLink from '../ExternalLink/ExternalLink'
function Book({ attributes, html }) { function Book ({ attributes, html }) {
return ( return (
<> <>
<h1>{attributes.title}<br /><small>by {attributes.author}</small></h1> <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) { for (const entry of entries) {
if (!entry.attributes.tags) { continue } if (!entry.attributes.tags) { continue }
const tags = entry.attributes.tags; const tags = entry.attributes.tags
for (const tag of tags) { for (const tag of tags) {
allTags[tag] = !allTags[tag] ? 1 : allTags[tag] + 1 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 * Silliness to make sure dates don't get passed to the
* page function below as [object Object] * page function below as [object Object]
* @param {*} obj * @param {*} obj
* @returns * @returns
*/ */
export function stringifyAndParse(obj) { export function stringifyAndParse (obj) {
return JSON.parse(JSON.stringify(obj)); return JSON.parse(JSON.stringify(obj))
} }

View file

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

View file

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

View file

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