rsnext/examples/cms-cosmic/lib/api.tsx
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

97 lines
2 KiB
TypeScript

import Cosmic from "cosmicjs";
import { PostType } from "interfaces";
import ErrorPage from "next/error";
const BUCKET_SLUG = process.env.COSMIC_BUCKET_SLUG;
const READ_KEY = process.env.COSMIC_READ_KEY;
const bucket = Cosmic().bucket({
slug: BUCKET_SLUG,
read_key: READ_KEY,
});
export const getPreviewPostBySlug = async (slug: string) => {
const params = {
query: {
slug,
type: "posts",
},
props: "slug",
status: "any",
};
try {
const data = await bucket.getObjects(params);
return data.objects[0];
} catch (err) {
// Don't throw if an slug doesn't exist
return <ErrorPage statusCode={err.status} />;
}
};
export const getAllPostsWithSlug = async () => {
const params = {
query: {
type: "posts",
},
props: "slug",
};
const data = await bucket.getObjects(params);
return data.objects;
};
export const getAllPostsForHome = async (
preview: boolean,
): Promise<PostType[]> => {
const params = {
query: {
type: "posts",
},
props: "title,slug,metadata,created_at",
sort: "-created_at",
...(preview && { status: "any" }),
};
const data = await bucket.getObjects(params);
return data.objects;
};
export const getPostAndMorePosts = async (
slug: string,
preview: boolean,
): Promise<{
post: PostType;
morePosts: PostType[];
}> => {
const singleObjectParams = {
query: {
slug,
type: "posts",
},
props: "slug,title,metadata,created_at",
...(preview && { status: "any" }),
};
const moreObjectParams = {
query: {
type: "posts",
},
limit: 3,
props: "title,slug,metadata,created_at",
...(preview && { status: "any" }),
};
let object;
try {
const data = await bucket.getObjects(singleObjectParams);
object = data.objects[0];
} catch (err) {
throw err;
}
const moreObjects = await bucket.getObjects(moreObjectParams);
const morePosts = moreObjects.objects
?.filter(({ slug: object_slug }) => object_slug !== slug)
.slice(0, 2);
return {
post: object,
morePosts,
};
};