jpg-quartz/quartz/plugins/transformers/description.ts

79 lines
2.3 KiB
TypeScript
Raw Normal View History

2023-07-23 00:27:41 +00:00
import { Root as HTMLRoot } from "hast"
2023-05-30 15:02:20 +00:00
import { toString } from "hast-util-to-string"
import { QuartzTransformerPlugin } from "../types"
2023-09-07 04:47:59 +00:00
import { escapeHTML } from "../../util/escape"
2023-05-30 15:02:20 +00:00
export interface Options {
descriptionLength: number
replaceExternalLinks: boolean
2023-05-30 15:02:20 +00:00
}
const defaultOptions: Options = {
2023-07-23 00:27:41 +00:00
descriptionLength: 150,
replaceExternalLinks: true,
2023-05-30 15:02:20 +00:00
}
const urlRegex = new RegExp(
/(https?:\/\/)?(?<domain>([\da-z\.-]+)\.([a-z\.]{2,6})(:\d+)?)(?<path>[\/\w\.-]*)(\?[\/\w\.=&;-]*)?/,
"g",
)
export const Description: QuartzTransformerPlugin<Partial<Options> | undefined> = (userOpts) => {
const opts = { ...defaultOptions, ...userOpts }
return {
name: "Description",
htmlPlugins() {
return [
() => {
return async (tree: HTMLRoot, file) => {
let frontMatterDescription = file.data.frontmatter?.description
let text = escapeHTML(toString(tree))
if (opts.replaceExternalLinks) {
frontMatterDescription = frontMatterDescription?.replace(
urlRegex,
"$<domain>" + "$<path>",
)
text = text.replace(urlRegex, "$<domain>" + "$<path>")
}
const desc = frontMatterDescription ?? text
const sentences = desc.replace(/\s+/g, " ").split(/\.\s/)
const finalDesc: string[] = []
const len = opts.descriptionLength
let sentenceIdx = 0
if (sentences[0] !== undefined && sentences[0].length >= len) {
const firstSentence = sentences[0].split(" ")
while (finalDesc.length < len) {
const sentence = firstSentence[sentenceIdx]
if (!sentence) break
finalDesc.push(sentence)
sentenceIdx++
}
finalDesc.push("...")
} else {
while (finalDesc.length < len) {
const sentence = sentences[sentenceIdx]
if (!sentence) break
finalDesc.push(sentence.endsWith(".") ? sentence : sentence + ".")
sentenceIdx++
}
}
file.data.description = finalDesc.join(" ")
file.data.text = text
2023-05-30 15:02:20 +00:00
}
2023-07-23 00:27:41 +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 {
description: string
2023-06-08 05:27:32 +00:00
text: string
2023-05-30 15:02:20 +00:00
}
}