154 lines
4.5 KiB
TypeScript
154 lines
4.5 KiB
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { useState } from 'react';
|
||
|
|
|
||
|
|
import { useRouter } from 'next/navigation';
|
||
|
|
|
||
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from '@documenso/lib/constants/app';
|
||
|
|
import { extractInitials } from '@documenso/lib/utils/recipient-formatter';
|
||
|
|
import type { Prisma } from '@documenso/prisma/client';
|
||
|
|
import { trpc } from '@documenso/trpc/react';
|
||
|
|
import { Alert } from '@documenso/ui/primitives/alert';
|
||
|
|
import { AvatarWithText } from '@documenso/ui/primitives/avatar';
|
||
|
|
import { Button } from '@documenso/ui/primitives/button';
|
||
|
|
import {
|
||
|
|
Dialog,
|
||
|
|
DialogContent,
|
||
|
|
DialogDescription,
|
||
|
|
DialogFooter,
|
||
|
|
DialogHeader,
|
||
|
|
DialogTitle,
|
||
|
|
DialogTrigger,
|
||
|
|
} from '@documenso/ui/primitives/dialog';
|
||
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
||
|
|
|
||
|
|
export type RemoveTeamEmailDialogProps = {
|
||
|
|
trigger?: React.ReactNode;
|
||
|
|
teamName: string;
|
||
|
|
team: Prisma.TeamGetPayload<{
|
||
|
|
include: {
|
||
|
|
teamEmail: true;
|
||
|
|
emailVerification: {
|
||
|
|
select: {
|
||
|
|
expiresAt: true;
|
||
|
|
name: true;
|
||
|
|
email: true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const RemoveTeamEmailDialog = ({ trigger, teamName, team }: RemoveTeamEmailDialogProps) => {
|
||
|
|
const [open, setOpen] = useState(false);
|
||
|
|
|
||
|
|
const { toast } = useToast();
|
||
|
|
const router = useRouter();
|
||
|
|
|
||
|
|
const { mutateAsync: deleteTeamEmail, isLoading: isDeletingTeamEmail } =
|
||
|
|
trpc.team.deleteTeamEmail.useMutation({
|
||
|
|
onSuccess: () => {
|
||
|
|
toast({
|
||
|
|
title: 'Success',
|
||
|
|
description: 'Team email has been removed',
|
||
|
|
duration: 5000,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
onError: () => {
|
||
|
|
toast({
|
||
|
|
title: 'Something went wrong',
|
||
|
|
variant: 'destructive',
|
||
|
|
duration: 10000,
|
||
|
|
description: 'Unable to remove team email at this time. Please try again.',
|
||
|
|
});
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
const { mutateAsync: deleteTeamEmailVerification, isLoading: isDeletingTeamEmailVerification } =
|
||
|
|
trpc.team.deleteTeamEmailVerification.useMutation({
|
||
|
|
onSuccess: () => {
|
||
|
|
toast({
|
||
|
|
title: 'Success',
|
||
|
|
description: 'Email verification has been removed',
|
||
|
|
duration: 5000,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
onError: () => {
|
||
|
|
toast({
|
||
|
|
title: 'Something went wrong',
|
||
|
|
variant: 'destructive',
|
||
|
|
duration: 10000,
|
||
|
|
description: 'Unable to remove email verification at this time. Please try again.',
|
||
|
|
});
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
const onRemove = async () => {
|
||
|
|
if (team.teamEmail) {
|
||
|
|
await deleteTeamEmail({ teamId: team.id });
|
||
|
|
}
|
||
|
|
|
||
|
|
if (team.emailVerification) {
|
||
|
|
await deleteTeamEmailVerification({ teamId: team.id });
|
||
|
|
}
|
||
|
|
|
||
|
|
router.refresh();
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Dialog open={open} onOpenChange={(value) => setOpen(value)}>
|
||
|
|
<DialogTrigger asChild>
|
||
|
|
{trigger ?? <Button variant="destructive">Remove team email</Button>}
|
||
|
|
</DialogTrigger>
|
||
|
|
|
||
|
|
<DialogContent position="center">
|
||
|
|
<DialogHeader>
|
||
|
|
<DialogTitle>Are you sure?</DialogTitle>
|
||
|
|
|
||
|
|
<DialogDescription className="mt-4">
|
||
|
|
You are about to delete the following team email from{' '}
|
||
|
|
<span className="font-semibold">{teamName}</span>.
|
||
|
|
</DialogDescription>
|
||
|
|
</DialogHeader>
|
||
|
|
|
||
|
|
<Alert variant="neutral" padding="tight">
|
||
|
|
<AvatarWithText
|
||
|
|
avatarClass="h-12 w-12"
|
||
|
|
avatarSrc={`${NEXT_PUBLIC_WEBAPP_URL()}/api/avatar/${team.avatarImageId}`}
|
||
|
|
avatarFallback={extractInitials(
|
||
|
|
(team.teamEmail?.name || team.emailVerification?.name) ?? '',
|
||
|
|
)}
|
||
|
|
primaryText={
|
||
|
|
<span className="text-foreground/80 text-sm font-semibold">
|
||
|
|
{team.teamEmail?.name || team.emailVerification?.name}
|
||
|
|
</span>
|
||
|
|
}
|
||
|
|
secondaryText={
|
||
|
|
<span className="text-sm">
|
||
|
|
{team.teamEmail?.email || team.emailVerification?.email}
|
||
|
|
</span>
|
||
|
|
}
|
||
|
|
/>
|
||
|
|
</Alert>
|
||
|
|
|
||
|
|
<fieldset disabled={isDeletingTeamEmail || isDeletingTeamEmailVerification}>
|
||
|
|
<DialogFooter>
|
||
|
|
<Button type="button" variant="secondary" onClick={() => setOpen(false)}>
|
||
|
|
Cancel
|
||
|
|
</Button>
|
||
|
|
|
||
|
|
<Button
|
||
|
|
type="submit"
|
||
|
|
variant="destructive"
|
||
|
|
loading={isDeletingTeamEmail || isDeletingTeamEmailVerification}
|
||
|
|
onClick={async () => onRemove()}
|
||
|
|
>
|
||
|
|
Remove
|
||
|
|
</Button>
|
||
|
|
</DialogFooter>
|
||
|
|
</fieldset>
|
||
|
|
</DialogContent>
|
||
|
|
</Dialog>
|
||
|
|
);
|
||
|
|
};
|