File size: 5,165 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | import Image from "next/image";
import Head from "next/head";
import Link from "next/link";
import { useRouter } from "next/router";
import ErrorPage from "next/error";
import camelcaseKeys from "camelcase-keys";
import { getPost, getPostsData, getCategories } from "@/lib/api";
import HumanDate from "@/components/human-date";
import CategoriesWidget from "@/components/blog/categories-widget";
import SearchWidget from "@/components/blog/search-widget";
import AuthorCard from "@/components/author-card";
import Preloader from "@/components/preloader";
export default function BlogPost({ post, categories }) {
const router = useRouter();
if (router.isFallback) {
return <Preloader />;
}
if (!post) {
return <ErrorPage statusCode={404} />;
}
return (
<>
<Head>
<meta charSet="utf-8" />
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
<title>{post.seoTitle}</title>
<meta name="description" content={post.metaDescription} />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="shortcut icon"
type="image/x-icon"
href="https://buttercms.com/static/v2/images/favicon.png"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content={post.url} />
<meta property="og:title" content={post.seoTitle} />
<meta property="og:image" content={post.featuredImage} />
<meta property="og:description" content={post.metaDescription} />
<meta name="twitter:site" content="@ButterCMS" />
<meta name="twitter:creator" content="@ButterCMS" />
<meta name="twitter:title" content="ButterCMS Blog" />
<meta name="twitter:description" content={post.metaDescription} />
</Head>
<section id="blog-header" className="single-post-nav">
<div className="container">
<div className="row justify-content-center">
<div className="col-12">
<div className="section-title text-center">
<h2>{post.title}</h2>
<ul className="breadcrumb-nav">
<li>
<Link href="/">Home</Link>
</li>
<li>
<Link href="/blog">Blog</Link>
</li>
<li>{post.title}</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section className="blog-post">
<div className="container">
<div className="row justify-content-center">
<div className="col-lg-8 col-md-12 col-12">
<div className="single-post">
<div className="single-post-meta">
<h2 className="single-post-header">{post.title}</h2>
<ul className="single-post-meta-info">
<li>
<AuthorCard author={post.author} />
</li>
<li>
<a>
<i className="lni lni-calendar"></i>{" "}
<HumanDate dateString={post.published} />
</a>
</li>
{post.tags.map((tag) => (
<li key={tag.slug}>
<Link href={`/blog/tag/${tag.slug}`}>
<i className="lni lni-tag"></i> {tag.name}
</Link>
</li>
))}
</ul>
</div>
{post.featuredImage && (
<div className="single-post-thumbnail">
<Image
src={post.featuredImage}
alt={post.featuredImageAlt}
layout="fill"
objectFit="cover"
/>
</div>
)}
<div
className="single-post-body prose"
dangerouslySetInnerHTML={{ __html: post.body }}
></div>
</div>
</div>
<aside className="col-12 col-lg-4">
<SearchWidget />
<CategoriesWidget categories={categories || []} />
</aside>
</div>
</div>
</section>
</>
);
}
export async function getStaticProps({ params }) {
try {
const post = await getPost(params.slug);
const categories = await getCategories();
return { props: { post: camelcaseKeys(post), categories } };
} catch (e) {
console.error(`Couldn't load post or categories data.`, e);
return {
notFound: true,
};
}
}
export async function getStaticPaths() {
const butterToken = process.env.NEXT_PUBLIC_BUTTER_CMS_API_KEY;
if (butterToken) {
try {
const posts = (await getPostsData()).posts;
return {
paths: posts.map((post) => `/blog/${post.slug}`),
fallback: true,
};
} catch (e) {
console.error(`Couldn't load posts.`, e);
}
}
return {
paths: [],
fallback: false,
};
}
|