import { downloadFile } from '@documenso/lib/client-only/download-file'; import { base64 } from '@documenso/lib/universal/base64'; import { trpc } from '@documenso/trpc/react'; import { cn } from '@documenso/ui/lib/utils'; import { Button } from '@documenso/ui/primitives/button'; import { useToast } from '@documenso/ui/primitives/use-toast'; import { msg } from '@lingui/core/macro'; import { useLingui } from '@lingui/react'; import { Trans } from '@lingui/react/macro'; import { DownloadIcon } from 'lucide-react'; export type DocumentAuditLogDownloadButtonProps = { className?: string; envelopeId: string; }; export const DocumentAuditLogDownloadButton = ({ className, envelopeId }: DocumentAuditLogDownloadButtonProps) => { const { toast } = useToast(); const { _ } = useLingui(); const { mutateAsync: downloadAuditLogs, isPending } = trpc.document.auditLog.download.useMutation(); const onDownloadAuditLogsClick = async () => { try { const { data, envelopeTitle } = await downloadAuditLogs({ envelopeId }); const buffer = new Uint8Array(base64.decode(data)); const blob = new Blob([buffer], { type: 'application/pdf' }); downloadFile({ data: blob, filename: `${envelopeTitle} - Audit Logs.pdf`, }); } catch (error) { console.error(error); toast({ title: _(msg`Something went wrong`), description: _(msg`Sorry, we were unable to download the audit logs. Please try again later.`), variant: 'destructive', }); } }; return ( ); };