-
Notifications
You must be signed in to change notification settings - Fork 0
/
contentlayer.config.ts
169 lines (159 loc) · 3.75 KB
/
contentlayer.config.ts
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
161
162
163
164
165
166
167
168
169
import {
defineDocumentType,
makeSource,
ComputedFields,
} from "contentlayer/source-files";
import readingTime from "reading-time";
import remarkGfm from "remark-gfm";
import rehypeSlug from "rehype-slug";
import rehypeCodeTitles from "rehype-code-titles";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import rehypePrism from "rehype-prism-plus";
import { remark } from "remark";
import strip from "remark-mdx-to-plain-text";
import statuses from "./data/statuses";
import tags from "./data/tags";
const computedFields: ComputedFields = {
readingTime: {
type: "json",
resolve: (doc: any) => readingTime(doc.body.raw),
},
bannerUrl: {
type: "nested",
resolve: (doc) => doc.banner.filePath.replace("../public", ""),
},
wordCount: {
type: "number",
resolve: (doc: any) => doc.body.raw.split(/\s+/gu).length,
},
slug: {
type: "string",
resolve: (doc: any) => `/${doc._raw.flattenedPath}`,
},
teaser: {
type: "string",
resolve: async (doc: any) => {
const length = 260;
const res = await remark().use(strip).process(doc.body.raw);
let contentText = (res.value as string)
.trim()
.replace(/\s+/g, " ")
.trim();
const excerpt = contentText.slice(0, length);
if (contentText.length > length) {
return excerpt.trim() + "…";
}
return excerpt;
},
},
};
export const HomePage = defineDocumentType(() => ({
name: "HomePage",
filePathPattern: `homepage/about.mdx`,
contentType: "mdx",
isSingleton: true,
fields: [],
}));
export const ColophonPage = defineDocumentType(() => ({
name: "ColophonPage",
filePathPattern: `colophon/content.mdx`,
contentType: "mdx",
isSingleton: true,
fields: [],
}));
export const Post = defineDocumentType(() => ({
name: "Post",
filePathPattern: `posts/*.mdx`,
contentType: "mdx",
fields: {
title: {
type: "string",
description: "The title of the post",
required: true,
},
subtitle: {
type: "string",
description: "The subtitle of the post",
required: false,
},
description: {
type: "string",
description: "Description of the post",
required: true,
},
status: {
type: "enum",
description: "The status of the post",
required: false,
options: Object.keys(statuses),
},
date: {
type: "date",
description: "The date of the post",
required: true,
},
lastUpdated: {
type: "date",
description: "The date the post was last updated",
required: false,
},
banner: {
type: "image",
description: "The banner image of the post",
required: true,
},
tags: {
type: "list",
description: "The tags of the post",
required: true,
of: {
type: "enum",
options: Object.keys(tags),
},
},
draft: {
type: "boolean",
description: "Whether the post is a draft",
default: false,
required: false,
},
},
computedFields,
}));
export const NowPost = defineDocumentType(() => ({
name: "NowPost",
filePathPattern: `now/*.mdx`,
contentType: "mdx",
fields: {
title: {
type: "string",
description: "The title of the post",
required: true,
},
date: {
type: "date",
description: "The date of the post",
required: true,
},
},
}));
export default makeSource({
contentDirPath: "data",
documentTypes: [Post, HomePage, NowPost, ColophonPage],
mdx: {
remarkPlugins: [remarkGfm],
rehypePlugins: [
rehypeSlug,
rehypeCodeTitles,
rehypePrism,
[
rehypeAutolinkHeadings,
{
properties: {
className: ["anchor"],
},
},
],
],
},
});