Tom Schindler

How to build a blog using Next.js and MDX

/

Preface

The packages to be used:

The repository for this tutorial:

https://github.com/tszhong0411/nextjs-mdx-blog

Demo

Online

Demo

How to create a blog

First, we create the Next.js project with the following command:

Terminal
yarn create next-app nextjs-mdx-blog
Terminal
yarn create next-app nextjs-mdx-blog

Next, create the following file:

  • components\Layout.js - Wrap all components in a container (optional, just the style)
  • date\blog\*.mdx - Blog Articles
  • lib\formatDate.js - Format the date as MM DD, YYYY
  • [slug].js - article page, using dynamic routes
components
Layout.js
data
blog
markdown.mdx
nextjs.mdx
react.mdx
lib
formatDate.js
mdx.js
pages
blog
[slug].js

How to handle Markdown files

First const rootconst root - the root directory, and the process.cwd()process.cwd() method returns the current working directory of the Node.js process.

lib/mdx.js
const root = process.cwd()
lib/mdx.js
const root = process.cwd()

Another variable POSTS_PATH for the path where the article files are stored.

lib/mdx.js
import path from 'path'
 
const POSTS_PATH = path.join(root, 'data', 'blog')
// Output: A:\nextjs-mdx-blog\data\blog
lib/mdx.js
import path from 'path'
 
const POSTS_PATH = path.join(root, 'data', 'blog')
// Output: A:\nextjs-mdx-blog\data\blog

Then use fs to read the contents of that directory, that is, all the file names under data\blog.

lib/mdx.js
import fs from 'fs'
 
export const allSlugs = fs.readdirSync(POSTS_PATH)
// Output: ['markdown.mdx', 'nextjs.mdx', 'react.mdx']
lib/mdx.js
import fs from 'fs'
 
export const allSlugs = fs.readdirSync(POSTS_PATH)
// Output: ['markdown.mdx', 'nextjs.mdx', 'react.mdx']

Then write a function to remove the file extension, which will be used later.

lib/mdx.js
export const formatSlug = (slug) => slug.replace(/\.mdx$/, '')
/**
 * Example: formatSlug('markdown.mdx')
 * Output: 'markdown'
 */
lib/mdx.js
export const formatSlug = (slug) => slug.replace(/\.mdx$/, '')
/**
 * Example: formatSlug('markdown.mdx')
 * Output: 'markdown'
 */

The next step is to get the article content by slug.

lib/mdx.js
export const getPostBySlug = async (slug) => {
  const postFilePath = path.join(POSTS_PATH, `${slug}.mdx`)
  // Output: A:\nextjs-mdx-blog\data\blog\slug.mdx
  const source = fs.readFileSync(postFilePath)
  // Return the file content
 
  const { content, data } = matter(source)
  /*
   * Example:
   *  ---
   *  title: Hello
   *  slug: home
   *  ---
   *  <h1>Hello world!</h1>
   *
   * Return:
   *  {
   *    content: '<h1>Hello world!</h1>',
   *    data: {
   *      title: 'Hello',
   *      slug: 'home'
   *    }
   *  }
   */
 
  const mdxSource = await serialize(content)
  // Put content to serialize (next-mdx-remote) to handle
 
  const frontMatter = {
    ...data,
    slug,
  }
  // Put the slug in the front matter as well, which will be used later
 
  return {
    source: mdxSource,
    frontMatter,
  }
}
lib/mdx.js
export const getPostBySlug = async (slug) => {
  const postFilePath = path.join(POSTS_PATH, `${slug}.mdx`)
  // Output: A:\nextjs-mdx-blog\data\blog\slug.mdx
  const source = fs.readFileSync(postFilePath)
  // Return the file content
 
  const { content, data } = matter(source)
  /*
   * Example:
   *  ---
   *  title: Hello
   *  slug: home
   *  ---
   *  <h1>Hello world!</h1>
   *
   * Return:
   *  {
   *    content: '<h1>Hello world!</h1>',
   *    data: {
   *      title: 'Hello',
   *      slug: 'home'
   *    }
   *  }
   */
 
  const mdxSource = await serialize(content)
  // Put content to serialize (next-mdx-remote) to handle
 
  const frontMatter = {
    ...data,
    slug,
  }
  // Put the slug in the front matter as well, which will be used later
 
  return {
    source: mdxSource,
    frontMatter,
  }
}

Then you can get all the articles to be displayed in the home page.

lib/mdx.js
export const getAllPosts = () => {
  const frontMatter = []
 
  allSlugs.forEach((slug) => {
    const source = fs.readFileSync(path.join(POSTS_PATH, slug), 'utf-8')
 
    const { data } = matter(source)
 
    frontMatter.push({
      ...data,
      slug: formatSlug(slug),
      date: new Date(data.date).toISOString(),
    })
  })
 
  return frontMatter.sort((a, b) => dateSortDesc(a.date, b.date))
}
 
// Sorted by date in descending order
const dateSortDesc = (a, b) => {
  if (a > b) return -1
  if (a < b) return 1
 
  return 0
}
lib/mdx.js
export const getAllPosts = () => {
  const frontMatter = []
 
  allSlugs.forEach((slug) => {
    const source = fs.readFileSync(path.join(POSTS_PATH, slug), 'utf-8')
 
    const { data } = matter(source)
 
    frontMatter.push({
      ...data,
      slug: formatSlug(slug),
      date: new Date(data.date).toISOString(),
    })
  })
 
  return frontMatter.sort((a, b) => dateSortDesc(a.date, b.date))
}
 
