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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
|
"use client";
import { useEffect, useState } from "react";
import { useRouter } from "next/navigation";
import { ActionButton } from "@/components/ui/action-button";
import { Alert, AlertDescription } from "@/components/ui/alert";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import { Input } from "@/components/ui/input";
import { api } from "@/lib/trpc";
import { zodResolver } from "@hookform/resolvers/zod";
import { TRPCClientError } from "@trpc/client";
import { AlertCircle, Clock, Loader2, Mail, UserPlus } from "lucide-react";
import { signIn } from "next-auth/react";
import { useForm } from "react-hook-form";
import { z } from "zod";
const inviteAcceptSchema = z
.object({
name: z.string().min(1, "Name is required"),
password: z.string().min(8, "Password must be at least 8 characters"),
confirmPassword: z
.string()
.min(8, "Password must be at least 8 characters"),
})
.refine((data) => data.password === data.confirmPassword, {
message: "Passwords don't match",
path: ["confirmPassword"],
});
interface InviteAcceptFormProps {
token: string;
}
export default function InviteAcceptForm({ token }: InviteAcceptFormProps) {
const router = useRouter();
const form = useForm<z.infer<typeof inviteAcceptSchema>>({
resolver: zodResolver(inviteAcceptSchema),
});
const [errorMessage, setErrorMessage] = useState<string | null>(null);
const {
isPending: loading,
data: inviteData,
error,
} = api.invites.get.useQuery({ token });
useEffect(() => {
if (error) {
setErrorMessage(error.message);
}
}, [error]);
const acceptInviteMutation = api.invites.accept.useMutation();
const handleBackToSignIn = () => {
router.push("/signin");
};
if (loading) {
return (
<Card className="w-full">
<CardHeader className="text-center">
<CardTitle className="text-2xl font-bold">
Loading Invitation
</CardTitle>
<CardDescription>
Please wait while we verify your invitation...
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-center">
<Loader2 className="h-8 w-8 animate-spin text-blue-600" />
</div>
</CardContent>
</Card>
);
}
if (!inviteData) {
return (
<Card className="w-full">
<CardHeader className="text-center">
<CardTitle className="text-2xl font-bold">
Invalid Invitation
</CardTitle>
<CardDescription>
This invitation link is not valid or has been removed.
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-center">
<AlertCircle className="h-12 w-12 text-red-500" />
</div>
{errorMessage && (
<Alert variant="destructive">
<AlertCircle className="h-4 w-4" />
<AlertDescription>{errorMessage}</AlertDescription>
</Alert>
)}
<Button onClick={handleBackToSignIn} className="w-full">
Back to Sign In
</Button>
</CardContent>
</Card>
);
}
if (inviteData.expired) {
return (
<Card className="w-full">
<CardHeader className="text-center">
<CardTitle className="text-2xl font-bold">
Invitation Expired
</CardTitle>
<CardDescription>
This invitation link has expired and is no longer valid.
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-center">
<Clock className="h-12 w-12 text-orange-500" />
</div>
<div className="space-y-2 text-center">
<p className="text-sm text-gray-600">
Please contact an administrator to request a new invitation.
</p>
</div>
<Button
onClick={handleBackToSignIn}
variant="outline"
className="w-full"
>
Back to Sign In
</Button>
</CardContent>
</Card>
);
}
return (
<Card className="w-full">
<CardHeader className="text-center">
<CardTitle className="text-2xl font-bold">
Accept Your Invitation
</CardTitle>
<CardDescription>
Complete your account setup to join Karakeep
</CardDescription>
</CardHeader>
<CardContent className="space-y-6">
<div className="flex items-center justify-center">
<UserPlus className="h-12 w-12 text-blue-600" />
</div>
<div className="space-y-2 text-center">
<div className="flex items-center justify-center space-x-2">
<Mail className="h-4 w-4 text-gray-500" />
<p className="text-sm text-gray-600">Invited email:</p>
</div>
<p className="font-medium text-gray-900">{inviteData.email}</p>
</div>
<Form {...form}>
<form
onSubmit={form.handleSubmit(async (value) => {
try {
await acceptInviteMutation.mutateAsync({
token,
name: value.name,
password: value.password,
});
// Sign in the user after successful account creation
const resp = await signIn("credentials", {
redirect: false,
email: inviteData.email,
password: value.password,
});
if (!resp || !resp.ok || resp.error) {
setErrorMessage(
resp?.error ??
"Account created but sign in failed. Please try signing in manually.",
);
return;
}
router.replace("/");
} catch (e) {
if (e instanceof TRPCClientError) {
setErrorMessage(e.message);
} else {
setErrorMessage("An unexpected error occurred");
}
}
})}
className="space-y-4"
>
{errorMessage && (
<Alert variant="destructive">
<AlertCircle className="h-4 w-4" />
<AlertDescription>{errorMessage}</AlertDescription>
</Alert>
)}
<FormField
control={form.control}
name="name"
render={({ field }) => (
<FormItem>
<FormLabel>Full Name</FormLabel>
<FormControl>
<Input
type="text"
placeholder="Enter your full name"
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="password"
render={({ field }) => (
<FormItem>
<FormLabel>Password</FormLabel>
<FormControl>
<Input
type="password"
placeholder="Create a password"
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="confirmPassword"
render={({ field }) => (
<FormItem>
<FormLabel>Confirm Password</FormLabel>
<FormControl>
<Input
type="password"
placeholder="Confirm your password"
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<ActionButton
type="submit"
loading={
form.formState.isSubmitting || acceptInviteMutation.isPending
}
className="w-full"
>
{form.formState.isSubmitting || acceptInviteMutation.isPending ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Creating Account...
</>
) : (
"Create Account & Sign In"
)}
</ActionButton>
<Button
type="button"
variant="ghost"
onClick={handleBackToSignIn}
className="w-full"
>
Back to Sign In
</Button>
</form>
</Form>
</CardContent>
</Card>
);
}
|