import { useState } from 'react'; import { useLingui } from '@lingui/react/macro'; import { Trans } from '@lingui/react/macro'; import { DocumentStatus, type EnvelopeItem } from '@prisma/client'; import { DownloadIcon, FileTextIcon } from 'lucide-react'; import { downloadPDF } from '@documenso/lib/client-only/download-pdf'; import { trpc } from '@documenso/trpc/react'; import { Button } from '@documenso/ui/primitives/button'; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from '@documenso/ui/primitives/dialog'; import { Skeleton } from '@documenso/ui/primitives/skeleton'; import { useToast } from '@documenso/ui/primitives/use-toast'; type EnvelopeItemToDownload = Pick; type EnvelopeDownloadDialogProps = { envelopeId: string; envelopeStatus: DocumentStatus; envelopeItems?: EnvelopeItemToDownload[]; /** * The recipient token to download the document. * * If not provided, it will be assumed that the current user can access the document. */ token?: string; trigger: React.ReactNode; }; export const EnvelopeDownloadDialog = ({ envelopeId, envelopeStatus, envelopeItems: initialEnvelopeItems, token, trigger, }: EnvelopeDownloadDialogProps) => { const { toast } = useToast(); const { t } = useLingui(); const [open, setOpen] = useState(false); const [isDownloadingState, setIsDownloadingState] = useState<{ [envelopeItemIdAndVersion: string]: boolean; }>({}); const generateDownloadKey = (envelopeItemId: string, version: 'original' | 'signed') => `${envelopeItemId}-${version}`; const { data: envelopeItemsPayload, isLoading: isLoadingEnvelopeItems } = trpc.envelope.item.getManyByToken.useQuery( { envelopeId, access: token ? { type: 'recipient', token } : { type: 'user' }, }, { initialData: initialEnvelopeItems ? { data: initialEnvelopeItems } : undefined, enabled: open, }, ); const envelopeItems = envelopeItemsPayload?.data || []; const onDownload = async ( envelopeItem: EnvelopeItemToDownload, version: 'original' | 'signed', ) => { const { id: envelopeItemId } = envelopeItem; if (isDownloadingState[generateDownloadKey(envelopeItemId, version)]) { return; } setIsDownloadingState((prev) => ({ ...prev, [generateDownloadKey(envelopeItemId, version)]: true, })); try { await downloadPDF({ envelopeItem, token, fileName: envelopeItem.title, version, }); setIsDownloadingState((prev) => ({ ...prev, [generateDownloadKey(envelopeItemId, version)]: false, })); } catch (error) { setIsDownloadingState((prev) => ({ ...prev, [generateDownloadKey(envelopeItemId, version)]: false, })); console.error(error); toast({ title: t`Something went wrong`, description: t`This document could not be downloaded at this time. Please try again.`, variant: 'destructive', duration: 7500, }); } }; return ( setOpen(value)}> {trigger} Download Files Select the files you would like to download.
{isLoadingEnvelopeItems ? ( <> {Array.from({ length: 1 }).map((_, index) => (
))} ) : ( envelopeItems.map((item) => (
{/* Todo: Envelopes - Fix overflow */}

{item.title}

PDF Document

{envelopeStatus === DocumentStatus.COMPLETED && ( )}
)) )}
); };