File size: 2,096 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
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,
  };
};