Files
sign/apps/web/src/components/formatter/locale-date.tsx

37 lines
1002 B
TypeScript
Raw Normal View History

2023-06-09 18:21:18 +10:00
'use client';
import { HTMLAttributes, useEffect, useState } from 'react';
import { DateTime, DateTimeFormatOptions } from 'luxon';
import { useLocale } from '@documenso/lib/client-only/providers/locale';
2023-06-09 18:21:18 +10:00
export type LocaleDateProps = HTMLAttributes<HTMLSpanElement> & {
date: string | number | Date;
format?: DateTimeFormatOptions;
2023-06-09 18:21:18 +10:00
};
/**
* Formats the date based on the user locale.
*
* Will use the estimated locale from the user headers on SSR, then will use
* the client browser locale once mounted.
*/
export const LocaleDate = ({ className, date, format, ...props }: LocaleDateProps) => {
const { locale } = useLocale();
const [localeDate, setLocaleDate] = useState(() =>
DateTime.fromJSDate(new Date(date)).setLocale(locale).toLocaleString(format),
);
2023-06-09 18:21:18 +10:00
useEffect(() => {
setLocaleDate(DateTime.fromJSDate(new Date(date)).toLocaleString(format));
}, [date, format]);
2023-06-09 18:21:18 +10:00
return (
<span className={className} {...props}>
{localeDate}
</span>
);
};