oceanprotocol/market

View on GitHub
src/@utils/markdownPages.tsx

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import fs from 'fs'
import { join } from 'path'
import matter from 'gray-matter'

//
// Next.js specifics to be used in getStaticProps / getStaticPaths
// to automatically generate pages from Markdown files in `src/pages/[slug].tsx`.
//
// const pagesDirectory = join(process.cwd(), 'content', 'pages')
const pagesDirectory = './content/pages'
export interface PageData {
  slug: string
  frontmatter: { [key: string]: any }
  content: string
}

export function getPageBySlug(slug: string, subDir?: string): PageData {
  const realSlug = slug.replace(/\.md$/, '')
  const fullPath = subDir
    ? join(pagesDirectory, subDir, `${realSlug}.md`)
    : join(pagesDirectory, `${realSlug}.md`)
  const fileContents = fs.readFileSync(fullPath, 'utf8')
  const { data, content } = matter(fileContents)

  return { slug: realSlug, frontmatter: { ...data }, content }
}

export function getAllPages(subDir?: string): PageData[] {
  const slugs = fs
    .readdirSync(join(pagesDirectory, subDir || ''))
    .filter((slug) => slug.includes('.md'))
  const pages = slugs.map((slug) => getPageBySlug(slug, subDir))

  return pages
}