mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
123 lines
4.3 KiB
TypeScript
123 lines
4.3 KiB
TypeScript
import { getRecipientType } from '@documenso/lib/client-only/recipient-type';
|
|
import { recipientAbbreviation } from '@documenso/lib/utils/recipient-formatter';
|
|
import { Recipient } from '@documenso/prisma/client';
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from '@documenso/ui/primitives/tooltip';
|
|
|
|
import { StackAvatar } from './stack-avatar';
|
|
import { StackAvatars } from './stack-avatars';
|
|
|
|
export type StackAvatarsWithTooltipProps = {
|
|
recipients: Recipient[];
|
|
position?: 'top' | 'bottom';
|
|
children?: React.ReactNode;
|
|
};
|
|
|
|
export const StackAvatarsWithTooltip = ({
|
|
recipients,
|
|
position,
|
|
children,
|
|
}: StackAvatarsWithTooltipProps) => {
|
|
const waitingRecipients = recipients.filter(
|
|
(recipient) => getRecipientType(recipient) === 'waiting',
|
|
);
|
|
|
|
const openedRecipients = recipients.filter(
|
|
(recipient) => getRecipientType(recipient) === 'opened',
|
|
);
|
|
|
|
const completedRecipients = recipients.filter(
|
|
(recipient) => getRecipientType(recipient) === 'completed',
|
|
);
|
|
|
|
const uncompletedRecipients = recipients.filter(
|
|
(recipient) => getRecipientType(recipient) === 'unsigned',
|
|
);
|
|
|
|
return (
|
|
<TooltipProvider>
|
|
<Tooltip delayDuration={200}>
|
|
<TooltipTrigger className="flex cursor-pointer">
|
|
{children || <StackAvatars recipients={recipients} />}
|
|
</TooltipTrigger>
|
|
|
|
<TooltipContent side={position}>
|
|
<div className="flex flex-col gap-y-5 p-1">
|
|
{completedRecipients.length > 0 && (
|
|
<div>
|
|
<h1 className="text-base font-medium">Completed</h1>
|
|
{completedRecipients.map((recipient: Recipient) => (
|
|
<div key={recipient.id} className="my-1 flex items-center gap-2">
|
|
<StackAvatar
|
|
first={true}
|
|
key={recipient.id}
|
|
type={getRecipientType(recipient)}
|
|
fallbackText={recipientAbbreviation(recipient)}
|
|
/>
|
|
<span className="text-muted-foreground text-sm">{recipient.email}</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{waitingRecipients.length > 0 && (
|
|
<div>
|
|
<h1 className="text-base font-medium">Waiting</h1>
|
|
{waitingRecipients.map((recipient: Recipient) => (
|
|
<div key={recipient.id} className="my-1 flex items-center gap-2">
|
|
<StackAvatar
|
|
first={true}
|
|
key={recipient.id}
|
|
type={getRecipientType(recipient)}
|
|
fallbackText={recipientAbbreviation(recipient)}
|
|
/>
|
|
<span className="text-muted-foreground text-sm">{recipient.email}</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{openedRecipients.length > 0 && (
|
|
<div>
|
|
<h1 className="text-base font-medium">Opened</h1>
|
|
{openedRecipients.map((recipient: Recipient) => (
|
|
<div key={recipient.id} className="my-1 flex items-center gap-2">
|
|
<StackAvatar
|
|
first={true}
|
|
key={recipient.id}
|
|
type={getRecipientType(recipient)}
|
|
fallbackText={recipientAbbreviation(recipient)}
|
|
/>
|
|
<span className="text-muted-foreground text-sm">{recipient.email}</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{uncompletedRecipients.length > 0 && (
|
|
<div>
|
|
<h1 className="text-base font-medium">Uncompleted</h1>
|
|
{uncompletedRecipients.map((recipient: Recipient) => (
|
|
<div key={recipient.id} className="my-1 flex items-center gap-2">
|
|
<StackAvatar
|
|
first={true}
|
|
key={recipient.id}
|
|
type={getRecipientType(recipient)}
|
|
fallbackText={recipientAbbreviation(recipient)}
|
|
/>
|
|
<span className="text-muted-foreground text-sm">{recipient.email}</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
);
|
|
};
|