public_notes/quartz/components/Date.tsx

28 lines
851 B
TypeScript
Raw Normal View History

2023-08-25 00:56:40 +09:00
import { GlobalConfiguration } from "../cfg"
import { ValidLocale } from "../i18n"
2023-08-25 00:56:40 +09:00
import { QuartzPluginData } from "../plugins/vfile"
2023-07-01 16:03:01 +09:00
interface Props {
date: Date
locale?: ValidLocale
2023-07-01 16:03:01 +09:00
}
2023-08-25 00:56:40 +09:00
export type ValidDateType = keyof Required<QuartzPluginData>["dates"]
export function getDate(cfg: GlobalConfiguration, data: QuartzPluginData): Date | undefined {
if (!cfg.defaultDateType) {
2023-08-25 02:03:14 +09:00
throw new Error(
`Field 'defaultDateType' was not set in the configuration object of quartz.config.ts. See https://quartz.jzhao.xyz/configuration#general-configuration for more details.`,
)
}
2023-08-25 00:56:40 +09:00
return data.dates?.[cfg.defaultDateType]
}
2024-02-12 12:17:22 +09:00
export function formatDate(d: Date, locale: ValidLocale = "sv-SE"): string {
return d.toLocaleDateString(locale)
2023-08-09 13:28:09 +09:00
}
export function Date({ date, locale }: Props) {
return <>{formatDate(date, locale)}</>
2023-07-01 16:03:01 +09:00
}