quartz-research-note/quartz/components/ReadingTime.tsx

26 lines
556 B
TypeScript
Raw Normal View History

2023-06-12 06:46:38 +00:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-10 06:06:02 +00:00
import readingTime from "reading-time"
2023-06-12 06:46:38 +00:00
function ReadingTime({ fileData }: QuartzComponentProps) {
2023-06-10 06:06:02 +00:00
const text = fileData.text
if (text) {
2023-06-10 06:06:02 +00:00
const { text: timeTaken, words } = readingTime(text)
2023-07-23 00:27:41 +00:00
return (
<p class="reading-time">
{words} words, {timeTaken}
</p>
)
2023-06-10 06:06:02 +00:00
} else {
return null
}
}
ReadingTime.css = `
.reading-time {
margin-top: 0;
color: var(--gray);
2023-06-10 06:06:02 +00:00
}
`
2023-06-12 06:46:38 +00:00
export default (() => ReadingTime) satisfies QuartzComponentConstructor