rsnext/examples/cms-buttercms/pages/blog.js
Steven 4466ba436b
chore(examples): use default prettier for examples/templates (#60530)
## Description
This PR ensures that the default prettier config is used for examples
and templates.

This config is compatible with `prettier@3` as well (upgrading prettier
is bigger change that can be a future PR).

## Changes
- Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will
be needed upgrading to prettier@3)
- Added `examples/.prettierrc.json` with default config (this will
change every example)
- Added `packages/create-next-app/templates/.prettierrc.json` with
default config (this will change every template)

## Related

- Fixes #54402
- Closes #54409
2024-01-11 16:01:44 -07:00

66 lines
1.8 KiB
JavaScript

import Link from "next/link";
import camelcaseKeys from "camelcase-keys";
import PostsList from "@/components/blog/posts-list";
import { getPostsData, getCategories } from "@/lib/api";
import CategoriesWidget from "@/components/blog/categories-widget";
import SearchWidget from "@/components/blog/search-widget";
export default function Blog({ posts, categories }) {
return (
<>
<section id="blog-roll" className="blog-roll-nav">
<div className="container">
<div className="row justify-content-center">
<div className="col-12">
<div className="section-title text-center">
<h2>All Blog Posts</h2>
<ul className="breadcrumb-nav">
<li>
<Link href="/">Home</Link>
</li>
<li>All blog posts</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section className="blog-posts">
<div className="container">
<div className="row justify-content-center">
<PostsList posts={posts} />
<aside className="col-12 col-lg-4">
<SearchWidget />
<CategoriesWidget categories={categories} />
</aside>
</div>
</div>
</section>
</>
);
}
export async function getStaticProps() {
const butterToken = process.env.NEXT_PUBLIC_BUTTER_CMS_API_KEY;
if (butterToken) {
try {
const blogPosts = (await getPostsData()).posts;
const categories = await getCategories();
return { props: { posts: camelcaseKeys(blogPosts), categories } };
} catch (e) {
console.log("Could not get posts", e);
return {
props: { posts: [], categories: [] },
};
}
}
return { props: { posts: [], categories: [] } };
}