import { useState } from 'react'; import { msg } from '@lingui/core/macro'; import { useLingui } from '@lingui/react'; import { Trans } from '@lingui/react/macro'; import { authClient } from '@documenso/auth/client'; import { useSession } from '@documenso/lib/client-only/providers/session'; import { trpc } from '@documenso/trpc/react'; import { Alert, AlertDescription, AlertTitle } from '@documenso/ui/primitives/alert'; import { Button } from '@documenso/ui/primitives/button'; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from '@documenso/ui/primitives/dialog'; import { Input } from '@documenso/ui/primitives/input'; import { Label } from '@documenso/ui/primitives/label'; import { useToast } from '@documenso/ui/primitives/use-toast'; export type AccountDeleteDialogProps = { className?: string; }; export const AccountDeleteDialog = ({ className }: AccountDeleteDialogProps) => { const { user } = useSession(); const { _ } = useLingui(); const { toast } = useToast(); const hasTwoFactorAuthentication = user.twoFactorEnabled; const [enteredEmail, setEnteredEmail] = useState(''); const { mutateAsync: deleteAccount, isPending: isDeletingAccount } = trpc.profile.deleteAccount.useMutation(); const onDeleteAccount = async () => { try { await deleteAccount(); toast({ title: _(msg`Account deleted`), description: _(msg`Your account has been deleted successfully.`), duration: 5000, }); return await authClient.signOut(); } catch (err) { toast({ title: _(msg`An unknown error occurred`), variant: 'destructive', description: _( msg`We encountered an unknown error while attempting to delete your account. Please try again later.`, ), }); } }; return (
Delete Account Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution.
setEnteredEmail('')}> Delete Account This action is not reversible. Please be certain. {hasTwoFactorAuthentication && ( Disable Two Factor Authentication before deleting your account. )} Documenso will delete{' '} all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account. {!hasTwoFactorAuthentication && (
setEnteredEmail(e.target.value)} />
)}
); };