chore: format
This commit is contained in:
parent
c931533b9e
commit
81166e9799
7 changed files with 11 additions and 11 deletions
|
@ -22,7 +22,7 @@ export function getMarkdownEntry (path) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getStaticEntryPaths(contentPath) {
|
export function getStaticEntryPaths (contentPath) {
|
||||||
const entries = fs.readdirSync(contentPath, { withFileTypes: true })
|
const entries = fs.readdirSync(contentPath, { withFileTypes: true })
|
||||||
|
|
||||||
const paths = entries.map((dirent) => ({
|
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 path = `${contentPath}/${params.slug}.md`
|
||||||
const entry = getMarkdownEntry(path)
|
const entry = getMarkdownEntry(path)
|
||||||
|
|
||||||
return { props: { ...entry } }
|
return { props: { ...entry } }
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getStaticEntryListProps(contentPath, urlPrefix) {
|
export function getStaticEntryListProps (contentPath, urlPrefix) {
|
||||||
const fun = fs.readdirSync(contentPath, { withFileTypes: true })
|
const fun = fs.readdirSync(contentPath, { withFileTypes: true })
|
||||||
const entries = fun.map((dirent) =>
|
const entries = fun.map((dirent) =>
|
||||||
getMarkdownEntry(`${dirent.path}/${dirent.name}`)
|
getMarkdownEntry(`${dirent.path}/${dirent.name}`)
|
||||||
)
|
)
|
||||||
|
|
||||||
return { props: { entries, urlPrefix } }
|
return { props: { entries, urlPrefix } }
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
||||||
import Article from '@/components/Article/Article'
|
import Article from '@/components/Article/Article'
|
||||||
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
|
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
|
||||||
|
|
||||||
const CONTENT_PATH = "./content/fun"
|
const CONTENT_PATH = './content/fun'
|
||||||
|
|
||||||
export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH)
|
export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH)
|
||||||
export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx)
|
export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx)
|
||||||
|
|
|
@ -3,7 +3,7 @@ import React from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import { getStaticEntryListProps } from '@/lib/content'
|
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 }) {
|
export default function Fun ({ entries, urlPrefix }) {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -3,7 +3,7 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
||||||
import Article from '@/components/Article/Article'
|
import Article from '@/components/Article/Article'
|
||||||
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
|
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
|
||||||
|
|
||||||
const CONTENT_PATH = "./content/recipes"
|
const CONTENT_PATH = './content/recipes'
|
||||||
|
|
||||||
export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH)
|
export const getStaticPaths = () => getStaticEntryPaths(CONTENT_PATH)
|
||||||
export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx)
|
export const getStaticProps = (ctx) => getStaticEntryProps(CONTENT_PATH, ctx)
|
||||||
|
|
|
@ -3,7 +3,7 @@ import React from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import { getStaticEntryListProps } from '@/lib/content'
|
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 }) {
|
export default function Recipes ({ entries, urlPrefix }) {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -3,8 +3,8 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
||||||
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
|
import { getStaticEntryPaths, getStaticEntryProps } from '@/lib/content'
|
||||||
import Article from '@/components/Article/Article'
|
import Article from '@/components/Article/Article'
|
||||||
|
|
||||||
export const getStaticPaths = () => getStaticEntryPaths("./content/writing")
|
export const getStaticPaths = () => getStaticEntryPaths('./content/writing')
|
||||||
export const getStaticProps = (ctx) => getStaticEntryProps("./content/writing", ctx)
|
export const getStaticProps = (ctx) => getStaticEntryProps('./content/writing', ctx)
|
||||||
|
|
||||||
export default function WritingSingle ({ attributes, html }) {
|
export default function WritingSingle ({ attributes, html }) {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -3,7 +3,7 @@ import React from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import { getStaticEntryListProps } from '@/lib/content'
|
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 }) {
|
export default function Writing ({ entries, urlPrefix }) {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Add table
Reference in a new issue