Skip to content

Commit 75112bc

Browse files
committed
feat: imported main hook for sign-in-form to sign in form component
1 parent a6d001b commit 75112bc

File tree

1 file changed

+14
-35
lines changed

1 file changed

+14
-35
lines changed

src/app/signin/components/sign-in-form.tsx

+14-35
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,24 @@
11
"use client";
22

3-
import { useEffect, useCallback } from "react";
4-
import { useSignInCtx } from "@/app/signin/hooks/use-sign-in";
5-
import { useSignInDispatch } from "@/app/signin/hooks/use-sign-in-dispatch";
6-
import { useRouter } from "next/navigation";
7-
import { useForm } from "react-hook-form";
8-
import { SignInSchema } from "@/app/signin/schemas/sign-in-schema";
9-
import { zodResolver } from "@hookform/resolvers/zod";
10-
import { getObjectErrors } from "@/app/utils/get-object-errors";
11-
import { SignInFormSchema } from "@/app/signin/interfaces/sign-in-form-schema";
3+
import { useEffect } from "react";
124
import { SignIn } from "@/app/signin/components/index";
5+
import { useSignInForm } from "@/app/signin/hooks/use-sign-in-form";
136

147
export function SignInForm() {
15-
const router = useRouter();
16-
17-
const { error, success, showLoading, shouldOpenForgetPasswordModal } =
18-
useSignInCtx();
19-
20-
const { signInUser, setOpenForgetPasswordModal } = useSignInDispatch();
21-
228
const {
239
register,
2410
handleSubmit,
25-
formState: { errors },
26-
} = useForm<SignInFormSchema>({
27-
resolver: zodResolver(SignInSchema),
28-
});
29-
30-
const handleFormSubmit = (data: SignInFormSchema) => {
31-
const { success } = SignInSchema.safeParse(data);
32-
33-
if (success) signInUser(data);
34-
};
35-
36-
const handleSignUp = () => {
37-
router.push("/signup");
38-
};
39-
40-
const memoizedHandleSignIn = useCallback(() => {
41-
router.push("/about");
42-
}, [router]);
11+
errors,
12+
handleFormSubmit,
13+
memoizedHandleSignIn,
14+
handleSignUp,
15+
setOpenForgetPasswordModal,
16+
getObjectErrors,
17+
error,
18+
success,
19+
showLoading,
20+
shouldOpenForgetPasswordModal,
21+
} = useSignInForm();
4322

4423
useEffect(() => {
4524
if (success !== null && success === true && error === null) {
@@ -51,7 +30,7 @@ export function SignInForm() {
5130
if (errors) {
5231
getObjectErrors(errors);
5332
}
54-
}, [errors]);
33+
}, [errors, getObjectErrors]);
5534

5635
return (
5736
<SignIn.Root>

0 commit comments

Comments
 (0)