| import { useRouter } from "next/router"; |
| import ErrorPage from "next/error"; |
| import Container from "../../components/container"; |
| import PostBody from "../../components/post-body"; |
| import Header from "../../components/header"; |
| import PostHeader from "../../components/post-header"; |
| import Layout from "../../components/layout"; |
| import { getAllPostSlugsFromCms, getPostBySlugFromCms } from "../../lib/api"; |
| import PostTitle from "../../components/post-title"; |
| import Head from "next/head"; |
| import { CMS_NAME } from "../../lib/constants"; |
| import type PostType from "../../interfaces/post"; |
|
|
| type Props = { |
| post: PostType; |
| morePosts: PostType[]; |
| preview?: boolean; |
| }; |
|
|
| export default function Post({ post, morePosts, preview }: Props) { |
| const router = useRouter(); |
| if (!router.isFallback && !post?.slug) { |
| return <ErrorPage statusCode={404} />; |
| } |
| return ( |
| <Layout preview={preview}> |
| <Container> |
| <Header /> |
| {router.isFallback ? ( |
| <PostTitle>Loading…</PostTitle> |
| ) : ( |
| <> |
| <article className="mb-32"> |
| <Head> |
| <title> |
| {`${post.title} | Next.js Blog Example with ${CMS_NAME}`} |
| </title> |
| <meta property="og:image" content={post.ogImage.url} /> |
| </Head> |
| <PostHeader |
| title={post.title} |
| coverImage={post.coverImage} |
| date={post.date} |
| author={post.author} |
| /> |
| <PostBody content={post.content} /> |
| </article> |
| </> |
| )} |
| </Container> |
| </Layout> |
| ); |
| } |
|
|
| type Params = { |
| params: { |
| slug: string[]; |
| }; |
| }; |
|
|
| export async function getStaticProps({ params }: Params) { |
| debugger; |
| const post = await getPostBySlugFromCms("/" + params.slug.join("/")); |
|
|
| return { |
| props: { |
| post, |
| }, |
| }; |
| } |
|
|
| export async function getStaticPaths() { |
| const slugs = await getAllPostSlugsFromCms(); |
|
|
| return { |
| paths: slugs.map((slug) => { |
| return { |
| params: { |
| slug: slug.split("/").splice(1), |
| }, |
| }; |
| }), |
| fallback: false, |
| }; |
| } |
|
|