mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
'use client';
|
|
|
|
import { useMemo } from 'react';
|
|
|
|
import { DateTime } from 'luxon';
|
|
|
|
import { useIsMounted } from '@documenso/lib/client-only/hooks/use-is-mounted';
|
|
import { useLocale } from '@documenso/lib/client-only/providers/locale';
|
|
import type { Document, Recipient, User } from '@documenso/prisma/client';
|
|
|
|
export type DocumentPageViewInformationProps = {
|
|
userId: number;
|
|
document: Document & {
|
|
User: Pick<User, 'id' | 'name' | 'email'>;
|
|
Recipient: Recipient[];
|
|
};
|
|
};
|
|
|
|
export const DocumentPageViewInformation = ({
|
|
document,
|
|
userId,
|
|
}: DocumentPageViewInformationProps) => {
|
|
const isMounted = useIsMounted();
|
|
|
|
const { locale } = useLocale();
|
|
|
|
const documentInformation = useMemo(() => {
|
|
let createdValue = DateTime.fromJSDate(document.createdAt).toFormat('MMMM d, yyyy');
|
|
let lastModifiedValue = DateTime.fromJSDate(document.updatedAt).toRelative();
|
|
|
|
if (!isMounted) {
|
|
createdValue = DateTime.fromJSDate(document.createdAt)
|
|
.setLocale(locale)
|
|
.toFormat('MMMM d, yyyy');
|
|
|
|
lastModifiedValue = DateTime.fromJSDate(document.updatedAt).setLocale(locale).toRelative();
|
|
}
|
|
|
|
return [
|
|
{
|
|
description: 'Uploaded by',
|
|
value: userId === document.userId ? 'You' : document.User.name ?? document.User.email,
|
|
},
|
|
{
|
|
description: 'Created',
|
|
value: createdValue,
|
|
},
|
|
{
|
|
description: 'Last modified',
|
|
value: lastModifiedValue,
|
|
},
|
|
];
|
|
}, [isMounted, document, locale, userId]);
|
|
|
|
return (
|
|
<section className="dark:bg-background text-foreground border-border bg-widget flex flex-col rounded-xl border">
|
|
<h1 className="px-4 py-3 font-medium">Information</h1>
|
|
|
|
<ul className="divide-y border-t">
|
|
{documentInformation.map((item) => (
|
|
<li
|
|
key={item.description}
|
|
className="flex items-center justify-between px-4 py-2.5 text-sm last:border-b"
|
|
>
|
|
<span className="text-muted-foreground">{item.description}</span>
|
|
<span>{item.value}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</section>
|
|
);
|
|
};
|