mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-25 07:25:42 -05:00
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
import { formatDate, getDate } from "./Date"
|
|
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
|
import readingTime from "reading-time"
|
|
import { classNames } from "../util/lang"
|
|
import { i18n } from "../i18n"
|
|
import { JSX } from "preact"
|
|
import style from "./styles/contentMeta.scss"
|
|
|
|
interface ContentMetaOptions {
|
|
showReadingTime: boolean
|
|
showComma: boolean
|
|
}
|
|
|
|
const defaultOptions: ContentMetaOptions = {
|
|
showReadingTime: true,
|
|
showComma: true,
|
|
}
|
|
|
|
export default ((opts?: Partial<ContentMetaOptions>) => {
|
|
// Merge options with defaults
|
|
const options: ContentMetaOptions = { ...defaultOptions, ...opts }
|
|
|
|
function ContentMetadata({ cfg, fileData, displayClass }: QuartzComponentProps) {
|
|
const text = fileData.text
|
|
|
|
if (text) {
|
|
const segments: (string | JSX.Element)[] = []
|
|
|
|
let segment = ""
|
|
|
|
if (fileData.dates?.created) {
|
|
const createdDate = formatDate(getDate(cfg, fileData)!, cfg.locale)
|
|
const modifiedDate = fileData.frontmatter?.lastmod
|
|
? formatDate(getDate(cfg, fileData, "modified")!, cfg.locale)
|
|
: null
|
|
|
|
segment += `Created: ${createdDate}`
|
|
|
|
if (modifiedDate && createdDate !== modifiedDate) {
|
|
segment += ` ⮕ Modified: ${modifiedDate}`
|
|
}
|
|
}
|
|
|
|
if (segment) {
|
|
segments.push(segment)
|
|
}
|
|
|
|
// Display reading time if enabled
|
|
if (options.showReadingTime) {
|
|
const { minutes, words: _words } = readingTime(text)
|
|
const displayedTime = i18n(cfg.locale).components.contentMeta.readingTime({
|
|
minutes: Math.ceil(minutes),
|
|
})
|
|
segments.push(displayedTime)
|
|
}
|
|
|
|
const segmentsElements = segments.map((segment) => <span>{segment}</span>)
|
|
|
|
return (
|
|
<p show-comma={options.showComma} class={classNames(displayClass, "content-meta")}>
|
|
{segmentsElements}
|
|
</p>
|
|
)
|
|
} else {
|
|
return null
|
|
}
|
|
}
|
|
|
|
ContentMetadata.css = style
|
|
|
|
return ContentMetadata
|
|
}) satisfies QuartzComponentConstructor
|