-
Notifications
You must be signed in to change notification settings - Fork 258
/
contentlayer.config.ts
622 lines (581 loc) · 16.1 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
import { DEFAULT_LOCALE_EN, I18N_LOCALE_REGEX } from "./src/utils/constants";
import {
defineDocumentType,
makeSource,
type FieldDefs,
type ComputedFields,
} from "contentlayer2/source-files";
import {
computeSlugFromRawDocumentData,
getAllContentFiles,
throwIfAuthorDoesNotExist,
validatedImagePath,
} from "./src/utils/helpers";
import path from "path";
const DEFAULT_PRIORITY = 9999;
/**
* Standard content record fields
*/
const basicContentFields: FieldDefs = {
title: {
type: "string",
description: "The primary title of the individual piece of content",
required: true,
},
description: {
type: "string",
description:
"Brief description of the content (also used in the SEO metadata)",
required: false,
},
author: {
type: "string",
description: "Slug of the author that created this content",
required: false,
},
tags: {
type: "list",
of: { type: "string" },
description: "List of filterable tags for content",
required: false,
},
keywords: {
type: "list",
of: { type: "string" },
description:
"List of keywords for the content, primarily used for seo metadata",
required: false,
},
date: {
type: "date",
description: "The date this content was published",
required: false,
},
updatedDate: {
type: "date",
description: "The date this content was last updated",
required: false,
},
difficulty: {
type: "enum",
description: "Difficulty level of the content",
options: ["Intro", "Beginner", "Intermediate", "Expert"],
},
image: {
type: "string",
description:
"The primary image of the content (also used in the SEO metadata)",
required: false,
},
/**
* URL, link, and route information
*/
isExternal: {
type: "boolean",
description: "Is this content just a link to external content?",
default: false,
},
href: {
type: "string",
description: "Page route or absolute URL for this document",
required: false,
},
canonical: {
type: "string",
description: "Canonical url of the content",
required: false,
},
altRoutes: {
type: "list",
of: { type: "string" },
description:
"List of alternate routes that should redirect to this same document",
required: false,
},
/**
* Assorted metadata flags used for display and formatting
*/
featured: {
type: "boolean",
description: "Whether or not this content is featured",
required: false,
},
featuredPriority: {
type: "number",
description: "Sort priority for featured content displays",
default: 999,
},
metaOnly: {
type: "boolean",
description: "Whether or not this record is used for only metadata",
required: false,
default: false,
},
/**
* Custom fields that are used for the generated `nav.json` sidebar data
*/
sidebarLabel: {
type: "string",
description: "Custom sidebar label to use, instead of the document's title",
required: false,
},
sidebarSortOrder: {
type: "number",
description: "Sort order of the doc, relative to its siblings",
required: false,
},
hideTableOfContents: {
type: "boolean",
description: "Force hide the table of contents displayed on page",
required: false,
},
isSkippedInNav: {
type: "boolean",
description:
"Whether or not to skip this page when generating previous/next page routes on docs",
required: false,
default: false,
},
isHiddenInNavSidebar: {
type: "boolean",
description:
"Whether or not to hide this section in the DocNavSidebar (left-hand side) on docs",
required: false,
default: false,
},
/**
* Custom SEO specific details
*/
seoTitle: {
type: "string",
description: "Custom title to be used for SEO purposes",
required: false,
},
seoDescription: {
type: "string",
description:
"Custom description to be used for SEO purposes (recommended max of 155 characters)",
required: false,
},
};
/**
* Standard computed fields for all records
*
* note: changing these may warrant an update the the hacky custom `ComputedFieldsTypeHack` type
*/
const standardComputedFields: ComputedFields = {
locale: {
description: "Locale for the content",
type: "string",
resolve: record =>
I18N_LOCALE_REGEX.test(record._id)
? record._id.split(I18N_LOCALE_REGEX)[1]
: DEFAULT_LOCALE_EN,
},
slug: {
description: "Computed slug of the records, based on the file name",
type: "string",
resolve: record => computeSlugFromRawDocumentData(record._raw),
},
isExternal: {
description: "Is this content just a link to external content?",
type: "boolean",
resolve: record => {
if (!!record.href && record.href.startsWith("http")) {
return true;
}
return false;
},
},
href: {
description: "Computed href for the content",
type: "string",
resolve: record => {
if (!!record.href) {
return record.href.toString().toLowerCase();
}
const hrefBase = record._raw.flattenedPath.replace(I18N_LOCALE_REGEX, "");
return hrefBase
.replace(
/^(content\/?)?(developers\/?)?/gm,
// prepend the non-docs content
hrefBase.startsWith("docs") ? "/" : "/developers/",
)
.toLowerCase();
},
},
author: {
description: "Validated slug of the author that created this content",
type: "string",
resolve: record => {
if (!record?.author) return undefined;
throwIfAuthorDoesNotExist(record.author, "Author");
return record.author;
},
},
organization: {
description: "Validated slug of the organization the author is a member of",
type: "string",
resolve: record => {
if (!record?.organization) return undefined;
throwIfAuthorDoesNotExist(record.organization, "Organization");
return record.organization;
},
},
};
/**
* Content record schema for the Author metadata file
*
* File: `authors/{slug}.yml`
*/
export const AuthorRecord = defineDocumentType(() => ({
name: "AuthorRecord",
filePathPattern:
"{content/authors,/content/authors,i18n/**/content/authors}/*.yml",
computedFields: {
locale: standardComputedFields["locale"],
slug: standardComputedFields["slug"],
href: standardComputedFields["href"],
organization: standardComputedFields["organization"],
image: {
type: "string",
resolve: record => {
if (!record?.image) return undefined;
return validatedImagePath(record.image, "authors");
},
},
// set the default values to satisfy types
metaOnly: {
type: "boolean",
resolve: () => true,
},
isExternal: {
type: "boolean",
resolve: () => false,
},
featured: {
type: "boolean",
resolve: () => false,
},
featuredPriority: {
type: "number",
resolve: () => DEFAULT_PRIORITY,
},
},
fields: {
title: basicContentFields["title"],
image: basicContentFields["image"],
description: basicContentFields["description"],
website: {
type: "string",
description: "Website for this person",
required: false,
},
organization: {
type: "string",
description:
"Author slug of the organization the author is a member of (note: this is a nested author)",
required: false,
},
github: {
type: "string",
description: "GitHub username",
required: false,
},
twitter: {
type: "string",
description: "GitHub username",
required: false,
},
},
}));
/**
*
*/
/**
* Content record schema for Developer Resources
*/
export const ResourceRecord = defineDocumentType(() => ({
name: "ResourceRecord",
filePathPattern:
"{content/resources,/content/resources,i18n/**/content/resources}/**/*.{md,mdx}",
computedFields: standardComputedFields,
fields: {
// use the standard content fields
...basicContentFields,
// define custom fields for this specific content
repoUrl: {
type: "string",
description: "Repository URL for the developer resources",
required: false,
},
category: {
required: true,
type: "enum",
description: "General type of the resource (e.g. its broad category)",
options: ["documentation", "framework", "sdk"],
},
},
}));
/**
* Content record schema for Developer Guides
*/
export const GuideRecord = defineDocumentType(() => ({
name: "GuideRecord",
filePathPattern:
"{content/guides,/content/guides,i18n/**/content/guides}/**/*.{md,mdx}",
computedFields: standardComputedFields,
fields: basicContentFields,
}));
/**
* Content record schema for Developer Workshops
*/
export const WorkshopRecord = defineDocumentType(() => ({
name: "WorkshopRecord",
filePathPattern:
"{content/workshops,/content/workshops,i18n/**/content/workshops}/**/*.{md,mdx}",
computedFields: standardComputedFields,
fields: {
// use the standard content fields
...basicContentFields,
// define custom fields for this specific content
repoUrl: {
type: "string",
description: "Repository URL for this developer workshop",
required: true,
},
objectives: {
type: "list",
of: { type: "string" },
description: "List of objectives for this workshop",
required: true,
},
duration: {
type: "string",
description: "Estimated duration of this workshop",
required: true,
},
video: {
type: "string",
description: "Video recording of the workshop (if Available)",
required: false,
},
presentation: {
type: "string",
description: "Presentation for this workshop (if Available)",
required: false,
},
/**
* Author specific details
*/
authorDescription: {
type: "string",
description: "Brief description of the original author of this content",
required: false,
},
authorTwitterHandle: {
type: "string",
description: "Twitter handle of the original author of this content",
required: false,
},
authorGithubUsername: {
type: "string",
description: "GitHub username of the original author of this content",
required: false,
},
},
}));
/**
* Content record schema for the Course metadata file
*
* File: `courses/{course-name}/metadata.yml`
*/
export const CourseRecord = defineDocumentType(() => ({
name: "CourseRecord",
filePathPattern:
"{content/courses,/content/courses,i18n/**/content/courses}/**/metadata.yml",
computedFields: {
...standardComputedFields,
// courses get a custom href
href: {
description: "Computed href for a course",
type: "string",
resolve: record => {
if (!!record.href) {
return record.href.toString().toLowerCase();
}
return `/developers/courses/${computeSlugFromRawDocumentData(record._raw)}`;
},
},
// validate all lessons listed exist
lessons: {
description: "List of lesson 'slug's for this course",
type: "list",
of: { type: "string" },
resolve: record => {
if (!record?.lessons) return [];
// get the course slug from the format: `content/courses/{slug}`
const courseSlug = record._raw.sourceFileDir.match(
/^\/?((content|developers)\/courses)\/(.*)/i,
)?.[3];
if (!courseSlug) throw Error("Unable to parse course slug");
const lessonsDir = path.join(
path.resolve(),
"content/courses",
courseSlug,
);
const availableLessons: string[] = getAllContentFiles(
lessonsDir, // base search directory
false, // recursive search the directory
".md", // file extension
true, // remove the extension from each returned item in the array
);
for (const lesson of record.lessons) {
if (!availableLessons.includes(path.join(lessonsDir, lesson))) {
throw Error(
`Unable to locate lesson: '${lesson}' from the '${courseSlug}' course`,
);
}
}
return record.lessons;
},
},
},
fields: {
// use the standard content fields
...basicContentFields,
// define custom fields for this specific content
objectives: {
type: "list",
of: { type: "string" },
description: "List of objectives for the course",
required: false,
},
lessons: {
type: "list",
of: { type: "string" },
description: "List of lesson 'slugs' to be included in this course",
required: false,
},
// We want to order courses putting the most widely relevant ones first
// Like featuredPriority, but doesn't require featuring
priority: {
type: "number",
resolve: () => DEFAULT_PRIORITY,
},
// Some of the Unboxed courses are out of date, so they are hidden from the
// UI (their URLs remain available to editors and users that know them)
// while we get them updated.
isHidden: {
type: "boolean",
description:
"Hide this course from the course list (does not affect URL availability)",
required: false,
default: false,
},
},
}));
/**
* Content record schema a single Course Lesson
*/
export const CourseLessonRecord = defineDocumentType(() => ({
name: "CourseLessonRecord",
filePathPattern:
"{content/courses/**,/content/courses/**,i18n/**/content/courses/**}/**/*.md",
computedFields: standardComputedFields,
fields: {
// use the standard content fields
...basicContentFields,
// define custom fields for this specific content
objectives: {
type: "list",
of: { type: "string" },
description: "List of objectives for the Course Lesson",
required: false,
},
},
}));
/**
* Content record schema a single Solana documentation record
*/
export const CoreDocsRecord = defineDocumentType(() => ({
name: "CoreDocsRecord",
filePathPattern: "{docs,/docs,i18n/**/docs}/**/*.{md,mdx}",
computedFields: standardComputedFields,
fields: basicContentFields,
}));
/**
* Content record schema a single Solana RPC documentation record
*/
export const CoreRPCDocsRecord = defineDocumentType(() => ({
name: "CoreRPCDocsRecord",
filePathPattern: "{docs,/docs,i18n/**/docs}/rpc/**/*.{md,mdx}",
computedFields: standardComputedFields,
fields: basicContentFields,
}));
/**
* Content record schema a single Solana cookbook record
*/
export const CookbookRecord = defineDocumentType(() => ({
name: "CookbookRecord",
filePathPattern:
"{content/cookbook,/content/cookbook,i18n/**/content/cookbook}/**/*.{md,mdx}",
computedFields: standardComputedFields,
fields: basicContentFields,
}));
/**
* Simple record type to enable ignoring files in the contentlayer checks
* Note: This should be used sparingly (and normally only for readme files)
*
* Auto ignored documents:
* - readme.md
* - README.md
*/
export const IgnoredRecord = defineDocumentType(() => ({
name: "IgnoredRecord",
filePathPattern: `**/+(README|readme).md`,
}));
/**
* Export the contentlayer settings
*/
export default makeSource({
// set the base content directories to search for content records
contentDirPath: ".",
contentDirInclude: [
"i18n/**",
"docs/**",
"content/authors/**",
"content/guides/**",
"content/courses/**",
"content/resources/**",
"content/workshops/**",
"content/cookbook/**",
],
/**
* Listing of all supported content record types
*
* @dev when new content record types are added, ensure
* the `SimpleRecordGroupName` is updated accordingly
*/
documentTypes: [
IgnoredRecord,
AuthorRecord,
// core solana docs (including rpc docs)
CoreRPCDocsRecord,
// !note: rpc doc must be before regular docs
CoreDocsRecord,
// developer specific content
GuideRecord,
ResourceRecord,
WorkshopRecord,
// course specific content record types
CourseRecord,
CourseLessonRecord,
// Cookbook content
CookbookRecord,
],
// settings to force fail on bad data schema
onUnknownDocuments: "fail",
onMissingOrIncompatibleData: "fail",
onExtraFieldData: "fail",
});