summaryrefslogtreecommitdiff
path: root/src-migrate/common/stores/useRegisterStore.ts
blob: d6c7db2a57d316a97a13c8218d464ddd1c2635c0 (plain)
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
import { create } from 'zustand';
import { RegisterProps } from '../types/auth';
import { registerSchema } from '../validations/auth';
import { ValidationError } from 'yup';

type State = {
  form: RegisterProps;
  errors: {
    [key in keyof RegisterProps]?: string;
  };
  isValid: boolean;
  isCheckedTNC: boolean;
  isOpenTNC: boolean;
  isValidCaptcha: boolean;
};

type Action = {
  updateForm: (name: string, value: string) => void;
  updateValidCaptcha: (value: boolean) => void;
  toggleCheckTNC: () => void;
  openTNC: () => void;
  closeTNC: () => void;
  validate: () => void;
};

export const useRegisterStore = create<State & Action>((set, get) => ({
  form: {
    company: '',
    name: '',
    email: '',
    password: '',
    phone: '',
  },
  errors: {},
  validate: () =>
    registerSchema
      .validate(get().form, { abortEarly: false })
      .then(() => {
        set({
          errors: {},
          isValid: false,
        });
      })
      .catch((err: ValidationError) => {
        const validationErrors: State['errors'] = {};
        err.inner.forEach(
          (e) => (validationErrors[e.path as keyof RegisterProps] = e.message)
        );
        set({
          errors: validationErrors,
          isValid: false,
        });
      }),
  isValid: false,
  isCheckedTNC: false,
  isOpenTNC: false,
  isValidCaptcha: false,
  updateForm: (name, value) =>
    set((state) => {
      const updatedForm = { ...state.form, [name]: value };

      const fieldKeys = Object.keys(
        updatedForm
      ) as (keyof typeof updatedForm)[];

      const allFieldsValid = fieldKeys.every((key) => {
        const value = updatedForm[key];

        if (key === 'company') return true;

        return value !== '';
      });

      return {
        form: updatedForm,
        isValid: allFieldsValid,
      };
    }),
  toggleCheckTNC: () => set((state) => ({ isCheckedTNC: !state.isCheckedTNC })),
  openTNC: () => set(() => ({ isOpenTNC: true })),
  closeTNC: () => set(() => ({ isOpenTNC: false })),
  updateValidCaptcha: (value) => set(() => ({ isValidCaptcha: value })),
}));