forked from chakra-ui/chakra-ui-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontentlayer.config.ts
160 lines (152 loc) · 3.95 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
import {
ComputedFields,
defineDocumentType,
makeSource,
} from 'contentlayer/source-files'
import remarkEmoji from 'remark-emoji'
import remarkGfm from 'remark-gfm'
import remarkSlug from 'remark-slug'
import siteConfig from './configs/site-config'
import { getTableOfContents } from './src/utils/mdx-utils'
import { rehypeMdxCodeMeta } from './src/utils/rehype-code-meta'
const computedFields: ComputedFields = {
slug: {
type: 'string',
resolve: (doc) => `/${doc._raw.flattenedPath}`,
},
editUrl: {
type: 'string',
resolve: (doc) => `${siteConfig.repo.editUrl}/${doc._id}`,
},
}
const Guides = defineDocumentType(() => ({
name: 'Guide',
filePathPattern: 'guides/**/*.mdx',
bodyType: 'mdx',
fields: {
title: { type: 'string', required: true },
description: { type: 'string', required: true },
tags: { type: 'list', of: { type: 'string' } },
author: { type: 'string' },
},
computedFields: {
...computedFields,
frontMatter: {
type: 'json',
resolve: (doc) => ({
title: doc.title,
description: doc.description,
tags: doc.tags,
author: doc.author,
slug: `/${doc._raw.flattenedPath}`,
headings: getTableOfContents(doc.body.raw),
}),
},
},
}))
const Blogs = defineDocumentType(() => ({
name: 'Blog',
filePathPattern: 'blog/**/*.mdx',
bodyType: 'mdx',
fields: {
title: { type: 'string', required: true },
description: { type: 'string', required: true },
author: { type: 'string' },
publishedDate: { type: 'string' },
},
computedFields: {
...computedFields,
frontMatter: {
type: 'json',
resolve: (doc) => ({
publishedDate: {
raw: doc.publishedDate,
iso: new Date(doc.publishedDate).toISOString(),
text: new Date(doc.publishedDate).toDateString(),
},
author: doc.author,
title: doc.title,
description: doc.description,
slug: `/${doc._raw.flattenedPath}`,
}),
},
},
}))
const Doc = defineDocumentType(() => ({
name: 'Doc',
filePathPattern: 'docs/**/*.mdx',
bodyType: 'mdx',
fields: {
title: { type: 'string', required: true },
package: { type: 'string' },
description: { type: 'string', required: true },
image: { type: 'string' },
version: { type: 'string' },
author: { type: 'string' },
},
computedFields: {
...computedFields,
frontMatter: {
type: 'json',
resolve: (doc) => ({
title: doc.title,
package: doc.package,
description: doc.description,
image: doc.image,
version: doc.version,
slug: `/${doc._raw.flattenedPath}`,
headings: getTableOfContents(doc.body.raw),
}),
},
},
}))
const FAQ = defineDocumentType(() => ({
name: 'FAQ',
filePathPattern: 'faq/*.mdx',
bodyType: 'mdx',
fields: {
title: { type: 'string', required: true },
description: { type: 'string', required: true },
},
computedFields: {
...computedFields,
frontMatter: {
type: 'json',
resolve: (doc) => ({
title: doc.title,
description: doc.description,
slug: `/${doc._raw.flattenedPath}`,
headings: getTableOfContents(doc.body.raw),
}),
},
},
}))
const Changelog = defineDocumentType(() => ({
name: 'Changelog',
filePathPattern: 'changelog/*.mdx',
bodyType: 'mdx',
fields: {
title: { type: 'string', required: true },
description: { type: 'string', required: true },
slug: { type: 'string' },
},
computedFields: {
frontMatter: {
type: 'json',
resolve: (doc) => ({
title: doc.title,
description: doc.description,
slug: '/changelog',
}),
},
},
}))
const contentLayerConfig = makeSource({
contentDirPath: 'pages',
documentTypes: [Doc, Guides, FAQ, Changelog, Blogs],
mdx: {
rehypePlugins: [rehypeMdxCodeMeta],
remarkPlugins: [remarkSlug, remarkGfm, remarkEmoji],
},
})
export default contentLayerConfig