BlogList updated

This commit is contained in:
Antonello Zanini
2022-11-18 16:58:08 +01:00
parent 9c3387c87a
commit 37e23c3932
11 changed files with 93 additions and 90 deletions

View File

@@ -1,12 +1,12 @@
import '../styles/globals.css'
import { Work_Sans } from '@next/font/google'
import "../styles/globals.css"
import { Work_Sans } from "@next/font/google"
// importing the Work Sans font with
// the Next.js 13 Font Optimization Feature
const workSans = Work_Sans({
weight: ['400', '700'],
style: ['normal', 'italic'],
subsets: ['latin'],
weight: ["400", "700"],
style: ["normal", "italic"],
subsets: ["latin"],
})
function MyApp({ Component, pageProps }) {

View File

@@ -1,5 +1,5 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
export default function handler(req, res) {
res.status(200).json({ name: 'John Doe' })
res.status(200).json({ name: "John Doe" })
}

View File

@@ -1,26 +1,16 @@
import Image from "next/image"
import matter from 'gray-matter'
import ReactMarkdown from 'react-markdown'
import matter from "gray-matter"
import ReactMarkdown from "react-markdown"
import glob from "glob"
import Layout from "../../components/Layout"
import styles from "../../styles/Blog.module.css"
const glob = require('glob')
import Layout from '../../components/Layout'
function reformatDate(fullDate) {
const date = new Date(fullDate)
return date.toDateString().slice(4)
}
export default function BlogTemplate({ frontmatter, markdownBody, siteTitle }) {
function reformatDate(fullDate) {
const date = new Date(fullDate)
return date.toDateString().slice(4)
}
// /*
// ** Odd fix to get build to run
// ** It seems like on first go the props
// ** are undefined — could be a Next bug?
// */
//
// if (!frontmatter) return <></>
return (
<Layout siteTitle={siteTitle}>
<article className={styles.blog}>
@@ -45,10 +35,15 @@ export default function BlogTemplate({ frontmatter, markdownBody, siteTitle }) {
)
}
export async function getStaticProps({ ...ctx }) {
const { slug } = ctx.params
const content = await import(`../../posts/${slug}.md`)
export async function getStaticProps(context) {
// extracting the slug from the context
const { slug } = context.params
const config = await import(`../../data/config.json`)
// retrieving the Markdown file associated to the slug
// and reading its data
const content = await import(`../../posts/${slug}.md`)
const data = matter(content.default)
return {
@@ -61,20 +56,21 @@ export async function getStaticProps({ ...ctx }) {
}
export async function getStaticPaths() {
//get all .md files in the posts dir
const blogs = glob.sync('posts/**/*.md')
// getting all .md files from the posts directory
const blogs = glob.sync("posts/**/*.md")
//remove path and extension to leave filename only
// converting the file names to their slugs
const blogSlugs = blogs.map(file =>
file
.split('/')[1]
.replace(/ /g, '-')
.split("/")[1]
.replace(/ /g, "-")
.slice(0, -3)
.trim()
)
// create paths with `slug` param
// creating a path for each of the `slug` parameter
const paths = blogSlugs.map(slug => `/blog/${slug}`)
return {
paths,
fallback: false,

View File

@@ -1,6 +1,6 @@
import matter from 'gray-matter'
import Layout from '../components/Layout'
import BlogList from '../components/BlogList'
import matter from "gray-matter"
import Layout from "../components/Layout"
import BlogList from "../components/BlogList"
const Index = props => {
return (
@@ -22,7 +22,7 @@ export async function getStaticProps() {
// getting the website config
const siteConfig = await import(`../data/config.json`)
const webpackContext = require.context('../posts', true, /\.md$/)
const webpackContext = require.context("../posts", true, /\.md$/)
// the list of file names contained
// inside the "posts" directory
const keys = webpackContext.keys()
@@ -34,10 +34,10 @@ export async function getStaticProps() {
// dynamically creating the post slug
// from file name
const slug = key
.replace(/^.*[\\\/]/, '')
.split('.')
.replace(/^.*[\\\/]/, "")
.split(".")
.slice(0, -1)
.join('.')
.join(".")
// getting the .md file value associated
// with the current file name

View File

@@ -1,6 +1,6 @@
import Layout from '../components/Layout'
import matter from 'gray-matter'
import ReactMarkdown from 'react-markdown'
import Layout from "../components/Layout"
import matter from "gray-matter"
import ReactMarkdown from "react-markdown"
import styles from "../styles/Info.module.css"
export default function Info({ frontmatter, markdownBody, title }) {