mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
47 lines
No EOL
1.1 KiB
TypeScript
47 lines
No EOL
1.1 KiB
TypeScript
import { useTranslation } from "next-i18next"
|
|
|
|
type FestaMomentProps = {
|
|
date: Date | null,
|
|
}
|
|
|
|
/**
|
|
* Component that formats a {@link Date} to a machine-readable and human-readable HTML `time[datetime]` element.
|
|
*/
|
|
export const FestaMoment = ({ date }: FestaMomentProps) => {
|
|
const { t } = useTranslation()
|
|
|
|
if (date === null) {
|
|
return (
|
|
<span className="disabled">
|
|
{t("dateNull")}
|
|
</span>
|
|
)
|
|
}
|
|
|
|
if (Number.isNaN(date.getTime())) {
|
|
return (
|
|
<span className="disabled">
|
|
{t("dateNaN")}
|
|
</span>
|
|
)
|
|
}
|
|
|
|
const now = new Date()
|
|
const machine = date.toISOString()
|
|
|
|
let human
|
|
// If the date is less than 20 hours away, display just the time
|
|
if (date.getTime() - now.getTime() < (20 /*hours*/ * 60 /*minutes*/ * 60 /*seconds*/ * 1000 /*milliseconds*/)) {
|
|
human = date.toLocaleTimeString()
|
|
}
|
|
// Otherwise, display the full date
|
|
else {
|
|
human = date.toLocaleString()
|
|
}
|
|
|
|
return (
|
|
<time dateTime={machine}>
|
|
{human}
|
|
</time>
|
|
)
|
|
} |