summaryrefslogtreecommitdiff
path: root/src-migrate/modules/register/stores/usePengajuanTempoStore.ts
blob: 6f3bc13d6306e405af7d409eba9c7d3b8ec6cd3d (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
84
85
86
87
88
89
90
91
92
93
import { create } from 'zustand';
import { TempoProps } from '~/types/tempo';
import { TempoSchema } from '~/validations/tempo';
import { boolean, ZodError } from 'zod';

type State = {
  form: TempoProps;
  errors: {
    [key in keyof TempoProps]?: string;
  };
  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;
  resetForm: () => void;
};

export const usePengajuanTempoStore = create<State & Action>((set, get) => ({
  form: {
    name: '',
    industry_id: '',
    street: '',
    state: '',
    city: '',
    zip: '',
    mobile: '',
    bankName: '',
    accountName: '',
    accountNumber: '',
    estimasi: '',
    tempoDuration: '',
    bersedia: '',
    categoryProduk: '',
    tempoLimit: '',
  },
  updateForm: (name, value) =>
    set((state) => ({ form: { ...state.form, [name]: value } })),

  errors: {},
  validate: () => {
    try {
      TempoSchema.parse(get().form);
      set({ errors: {} });
    } catch (error) {
      if (error instanceof ZodError) {
        const errors: State['errors'] = {};
        error.errors.forEach(
          (e) => (errors[e.path[0] as keyof TempoProps] = e.message)
        );
        set({ errors });
      }
    }
  },

  isCheckedTNC: false,
  toggleCheckTNC: () => set((state) => ({ isCheckedTNC: !state.isCheckedTNC })),

  isOpenTNC: false,
  openTNC: () => set(() => ({ isOpenTNC: true })),
  closeTNC: () => set(() => ({ isOpenTNC: false })),

  isValidCaptcha: false,
  updateValidCaptcha: (value) => set(() => ({ isValidCaptcha: value })),

  resetForm: () =>
    set({
      form: {
        name: '',
        industry_id: '',
        street: '',
        state: '',
        city: '',
        zip: '',
        mobile: '',
        bankName: '',
        accountName: '',
        accountNumber: '',
        estimasi: '',
        tempoDuration: '',
        bersedia: '',
        categoryProduk: '',
        tempoLimit: '',
      },
    }),
}));