1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
"use client";
import { ActionButton } from "@/components/ui/action-button";
import { ButtonWithTooltip } from "@/components/ui/button";
import LoadingSpinner from "@/components/ui/spinner";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import { toast } from "@/components/ui/use-toast";
import { api } from "@/lib/trpc";
import { formatDistanceToNow } from "date-fns";
import { Mail, MailX, UserPlus } from "lucide-react";
import ActionConfirmingDialog from "../ui/action-confirming-dialog";
import CreateInviteDialog from "./CreateInviteDialog";
export default function InvitesList() {
const invalidateInvitesList = api.useUtils().invites.list.invalidate;
const { data: invites, isLoading } = api.invites.list.useQuery();
const { mutateAsync: revokeInvite, isPending: isRevokePending } =
api.invites.revoke.useMutation({
onSuccess: () => {
toast({
description: "Invite revoked successfully",
});
invalidateInvitesList();
},
onError: (e) => {
toast({
variant: "destructive",
description: `Failed to revoke invite: ${e.message}`,
});
},
});
const { mutateAsync: resendInvite, isPending: isResendPending } =
api.invites.resend.useMutation({
onSuccess: () => {
toast({
description: "Invite resent successfully",
});
invalidateInvitesList();
},
onError: (e) => {
toast({
variant: "destructive",
description: `Failed to resend invite: ${e.message}`,
});
},
});
if (isLoading) {
return <LoadingSpinner />;
}
const activeInvites = invites?.invites || [];
const InviteTable = ({
invites: inviteList,
title,
}: {
invites: NonNullable<typeof invites>["invites"];
title: string;
}) => (
<div className="mb-6">
{inviteList.length === 0 ? (
<p className="text-sm text-gray-500">
No {title.toLowerCase()} invites
</p>
) : (
<Table>
<TableHeader className="bg-gray-200">
<TableHead>Email</TableHead>
<TableHead>Invited By</TableHead>
<TableHead>Created</TableHead>
<TableHead>Actions</TableHead>
</TableHeader>
<TableBody>
{inviteList.map((invite) => (
<TableRow key={invite.id}>
<TableCell className="py-2">{invite.email}</TableCell>
<TableCell className="py-2">{invite.invitedBy.name}</TableCell>
<TableCell className="py-2">
{formatDistanceToNow(new Date(invite.createdAt), {
addSuffix: true,
})}
</TableCell>
<TableCell className="flex gap-1 py-2">
{
<>
<ButtonWithTooltip
tooltip="Resend Invite"
variant="outline"
size="sm"
onClick={() => resendInvite({ inviteId: invite.id })}
disabled={isResendPending}
>
<Mail size={14} />
</ButtonWithTooltip>
<ActionConfirmingDialog
title="Revoke Invite"
description={`Are you sure you want to revoke the invite for ${invite.email}? This action cannot be undone.`}
actionButton={(setDialogOpen) => (
<ActionButton
variant="destructive"
loading={isRevokePending}
onClick={async () => {
await revokeInvite({ inviteId: invite.id });
setDialogOpen(false);
}}
>
Revoke
</ActionButton>
)}
>
<ButtonWithTooltip
tooltip="Revoke Invite"
variant="outline"
size="sm"
>
<MailX size={14} color="red" />
</ButtonWithTooltip>
</ActionConfirmingDialog>
</>
}
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
)}
</div>
);
return (
<div className="flex flex-col gap-4">
<div className="mb-2 flex items-center justify-between text-xl font-medium">
<span>User Invitations ({activeInvites.length})</span>
<CreateInviteDialog>
<ButtonWithTooltip tooltip="Send Invite" variant="outline">
<UserPlus size={16} />
</ButtonWithTooltip>
</CreateInviteDialog>
</div>
<InviteTable invites={activeInvites} title="Invites" />
</div>
);
}
|