import { useState } from 'react'; import { useLingui } from '@lingui/react/macro'; import { Trans } from '@lingui/react/macro'; import { type DocumentData, DocumentStatus, type EnvelopeItem } from '@prisma/client'; import { DownloadIcon, FileTextIcon } from 'lucide-react'; import { downloadFile } from '@documenso/lib/client-only/download-file'; import { getFile } from '@documenso/lib/universal/upload/get-file'; 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 & { documentData: DocumentData; }; 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 ? { envelopeItems: initialEnvelopeItems } : undefined, enabled: open, }, ); const envelopeItems = envelopeItemsPayload?.envelopeItems || []; 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 { const data = await getFile({ type: envelopeItem.documentData.type, data: version === 'signed' ? envelopeItem.documentData.data : envelopeItem.documentData.initialData, }); const blob = new Blob([data], { type: 'application/pdf', }); const baseTitle = envelopeItem.title.replace(/\.pdf$/, ''); const suffix = version === 'signed' ? '_signed.pdf' : '.pdf'; const filename = `${baseTitle}${suffix}`; downloadFile({ filename, data: blob, }); 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: 2 }).map((_, index) => (
))} ) : ( envelopeItems.map((item) => (

{item.title}

PDF Document

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