mirror of
https://github.com/KazooTTT/kazoottt-blog-v2.git
synced 2025-06-22 18:21:31 +08:00
Initial commit
This commit is contained in:
48
src/content.config.ts
Normal file
48
src/content.config.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { defineCollection, z } from "astro:content";
|
||||
import { glob } from "astro/loaders";
|
||||
|
||||
function removeDupsAndLowerCase(array: string[]) {
|
||||
return [...new Set(array.map((str) => str.toLowerCase()))];
|
||||
}
|
||||
|
||||
const baseSchema = z.object({
|
||||
title: z.string().max(60),
|
||||
});
|
||||
|
||||
const post = defineCollection({
|
||||
loader: glob({ base: "./src/content/post", pattern: "**/*.{md,mdx}" }),
|
||||
schema: ({ image }) =>
|
||||
baseSchema.extend({
|
||||
description: z.string(),
|
||||
coverImage: z
|
||||
.object({
|
||||
alt: z.string(),
|
||||
src: image(),
|
||||
})
|
||||
.optional(),
|
||||
draft: z.boolean().default(false),
|
||||
ogImage: z.string().optional(),
|
||||
tags: z.array(z.string()).default([]).transform(removeDupsAndLowerCase),
|
||||
publishDate: z
|
||||
.string()
|
||||
.or(z.date())
|
||||
.transform((val) => new Date(val)),
|
||||
updatedDate: z
|
||||
.string()
|
||||
.optional()
|
||||
.transform((str) => (str ? new Date(str) : undefined)),
|
||||
}),
|
||||
});
|
||||
|
||||
const note = defineCollection({
|
||||
loader: glob({ base: "./src/content/note", pattern: "**/*.{md,mdx}" }),
|
||||
schema: baseSchema.extend({
|
||||
description: z.string().optional(),
|
||||
publishDate: z
|
||||
.string()
|
||||
.datetime({ offset: true }) // Ensures ISO 8601 format with offsets allowed (e.g. "2024-01-01T00:00:00Z" and "2024-01-01T00:00:00+02:00")
|
||||
.transform((val) => new Date(val)),
|
||||
}),
|
||||
});
|
||||
|
||||
export const collections = { post, note };
|
Reference in New Issue
Block a user