前提・実現したいこと
Next.jsでブログを作成しています。
カテゴリ別で投稿を一覧表示するページを作りたいのですが、動的ルーティングの方法がよくわからず詰まっています。
各投稿はMarkdownで書かれています。
Next.jsのチュートリアルを参照に、全投稿を一覧表示するページの作成は完了しました。
各Markdownのfrontmatterにカテゴリ名を記載し、そのカテゴリ名ごとに一覧ページを作りたいと思っています。
このケースの場合、getStaticPropsをどのように実装すれば良いのでしょうか。
ページ構成は以下のようになっています。
root
├ .next/
├ node_modules/
├ styles/
│ ├ globals.css
│ └ その他各CSS
├ pages/
│ ├ app.js
│ ├ 400.js
│ ├ api.js
│ ├ index.js
│ ├ posts/
│ ├ [id].js //全記事一覧ページ
│ └ category/
│ └ [categories].js //カテゴリ別一覧ページ
├ components/
│ ├ layout.js
│ ├ date.js
│ └ layout.module.css
├ lib/
│ └ post.js
├ public/
│ └ img
│ ├ favicon.ico
│ └ その他画像
├ package-lock.json
├ package.json
└ posts/
└ 各投稿(Markdown)
該当のソースコード
lib/posts.js
Javascript
1 2import fs from 'fs' 3import path from 'path' 4import matter from 'gray-matter' 5 6const postsDirectory = path.join(process.cwd(), 'posts') 7 8~省略~ 9 10export async function getAllPostCategories(id){ 11 const fullPath = path.join(postsDirectory, `${id}.md`) 12 const fileContents = fs.readFileSync(fullPath, 'utf8') 13 const matterResult = matter(fileContents) 14 const categoryNames = matterResult.category 15 return categoryNames.map(categoryName => { 16 const categoryNames = categoryNames 17 return { 18 params: { 19 category: categoryName 20 } 21 } 22 }) 23} 24
pages/posts/category/[category].js
Javascript
1import Layout from '../../../components/layout' 2import { getAllPostCategories } from '../../../lib/posts' 3 4export async function getStaticPaths(){ 5 const paths = getAllPostCategories() 6 return { 7 paths, 8 fallback: false 9 } 10} 11 12export default function Category(){ 13 return <Layout>...</Layout> 14} 15
posts内のMarkdown
Markdown
1--- 2title: '◯◯◯' 3date: '◯◯◯' 4category: 'カテゴリ1' 5--- 6 7本文
エラー
現在は以下のようなエラーが出ています。
Error: Invalid paths
value returned from getStaticPaths in /posts/category/[category].
paths
must be an array of strings or objects of shape { params: [key: string]: string }
よろしくお願いいたします。
あなたの回答
tips
プレビュー