mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 18:00:06 +01:00
Matthias Kretschmann
05ad0470c2
* migrate to biome * cleanup * fix * use tsx * script tweaks * fix test runs * path tweaks
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import { type ImageFunction, z } from 'astro:content'
|
|
|
|
const schemaShared = {
|
|
title: z.string(),
|
|
date: z
|
|
.string()
|
|
.or(z.date())
|
|
.optional()
|
|
// Transform string to Date object
|
|
.transform((val: string | Date | undefined) =>
|
|
val ? new Date(val) : undefined
|
|
),
|
|
updated: z
|
|
.string()
|
|
.or(z.date())
|
|
.optional()
|
|
.transform((val: string | Date | undefined) =>
|
|
val ? new Date(val) : undefined
|
|
),
|
|
tags: z.array(z.string()).optional(),
|
|
draft: z.boolean().optional(),
|
|
redirect_from: z.array(z.string()).optional(),
|
|
author: z.string().optional(),
|
|
featured: z.boolean().optional(),
|
|
style: z.string().optional(),
|
|
toc: z.boolean().optional(),
|
|
githubLink: z.string().optional(),
|
|
changelog: z.string().optional(),
|
|
lead: z.string().optional()
|
|
}
|
|
|
|
export const schemaArticles = (image: ImageFunction) =>
|
|
z
|
|
.object({
|
|
...schemaShared,
|
|
image: image()
|
|
// .refine((img) => img.width >= 1040, {
|
|
// message: 'Cover image must be at least 1040 pixels wide!'
|
|
// })
|
|
.optional(),
|
|
download: z.string().optional(),
|
|
changelog: z.string().optional()
|
|
})
|
|
.strict()
|
|
|
|
export const schemaLinks = z
|
|
.object({
|
|
...schemaShared,
|
|
linkurl: z.string()
|
|
})
|
|
.strict()
|
|
|
|
export const schemaPhotos = (image: ImageFunction) =>
|
|
z
|
|
.object({
|
|
...schemaShared,
|
|
image: image(),
|
|
// .refine((img) => img.width >= 1040, {
|
|
// message: 'Cover image must be at least 1040 pixels wide!'
|
|
// })
|
|
exif: z.object({}).optional()
|
|
})
|
|
.strict()
|
|
|
|
// export type ArticleFrontmatter = z.infer<typeof schemaArticles>
|
|
// export type LinkFrontmatter = z.infer<typeof schemaLinks>
|
|
// export type PhotoFrontmatter = z.infer<typeof schemaPhotos>
|
|
// export type PostFrontmatter =
|
|
// | ArticleFrontmatter
|
|
// | LinkFrontmatter
|
|
// | PhotoFrontmatter
|