mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
'use client';
|
|
|
|
import Link from 'next/link';
|
|
|
|
import { useSession } from 'next-auth/react';
|
|
import { match } from 'ts-pattern';
|
|
|
|
import { formatDocumentsPath } from '@documenso/lib/utils/teams';
|
|
import type { Document, Recipient, Team, User } from '@documenso/prisma/client';
|
|
|
|
export type DataTableTitleProps = {
|
|
row: Document & {
|
|
user: Pick<User, 'id' | 'name' | 'email'>;
|
|
team: Pick<Team, 'url'> | null;
|
|
recipients: Recipient[];
|
|
};
|
|
teamUrl?: string;
|
|
};
|
|
|
|
export const DataTableTitle = ({ row, teamUrl }: DataTableTitleProps) => {
|
|
const { data: session } = useSession();
|
|
|
|
if (!session) {
|
|
return null;
|
|
}
|
|
|
|
const recipient = row.recipients.find((recipient) => recipient.email === session.user.email);
|
|
|
|
const isOwner = row.user.id === session.user.id;
|
|
const isRecipient = !!recipient;
|
|
const isCurrentTeamDocument = teamUrl && row.team?.url === teamUrl;
|
|
|
|
const documentsPath = formatDocumentsPath(isCurrentTeamDocument ? teamUrl : undefined);
|
|
|
|
return match({
|
|
isOwner,
|
|
isRecipient,
|
|
isCurrentTeamDocument,
|
|
})
|
|
.with({ isOwner: true }, { isCurrentTeamDocument: true }, () => (
|
|
<Link
|
|
href={`${documentsPath}/${row.id}`}
|
|
title={row.title}
|
|
className="block max-w-[10rem] truncate font-medium hover:underline md:max-w-[20rem]"
|
|
>
|
|
{row.title}
|
|
</Link>
|
|
))
|
|
.with({ isRecipient: true }, () => (
|
|
<Link
|
|
href={`/sign/${recipient?.token}`}
|
|
title={row.title}
|
|
className="block max-w-[10rem] truncate font-medium hover:underline md:max-w-[20rem]"
|
|
>
|
|
{row.title}
|
|
</Link>
|
|
))
|
|
.otherwise(() => (
|
|
<span className="block max-w-[10rem] truncate font-medium hover:underline md:max-w-[20rem]">
|
|
{row.title}
|
|
</span>
|
|
));
|
|
};
|