From 81166e97994bb296b7edf3e249d9db1ea4fc8e36 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Wed, 13 Mar 2024 16:35:34 +0000 Subject: [PATCH] chore: format --- src/lib/content.js | 8 ++++---- src/pages/fun/[slug].js | 2 +- src/pages/fun/index.js | 2 +- src/pages/recipes/[slug].js | 2 +- src/pages/recipes/index.js | 2 +- src/pages/writing/[slug].js | 4 ++-- src/pages/writing/index.js | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lib/content.js b/src/lib/content.js index e11f710..38ff20a 100644 --- a/src/lib/content.js +++ b/src/lib/content.js @@ -22,7 +22,7 @@ export function getMarkdownEntry (path) { } } -export function getStaticEntryPaths(contentPath) { +export function getStaticEntryPaths (contentPath) { const entries = fs.readdirSync(contentPath, { withFileTypes: true }) const paths = entries.map((dirent) => ({ @@ -38,18 +38,18 @@ export function getStaticEntryPaths(contentPath) { } } -export function getStaticEntryProps(contentPath, { params }) { +export function getStaticEntryProps (contentPath, { params }) { const path = `${contentPath}/${params.slug}.md` const entry = getMarkdownEntry(path) return { props: { ...entry } } } -export function getStaticEntryListProps(contentPath, urlPrefix) { +export function getStaticEntryListProps (contentPath, urlPrefix) { const fun = fs.readdirSync(contentPath, { withFileTypes: true }) const entries = fun.map((dirent) => getMarkdownEntry(`${dirent.path}/${dirent.name}`) ) return { props: { entries, urlPrefix } } -} \ No newline at end of file +} diff --git a/src/pages/fun/[slug].js b/src/pages/fun/[slug].js index 477c63e..d62b691 100644 --- a/src/pages/fun/[slug].js +++ b/src/pages/fun/[slug].js @@ -3,7 +3,7 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' import Article from '@/components/Article/Article' import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content' -const CONTENT_PATH = "./content/fun" +const CONTENT_PATH = './content/fun' export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH) export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx) diff --git a/src/pages/fun/index.js b/src/pages/fun/index.js index 38c2ebf..7e15c39 100644 --- a/src/pages/fun/index.js +++ b/src/pages/fun/index.js @@ -3,7 +3,7 @@ import React from 'react' import Link from 'next/link' import { getStaticEntryListProps } from '@/lib/content' -export const getStaticProps = () => getStaticEntryListProps("./content/fun", "/fun/") +export const getStaticProps = () => getStaticEntryListProps('./content/fun', '/fun/') export default function Fun ({ entries, urlPrefix }) { return ( diff --git a/src/pages/recipes/[slug].js b/src/pages/recipes/[slug].js index 2ffa9e7..441692b 100644 --- a/src/pages/recipes/[slug].js +++ b/src/pages/recipes/[slug].js @@ -3,7 +3,7 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' import Article from '@/components/Article/Article' import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content' -const CONTENT_PATH = "./content/recipes" +const CONTENT_PATH = './content/recipes' export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH) export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx) diff --git a/src/pages/recipes/index.js b/src/pages/recipes/index.js index 6613f8a..00cf001 100644 --- a/src/pages/recipes/index.js +++ b/src/pages/recipes/index.js @@ -3,7 +3,7 @@ import React from 'react' import Link from 'next/link' import { getStaticEntryListProps } from '@/lib/content' -export const getStaticProps = () => getStaticEntryListProps("./content/recipes", "/recipes/") +export const getStaticProps = () => getStaticEntryListProps('./content/recipes', '/recipes/') export default function Recipes ({ entries, urlPrefix }) { return ( diff --git a/src/pages/writing/[slug].js b/src/pages/writing/[slug].js index 508138a..5f1fe7a 100644 --- a/src/pages/writing/[slug].js +++ b/src/pages/writing/[slug].js @@ -3,8 +3,8 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content' import Article from '@/components/Article/Article' -export const getStaticPaths = () => getStaticEntryPaths("./content/writing") -export const getStaticProps = (ctx) => getStaticEntryProps("./content/writing", ctx) +export const getStaticPaths = () => getStaticEntryPaths('./content/writing') +export const getStaticProps = (ctx) => getStaticEntryProps('./content/writing', ctx) export default function WritingSingle ({ attributes, html }) { return ( diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js index 8f846cd..5bea89f 100644 --- a/src/pages/writing/index.js +++ b/src/pages/writing/index.js @@ -3,7 +3,7 @@ import React from 'react' import Link from 'next/link' import { getStaticEntryListProps } from '@/lib/content' -export const getStaticProps = () => getStaticEntryListProps("./content/writing", "/writing/") +export const getStaticProps = () => getStaticEntryListProps('./content/writing', '/writing/') export default function Writing ({ entries, urlPrefix }) { return (