quartz-research-note/quartz/plugins/transformers/lastmod.ts

71 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-05-30 15:02:20 +00:00
import fs from "fs"
2023-07-23 00:27:41 +00:00
import path from "path"
2023-05-30 15:02:20 +00:00
import { Repository } from "@napi-rs/simple-git"
import { QuartzTransformerPlugin } from "../types"
export interface Options {
2023-07-23 00:27:41 +00:00
priority: ("frontmatter" | "git" | "filesystem")[]
2023-05-30 15:02:20 +00:00
}
const defaultOptions: Options = {
2023-07-23 00:27:41 +00:00
priority: ["frontmatter", "git", "filesystem"],
2023-05-30 15:02:20 +00:00
}
2023-07-07 01:45:38 +00:00
type MaybeDate = undefined | string | number
2023-07-23 00:27:41 +00:00
export const CreatedModifiedDate: QuartzTransformerPlugin<Partial<Options> | undefined> = (
userOpts,
) => {
const opts = { ...defaultOptions, ...userOpts }
return {
name: "CreatedModifiedDate",
markdownPlugins() {
return [
() => {
let repo: Repository | undefined = undefined
return async (_tree, file) => {
2023-07-07 01:45:38 +00:00
let created: MaybeDate = undefined
let modified: MaybeDate = undefined
let published: MaybeDate = undefined
2023-05-30 15:02:20 +00:00
2023-08-03 06:04:26 +00:00
const fp = path.posix.join(file.cwd, file.data.filePath as string)
for (const source of opts.priority) {
if (source === "filesystem") {
const st = await fs.promises.stat(fp)
2023-07-07 01:45:38 +00:00
created ||= st.birthtimeMs
modified ||= st.mtimeMs
} else if (source === "frontmatter" && file.data.frontmatter) {
created ||= file.data.frontmatter.date
modified ||= file.data.frontmatter.lastmod
modified ||= file.data.frontmatter["last-modified"]
published ||= file.data.frontmatter.publishDate
} else if (source === "git") {
if (!repo) {
repo = new Repository(file.cwd)
}
2023-05-30 15:02:20 +00:00
2023-07-07 01:45:38 +00:00
modified ||= await repo.getFileLatestModifiedDateAsync(file.data.filePath!)
2023-05-30 15:02:20 +00:00
}
}
file.data.dates = {
2023-07-07 01:45:38 +00:00
created: created ? new Date(created) : new Date(),
modified: modified ? new Date(modified) : new Date(),
published: published ? new Date(published) : new Date(),
}
2023-05-30 15:02:20 +00:00
}
2023-07-23 00:27:41 +00:00
},
]
},
2023-05-30 15:02:20 +00:00
}
}
2023-07-23 00:27:41 +00:00
declare module "vfile" {
2023-05-30 15:02:20 +00:00
interface DataMap {
dates: {
created: Date
modified: Date
published: Date
}
}
}