// Sorted by date in descending order
const dateSortDesc = (a, b) => {
  if (a > b) return -1
  if (a < b) return 1
 
  return 0
}

Formatting Date

lib/formatDate.js
export const formatDate = (date) =>
  new Date(date).toLocaleDateString('en', {
    year: 'numeric',
    month: 'long',
    day: 'numeric',
  })
/*
 * formatDate('2022-08-21T00:00:00Z')
 * Output: 'August 21, 2022'
 */
lib/formatDate.js
export const formatDate = (date) =>
  new Date(date).toLocaleDateString('en', {
    year: 'numeric',
    month: 'long',
    day: 'numeric',
  })
/*
 * formatDate('2022-08-21T00:00:00Z')
 * Output: 'August 21, 2022'
 */

Home page

pages/index.js
import { formatDate } from '../lib/formatDate'
import { getAllPosts } from '../lib/mdx'
 
import Link from 'next/link'
 
export default function Home({ posts }) {
  return (
    <>
      <h1 className='mb-8 text-6xl font-bold'>Blog</h1>
      <hr className='my-8' />
      <ul className='flex flex-col gap-3'>
        {posts.map(({ slug, title, summary, date }) => (
          <li key={slug}>
            <Link href={`/blog/${slug}`}>
              <a className='block rounded-lg border border-solid border-gray-300 p-6 shadow-md'>
                <div className='flex justify-between'>
                  <h2>{title}</h2>
                  <time dateTime={date}>{formatDate(date)}</time>
                </div>
                <p className='mt-4'>{summary}</p>
              </a>
            </Link>
          </li>
        ))}
      </ul>
    </>
  )
}
 
// Use getStaticProps to get all articles
export const getStaticProps = async () => {
  const posts = getAllPosts()
 
  return {
    props: {
      posts,
    },
  }
}
pages/index.js
import { formatDate } from '../lib/formatDate'
import { getAllPosts } from '../lib/mdx'
 
import Link from 'next/link'
 
export default function Home({ posts }) {
  return (
    <>
      <h1 className='mb-8 text-6xl font-bold'>Blog</h1>
      <hr className='my-8' />
      <ul className='flex flex-col gap-3'>
        {posts.map(({ slug, title, summary, date }) => (
          <li key={slug}>
            <Link href={`/blog/${slug}`}>
              <a className='block rounded-lg border border-solid border-gray-300 p-6 shadow-md'>
                <div className='flex justify-between'>
                  <h2>{title}</h2>
                  <time dateTime={date}>{formatDate(date)}</time>
                </div>
                <p className='mt-4'>{summary}</p>
              </a>
            </Link>
          </li>
        ))}
      </ul>
    </>
  )
}
 
// Use getStaticProps to get all articles
export const getStaticProps = async () => {
  const posts = getAllPosts()
 
  return {
    props: {
      posts,
    },
  }
}

Article Page

pages/[slug].js
import { formatDate } from '../../lib/formatDate'
import { allSlugs, formatSlug, getPostBySlug } from '../../lib/mdx'
 
import { MDXRemote } from 'next-mdx-remote'
 
export default function Blog({ post }) {
  const { title, date } = post.frontMatter
 
  return (
    <div>
      <h1 className='mb-2 text-6xl font-bold'>{title}</h1>
      <time dateTime={date} className='text-lg font-medium'>
        {formatDate(date)}
      </time>
      <hr className='my-8' />
      <article className='prose'>
        <MDXRemote {...post.source} />
      </article>
    </div>
  )
}
 
export const getStaticProps = async ({ params }) => {
  const post = await getPostBySlug(params.slug)
 
  return {
    props: {
      post,
    },
  }
}
 
export const getStaticPaths = async () => {
  const paths = allSlugs.map((slug) => ({
    params: {
      slug: formatSlug(slug),
    },
  }))
  /*
   * paths Output:
   *   [
   *     { params: { slug: 'markdown' } },
   *     { params: { slug: 'nextjs' } },
   *     { params: { slug: 'react' } }
   *   ]
   */
 
  return {
    paths,
    fallback: false,
  }
}
pages/[slug].js
import { formatDate } from '../../lib/formatDate'
import { allSlugs, formatSlug, getPostBySlug } from '../../lib/mdx'
 
import { MDXRemote } from 'next-mdx-remote'
 
export default function Blog({ post }) {
  const { title, date } = post.frontMatter
 
  return (
    <div>
      <h1 className='mb-2 text-6xl font-bold'>{title}</h1>
      <time dateTime={date} className='text-lg font-medium'>
        {formatDate(date)}
      </time>
      <hr className='my-8' />
      <article className='prose'>
        <MDXRemote {...post.source} />
      </article>
    </div>
  )
}
 
export const getStaticProps = async ({ params }) => {
  const post = await getPostBySlug(params.slug)
 
  return {
    props: {
      post,
    },
  }
}
 
export const getStaticPaths = async () => {
  const paths = allSlugs.map((slug) => ({
    params: {
      slug: formatSlug(slug),
    },
  }))
  /*
   * paths Output:
   *   [
   *     { params: { slug: 'markdown' } },
   *     { params: { slug: 'nextjs' } },
   *     { params: { slug: 'react' } }
   *   ]
   */
 
  return {
    paths,
    fallback: false,
  }
}

This way, the simple Blog is finished.

DEAKTIVIERT
TEILEN