|
1 |
| -import React from "react"; |
2 |
| -import SignUpForm from "@/app/signup/components/sign-up-form"; |
| 1 | +"use client"; |
| 2 | + |
| 3 | +import React, { useEffect } from "react"; |
| 4 | +import { toast } from "react-toastify"; |
| 5 | +import Image from "next/image"; |
| 6 | +import { getObjectErrors } from "@/app/utils/get-object-errors"; |
| 7 | +import { SignUp } from "@/app/signup/components/index"; |
| 8 | +import { useSignUpForm } from "@/app/signup/hooks/use-sign-up-form"; |
| 9 | + |
| 10 | +export default function SignUpPage() { |
| 11 | + const { |
| 12 | + register, |
| 13 | + handleSubmit, |
| 14 | + file, |
| 15 | + handleCancelSignUp, |
| 16 | + handleFormSubmit, |
| 17 | + errors, |
| 18 | + showLoading, |
| 19 | + success, |
| 20 | + error, |
| 21 | + memoizedHandleAfterSignUp, |
| 22 | + } = useSignUpForm(); |
| 23 | + |
| 24 | + useEffect(() => { |
| 25 | + if (errors) { |
| 26 | + getObjectErrors(errors); |
| 27 | + } |
| 28 | + }, [errors]); |
| 29 | + |
| 30 | + useEffect(() => { |
| 31 | + if (success !== null && success === true && error === null) { |
| 32 | + toast.success("User signed up with success!"); |
| 33 | + memoizedHandleAfterSignUp(); |
| 34 | + } |
| 35 | + }, [error, success, memoizedHandleAfterSignUp]); |
3 | 36 |
|
4 |
| -export default function Home() { |
5 | 37 | return (
|
6 |
| - <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]"> |
7 |
| - <main className="flex flex-col gap-8 row-start-2 items-center sm:items-start"> |
8 |
| - <SignUpForm /> |
9 |
| - </main> |
10 |
| - </div> |
| 38 | + <SignUp.Root> |
| 39 | + <SignUp.Content> |
| 40 | + <SignUp.Form onSubmit={handleSubmit(handleFormSubmit)}> |
| 41 | + <Image |
| 42 | + alt="User profile image" |
| 43 | + src={(() => { |
| 44 | + if (file && file.length > 0) { |
| 45 | + const url = URL.createObjectURL(file[0]); |
| 46 | + return url; |
| 47 | + } |
| 48 | + |
| 49 | + return "/images/default_avatar.png"; |
| 50 | + })()} |
| 51 | + quality={100} |
| 52 | + width={200} |
| 53 | + height={200} |
| 54 | + crossOrigin="use-credentials" |
| 55 | + /> |
| 56 | + |
| 57 | + <SignUp.InputWrapper> |
| 58 | + <SignUp.Label id={"file"}>Profile image</SignUp.Label> |
| 59 | + <SignUp.Input |
| 60 | + register={register("file", { required: false })} |
| 61 | + id="file" |
| 62 | + type="file" |
| 63 | + /> |
| 64 | + </SignUp.InputWrapper> |
| 65 | + |
| 66 | + <SignUp.InputWrapper> |
| 67 | + <SignUp.Label id={"name"}>Name</SignUp.Label> |
| 68 | + <SignUp.Input |
| 69 | + register={register("name", { required: true })} |
| 70 | + id="name" |
| 71 | + /> |
| 72 | + </SignUp.InputWrapper> |
| 73 | + |
| 74 | + <SignUp.InputWrapper> |
| 75 | + <SignUp.Label id={"email"}>Email</SignUp.Label> |
| 76 | + <SignUp.Input |
| 77 | + id="email" |
| 78 | + type="email" |
| 79 | + register={register("email", { required: true })} |
| 80 | + /> |
| 81 | + </SignUp.InputWrapper> |
| 82 | + |
| 83 | + <SignUp.InputWrapper> |
| 84 | + <SignUp.Label id={"username"}>Username</SignUp.Label> |
| 85 | + <SignUp.Input |
| 86 | + id="username" |
| 87 | + register={register("username", { required: true })} |
| 88 | + /> |
| 89 | + </SignUp.InputWrapper> |
| 90 | + |
| 91 | + <SignUp.InputWrapper> |
| 92 | + <SignUp.Label id={"password"}>Password</SignUp.Label> |
| 93 | + <SignUp.Input |
| 94 | + id="password" |
| 95 | + type="password" |
| 96 | + register={register("password", { required: true })} |
| 97 | + /> |
| 98 | + </SignUp.InputWrapper> |
| 99 | + |
| 100 | + <SignUp.ButtonWrapper> |
| 101 | + <SignUp.Button |
| 102 | + disabled={showLoading} |
| 103 | + type="submit" |
| 104 | + model={showLoading ? "disabled" : "success"} |
| 105 | + > |
| 106 | + Sign up |
| 107 | + </SignUp.Button> |
| 108 | + |
| 109 | + <SignUp.Button |
| 110 | + disabled={showLoading} |
| 111 | + onClick={handleCancelSignUp} |
| 112 | + model={showLoading ? "disabled" : "danger"} |
| 113 | + > |
| 114 | + Cancel |
| 115 | + </SignUp.Button> |
| 116 | + </SignUp.ButtonWrapper> |
| 117 | + </SignUp.Form> |
| 118 | + </SignUp.Content> |
| 119 | + </SignUp.Root> |
11 | 120 | );
|
12 | 121 | }
|
0 commit comments