87 lines
2.4 KiB
TypeScript
Raw Normal View History

2023-05-30 08:02:20 -07:00
import matter from "gray-matter"
2023-07-22 17:27:41 -07:00
import remarkFrontmatter from "remark-frontmatter"
2023-05-30 08:02:20 -07:00
import { QuartzTransformerPlugin } from "../types"
2023-07-22 17:27:41 -07:00
import yaml from "js-yaml"
import toml from "toml"
import { slugTag } from "../../util/path"
2024-01-05 17:29:34 +09:00
import { QuartzPluginData } from "../vfile"
2023-05-30 08:02:20 -07:00
export interface Options {
delims: string | string[]
language: "yaml" | "toml"
2024-01-05 17:29:34 +09:00
oneLineTagDelim: string
2023-05-30 08:02:20 -07:00
}
const defaultOptions: Options = {
2023-07-22 17:27:41 -07:00
delims: "---",
language: "yaml",
2024-01-05 17:29:34 +09:00
oneLineTagDelim: ",",
2023-05-30 08:02:20 -07:00
}
export const FrontMatter: QuartzTransformerPlugin<Partial<Options> | undefined> = (userOpts) => {
const opts = { ...defaultOptions, ...userOpts }
return {
name: "FrontMatter",
markdownPlugins() {
2024-01-05 17:29:34 +09:00
const { oneLineTagDelim } = opts
return [
[remarkFrontmatter, ["yaml", "toml"]],
() => {
return (_, file) => {
2024-01-05 17:29:34 +09:00
const { data } = matter(Buffer.from(file.value), {
2023-07-06 18:45:38 -07:00
...opts,
engines: {
2023-07-22 17:27:41 -07:00
yaml: (s) => yaml.load(s, { schema: yaml.JSON_SCHEMA }) as object,
toml: (s) => toml.parse(s) as object,
2023-07-22 17:27:41 -07:00
},
2023-07-06 18:45:38 -07:00
})
2023-07-09 19:32:24 -07:00
// tag is an alias for tags
if (data.tag) {
data.tags = data.tag
}
2023-09-25 18:15:55 -07:00
// coerce title to string
if (data.title) {
data.title = data.title.toString()
2024-01-05 17:29:34 +09:00
} else if (data.title === null || data.title === undefined) {
data.title = file.stem ?? "Untitled"
2023-09-25 18:15:55 -07:00
}
2024-01-05 17:29:34 +09:00
if (data.tags) {
// coerce to array
if (!Array.isArray(data.tags)) {
data.tags = data.tags
.toString()
.split(oneLineTagDelim)
.map((tag: string) => tag.trim())
}
// remove all non-string tags
2023-07-22 17:27:41 -07:00
data.tags = data.tags
2024-01-05 17:29:34 +09:00
.filter((tag: unknown) => typeof tag === "string" || typeof tag === "number")
.map((tag: string | number) => tag.toString())
2023-07-06 18:32:48 -07:00
}
2023-07-09 19:32:24 -07:00
// slug them all!!
2024-01-05 17:29:34 +09:00
data.tags = [...new Set(data.tags?.map((tag: string) => slugTag(tag)))]
2023-07-09 19:32:24 -07:00
// fill in frontmatter
2024-01-05 17:29:34 +09:00
file.data.frontmatter = data as QuartzPluginData["frontmatter"]
2023-05-30 08:02:20 -07:00
}
2023-07-22 17:27:41 -07:00
},
]
},
2023-05-30 08:02:20 -07:00
}
}
2023-07-22 17:27:41 -07:00
declare module "vfile" {
2023-05-30 08:02:20 -07:00
interface DataMap {
frontmatter: { [key: string]: any } & {
title: string
tags: string[]
}
}
}