-
-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathcontent-collections.ts
More file actions
57 lines (52 loc) · 1.51 KB
/
content-collections.ts
File metadata and controls
57 lines (52 loc) · 1.51 KB
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
import { defineCollection, defineConfig } from '@content-collections/core'
import { libraryIds } from '~/libraries/libraries'
import { normalizeRedirectFrom } from '~/utils/redirects'
import { z } from 'zod'
const libraryIdSet = new Set<string>(libraryIds)
const libraryListSchema = z.string().refine(
(value) => {
const libraries = value
.split(',')
.map((library) => library.trim())
.filter(Boolean)
return (
libraries.length > 0 &&
libraries.every((library) => libraryIdSet.has(library))
)
},
{
message: `Expected comma-separated library ids: ${libraryIds.join(', ')}`,
},
)
const posts = defineCollection({
name: 'posts',
directory: './src/blog',
include: '*.md',
schema: z.object({
title: z.string(),
published: z.iso.date(),
draft: z.boolean().optional(),
excerpt: z.string(),
authors: z.string().array(),
library: libraryListSchema.optional(),
content: z.string(),
redirect_from: z.string().array().optional(),
}),
transform: ({ content, ...post }) => {
// Extract header image (first image after frontmatter)
const headerImageMatch = content.match(/!\[([^\]]*)\]\(([^)]+)\)/)
const headerImage = headerImageMatch ? headerImageMatch[2] : undefined
const redirectFrom = normalizeRedirectFrom(post.redirect_from)
return {
...post,
slug: post._meta.path,
headerImage,
redirect_from: redirectFrom,
redirectFrom,
content,
}
},
})
export default defineConfig({
content: [posts],
})