31 lines
797 B
TypeScript
31 lines
797 B
TypeScript
import { formatDate, getDate } from "./Date"
|
|
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
|
import readingTime from "reading-time"
|
|
|
|
export default (() => {
|
|
function ContentMetadata({ cfg, fileData }: QuartzComponentProps) {
|
|
const text = fileData.text
|
|
if (text) {
|
|
const segments: string[] = []
|
|
const { text: timeTaken, words: _words } = readingTime(text)
|
|
|
|
if (fileData.dates) {
|
|
segments.push(formatDate(getDate(cfg, fileData)!))
|
|
}
|
|
|
|
segments.push(timeTaken)
|
|
return <p class="content-meta">{segments.join(", ")}</p>
|
|
} else {
|
|
return null
|
|
}
|
|
}
|
|
|
|
ContentMetadata.css = `
|
|
.content-meta {
|
|
margin-top: 0;
|
|
color: var(--gray);
|
|
}
|
|
`
|
|
return ContentMetadata
|
|
}) satisfies QuartzComponentConstructor
|