201 lines
6.7 KiB
TypeScript
201 lines
6.7 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import * as z from "zod";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage
|
|
} from "@/components/ui/form";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle
|
|
} from "@/components/ui/card";
|
|
import { Alert, AlertDescription } from "@/components/ui/alert";
|
|
import { SignUpResponse } from "@server/routers/auth";
|
|
import { useRouter } from "next/navigation";
|
|
import { passwordSchema } from "@server/auth/passwordSchema";
|
|
import { AxiosResponse } from "axios";
|
|
import { formatAxiosError } from "@app/lib/api";
|
|
import { createApiClient } from "@app/lib/api";
|
|
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
import Image from "next/image";
|
|
import { cleanRedirect } from "@app/lib/cleanRedirect";
|
|
|
|
type SignupFormProps = {
|
|
redirect?: string;
|
|
inviteId?: string;
|
|
inviteToken?: string;
|
|
};
|
|
|
|
const formSchema = z
|
|
.object({
|
|
email: z.string().email({ message: "Invalid email address" }),
|
|
password: passwordSchema,
|
|
confirmPassword: passwordSchema
|
|
})
|
|
.refine((data) => data.password === data.confirmPassword, {
|
|
path: ["confirmPassword"],
|
|
message: "Passwords do not match"
|
|
});
|
|
|
|
export default function SignupForm({
|
|
redirect,
|
|
inviteId,
|
|
inviteToken
|
|
}: SignupFormProps) {
|
|
const router = useRouter();
|
|
|
|
const api = createApiClient(useEnvContext());
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
defaultValues: {
|
|
email: "",
|
|
password: "",
|
|
confirmPassword: ""
|
|
}
|
|
});
|
|
|
|
async function onSubmit(values: z.infer<typeof formSchema>) {
|
|
const { email, password } = values;
|
|
|
|
setLoading(true);
|
|
const res = await api
|
|
.put<AxiosResponse<SignUpResponse>>("/auth/signup", {
|
|
email,
|
|
password,
|
|
inviteId,
|
|
inviteToken
|
|
})
|
|
.catch((e) => {
|
|
console.error(e);
|
|
setError(
|
|
formatAxiosError(e, "An error occurred while signing up")
|
|
);
|
|
});
|
|
|
|
if (res && res.status === 200) {
|
|
setError(null);
|
|
|
|
if (res.data?.data?.emailVerificationRequired) {
|
|
if (redirect) {
|
|
const safe = cleanRedirect(redirect);
|
|
router.push(`/auth/verify-email?redirect=${safe}`);
|
|
} else {
|
|
router.push("/auth/verify-email");
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (redirect) {
|
|
const safe = cleanRedirect(redirect);
|
|
router.push(safe);
|
|
} else {
|
|
router.push("/");
|
|
}
|
|
}
|
|
|
|
setLoading(false);
|
|
}
|
|
|
|
return (
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader>
|
|
<div className="flex flex-row items-center justify-center">
|
|
<Image
|
|
src={`/logo/pangolin_orange.svg`}
|
|
alt="Pangolin Logo"
|
|
width="100"
|
|
height="100"
|
|
/>
|
|
</div>
|
|
<div className="text-center space-y-1">
|
|
<h1 className="text-2xl font-bold mt-1">
|
|
Welcome to Pangolin
|
|
</h1>
|
|
<p className="text-sm text-muted-foreground">
|
|
Create an account to get started
|
|
</p>
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="space-y-4"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="password"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="confirmPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Confirm Password</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="password"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
{error && (
|
|
<Alert variant="destructive">
|
|
<AlertDescription>{error}</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
<Button type="submit" className="w-full">
|
|
Create Account
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|