summaryrefslogtreecommitdiff
path: root/src-migrate/modules/register/components/Form.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src-migrate/modules/register/components/Form.tsx')
-rw-r--r--src-migrate/modules/register/components/Form.tsx57
1 files changed, 2 insertions, 55 deletions
diff --git a/src-migrate/modules/register/components/Form.tsx b/src-migrate/modules/register/components/Form.tsx
index cd0b4343..38e9c810 100644
--- a/src-migrate/modules/register/components/Form.tsx
+++ b/src-migrate/modules/register/components/Form.tsx
@@ -41,15 +41,9 @@ const Form: React.FC<FormProps> = ({
updateForm(name, value);
validate();
};
-
- const mutation = useMutation({
- mutationFn: (data: RegisterProps) => registerUser(data),
- });
-
useEffect(() => {
const loadIndustries = async () => {
- const response = await mutation.mutateAsync(form);
- if (!response?.register) {
+ if (!isFormValid) {
const options: ScrollIntoViewOptions = {
behavior: 'smooth',
block: 'center',
@@ -78,55 +72,8 @@ const Form: React.FC<FormProps> = ({
loadIndustries();
}, [buttonSubmitClick, chekValid]);
- const handleSubmit = async (e: ChangeEvent<HTMLFormElement>) => {
- e.preventDefault();
-
- const response = await mutation.mutateAsync(form);
-
- if (response?.register === true) {
- const urlParams = new URLSearchParams({
- activation: 'otp',
- email: form.email,
- redirect: (router.query?.next || '/') as string,
- });
- router.push(`${router.route}?${urlParams}`);
- }
-
- const toastProps: UseToastOptions = {
- duration: 5000,
- isClosable: true,
- position: 'top',
- };
-
- switch (response?.reason) {
- case 'EMAIL_USED':
- toast({
- ...toastProps,
- title: 'Email sudah digunakan',
- status: 'warning',
- });
- break;
- case 'NOT_ACTIVE':
- const activationUrl = `${router.route}?activation=email`;
- toast({
- ...toastProps,
- title: 'Akun belum aktif',
- description: (
- <>
- Akun sudah terdaftar namun belum aktif.{' '}
- <Link href={activationUrl} className='underline'>
- Klik untuk aktivasi akun
- </Link>
- </>
- ),
- status: 'warning',
- });
- break;
- }
- };
-
return (
- <form className='mt-6 grid grid-cols-1 gap-y-4' onSubmit={handleSubmit}>
+ <form className='mt-6 grid grid-cols-1 gap-y-4'>
<div>
<label htmlFor='name' className='text-black font-bold'>
Nama Lengkap