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