-
Notifications
You must be signed in to change notification settings - Fork 1
/
velite.config.ts
418 lines (374 loc) · 11.1 KB
/
velite.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
import slugify from "@sindresorhus/slugify";
import { Nodes } from "mdast";
import { Element, Root } from "hast";
import { Handler } from "mdast-util-to-hast";
import { MDXRemoteSerializeResult } from "next-mdx-remote";
import { serialize } from "next-mdx-remote/serialize";
import path from "path";
import { rehypeAccessibleEmojis } from "rehype-accessible-emojis";
import rehypeHighlight from "rehype-highlight";
import rehypeKatex from "rehype-katex";
import rehypeSlug from "rehype-slug";
import remarkGfm from "remark-gfm";
import remarkMath from "remark-math";
import remarkToc from "remark-toc";
import { getImgWidthAndHeightDuringBuild } from "src/lib/getImgWidthAndHeightDuringBuild";
import { Node, Pluggable } from "unified/lib";
import { visit } from "unist-util-visit";
import { defineConfig, s, ZodMeta } from "velite";
declare module "mdast" {
interface RootContentMap {
SimpleGallery: Node;
}
}
import { interactive } from "hast-util-interactive";
import { whitespace } from "hast-util-whitespace";
import { SKIP } from "unist-util-visit";
import { title } from "process";
import { MDXResult } from "src/@types";
const unknown = 1;
const containsImage = 2;
const containsOther = 3;
const rehypeUnwrapGalleries = () => {
return function (tree: Root) {
visit(tree, "element", function (node, index, parent) {
if (
node.tagName === "p" &&
parent &&
typeof index === "number" &&
applicable(node, false) === containsImage
) {
parent.children.splice(index, 1, ...node.children);
return [SKIP, index];
}
});
};
};
function applicable(node: Element, inLink: boolean): 1 | 2 | 3 {
let image: 1 | 2 | 3 = unknown;
let index = -1;
while (++index < node.children.length) {
const child = node.children[index];
if (child.type === "text" && whitespace(child.value)) {
// Whitespace is fine.
} else if (child.type === "element" && child.tagName === "SimpleGallery") {
image = containsImage;
} else if (!inLink && interactive(child)) {
// Cast as `interactive` is always `Element`.
const linkResult = applicable(child as Element, true);
if (linkResult === containsOther) {
return containsOther;
}
if (linkResult === containsImage) {
image = containsImage;
}
} else {
return containsOther;
}
}
return image;
}
function generateExcerpt(text: string, length: number): string {
const lines = text
.split("\n")
.filter((line) => !/^#/.test(line.trim()) || line === "");
const parts = lines.join(" ").split(/([.,!?])\s*/);
let excerpt = "";
for (let i = 0; i < parts.length - 1; i += 2) {
const sentence = parts[i] + parts[i + 1];
if (excerpt.length + sentence.length <= length) {
excerpt += sentence + " ";
} else {
break;
}
}
return excerpt.trim().slice(0, -1) + ".";
}
const parseGermanDate = (dateString: string) => {
const [day, month, year] = dateString.split(".").map(Number);
return new Date(year, month - 1, day).toISOString();
};
const commonFields = {
title: s.string(),
date: s
.string()
.refine((date) => /^\d{2}\.\d{2}\.\d{4}$/.test(date), "Invalid date format")
.transform((date) => parseGermanDate(date)),
cover: s.object({
src: s.string(),
alt: s.string(),
}),
metadata: s.metadata(),
published: s.boolean(),
tags: s
.array(s.string())
.transform((arr) => arr.map((tag) => tag.toLowerCase()).join(",")),
};
type NodeInfo = {
node: Node;
index: number;
parent: { children: Node[] };
};
const remarkGroupImages: Pluggable = () => {
return async (tree: Node) => {
const allImages: NodeInfo[] = [];
visit(tree, (node, index, parent: { children: Node[] }) => {
if (node.type === "image") {
allImages.push({ node, index: index || 0, parent });
}
return undefined;
});
const imageGroups: NodeInfo[][] = [];
const groupImages = () => {
allImages.forEach((imageNodeInfo, index) => {
if (index === 0) imageGroups[index] = [imageNodeInfo];
else {
const current = imageNodeInfo.node.position?.start.line || 0;
const previous = allImages[index - 1].node.position?.start.line || 0;
if (current - previous === 1) {
imageGroups[imageGroups.length - 1].push(imageNodeInfo);
} else {
imageGroups.push([imageNodeInfo]);
}
}
});
};
groupImages();
await Promise.all(
imageGroups.map(async (groupedImages) => {
const newNode = {
type: "SimpleGallery",
tagName: "SimpleGallery",
properties: {
images: JSON.stringify(
await Promise.all(
groupedImages.map(async ({ node }) => {
const src = (node as any).url as string;
try {
const { width, height } =
await getImgWidthAndHeightDuringBuild(src);
return { width, height, src };
} catch (err) {
console.error("Error getting image dimensions", err);
return {
alt: "",
title: "",
key: src,
name: src,
src: src,
srcSet: [],
width: 1,
height: 1,
};
}
})
)
),
},
children: [],
};
const firstImage = groupedImages[0];
const lastImage = groupedImages[groupedImages.length - 1];
const firstIndex = firstImage.index;
const lastIndex = lastImage.index;
const numberToDelete = lastIndex - firstIndex + 1;
firstImage.parent.children.splice(firstIndex, numberToDelete, newNode);
})
);
};
};
const handleSimpleGalleryNode: Handler = (state, node) => {
return {
type: "element",
tagName: "SimpleGallery",
properties: node.properties,
children: state.all(node),
data: node.data,
};
};
const addBundledMDXContent = async <T extends Record<string, any>>(
data: T,
{ meta }: { meta: ZodMeta }
): Promise<
T & {
content: MDXResult;
rawContent: string;
excerpt: string;
markdownExcerpt: MDXResult;
}
> => {
const remarkPlugins: Pluggable[] = [
remarkGroupImages,
remarkGfm,
remarkToc,
remarkMath,
];
const rehypePlugins: Pluggable[] = [
rehypeUnwrapGalleries,
rehypeHighlight,
rehypeKatex,
rehypeSlug,
rehypeAccessibleEmojis,
];
const recmaPlugins: Pluggable[] = [];
const rawContent = meta.content || "";
const mdxOptions = {
mdxOptions: {
remarkPlugins,
rehypePlugins,
recmaPlugins,
remarkRehypeOptions: {
handlers: { SimpleGallery: handleSimpleGalleryNode },
},
},
parseFrontmatter: true,
};
const mdxSource = await serialize(rawContent, mdxOptions);
const excerptString = data.excerpt || generateExcerpt(rawContent, 280);
const markdownExcerpt = await serialize(excerptString, mdxOptions);
return {
...data,
content: mdxSource,
rawContent,
excerpt: excerptString,
markdownExcerpt,
};
};
const addLinksAndSlugTransformer = (link: string = "/") => {
const transformer = async <T extends Record<string, any>>(
data: T,
{ meta }: { meta: ZodMeta }
): Promise<T & { slug: string; link: string }> => {
if (!meta.stem) {
console.error("No stem found for " + meta.path);
throw Error("No stem found for " + meta.path);
}
const slug = slugify(meta.stem);
return {
...data,
slug,
link: path.join("/", link, slug),
};
};
return transformer;
};
export default defineConfig({
root: "src/content/Notes/",
collections: {
sectionDescriptions: {
name: "SectionDescription",
pattern: "website-section-descriptions/*.md",
schema: s
.object({
title: s.string(),
})
.transform(addBundledMDXContent),
},
posts: {
name: "Post",
pattern: "posts/*.md",
schema: s
.object({
...commonFields,
subtitle: s.string(),
})
.transform((data) => ({ ...data, contentType: "Post" }))
.transform(addLinksAndSlugTransformer("posts"))
.transform(addBundledMDXContent),
},
newsletters: {
name: "Newsletter",
pattern: "newsletters/*.md",
schema: s
.object({
...commonFields,
excerpt: s.string(),
})
.transform((data, { meta }) => ({
...data,
slugTitle: slugify(data.title),
contentType: "Newsletter",
slug: slugify(meta.stem || ""),
link: `/newsletters/${slugify(data.title)}`,
number: meta.stem || "",
}))
.transform(addBundledMDXContent),
},
booknotes: {
name: "Booknote",
pattern: "booknotes/*.md",
schema: s
.object({
...commonFields,
subtitle: s.string().optional(),
bookAuthor: s.string(),
rating: s.number(),
summary: s.boolean(),
detailedNotes: s.boolean(),
amazonAffiliateLink: s.string(),
})
.transform((data) => ({ ...data, contentType: "Booknote" }))
.transform(addLinksAndSlugTransformer("booknotes"))
.transform(addBundledMDXContent),
},
pages: {
name: "Page",
pattern: "pages/*.md",
schema: s
.object({
...commonFields,
subtitle: s.string(),
})
.transform((data) => ({ ...data, contentType: "Page" }))
.transform(addLinksAndSlugTransformer())
.transform(addBundledMDXContent),
},
podcastnotes: {
name: "Podcastnote",
pattern: "podcastnotes/*.md",
schema: s
.object({
...commonFields,
show: s.string(),
episode: s.number(),
rating: s.number(),
links: s.object({
web: s.string(),
spotify: s.string(),
youtube: s.string(),
}),
})
.transform((data) => {
return {
...data,
contentType: "Podcastnote",
displayTitle: `${data.title} | ${data.show} – Episode ${data.episode}`,
};
})
.transform(addLinksAndSlugTransformer("podcastnotes"))
.transform(addBundledMDXContent),
},
travelblogs: {
name: "Travelblog",
pattern: "travel/**/*.md",
schema: s
.object({ ...commonFields })
.transform((data, { meta }) => {
const name = meta.path.replace(".md", "").split("/").at(-2);
if (!name || !meta.stem)
throw Error("No name found for " + meta.path);
const parentFolder = slugify(name);
const slug = slugify(meta.stem);
return {
...data,
slug,
path: meta.path,
contentType: "Travelblog",
link: path.join("/", "travel", parentFolder, slug),
parentFolder,
};
})
.transform(addBundledMDXContent),
},
},
});