1 | import * as Yup from 'yup';
|
---|
2 | import { useMemo } from 'react';
|
---|
3 | import { useForm } from 'react-hook-form';
|
---|
4 | import { zodResolver } from '@hookform/resolvers/zod';
|
---|
5 | // @mui
|
---|
6 | import LoadingButton from '@mui/lab/LoadingButton';
|
---|
7 | import Box from '@mui/material/Box';
|
---|
8 | import Alert from '@mui/material/Alert';
|
---|
9 | import Button from '@mui/material/Button';
|
---|
10 | import Dialog from '@mui/material/Dialog';
|
---|
11 | import MenuItem from '@mui/material/MenuItem';
|
---|
12 | import DialogTitle from '@mui/material/DialogTitle';
|
---|
13 | import DialogActions from '@mui/material/DialogActions';
|
---|
14 | import DialogContent from '@mui/material/DialogContent';
|
---|
15 | // types
|
---|
16 | import { Customer, updateCustomerSchema } from 'src/schemas';
|
---|
17 | // assets
|
---|
18 | import { countries } from 'src/assets/data';
|
---|
19 | // components
|
---|
20 | import Iconify from 'src/components/iconify';
|
---|
21 | import { useSnackbar } from 'src/components/snackbar';
|
---|
22 | import FormProvider, { RHFSelect, RHFTextField, RHFAutocomplete } from 'src/components/hook-form';
|
---|
23 | import { updateCustomer } from 'src/api/customer';
|
---|
24 |
|
---|
25 | // ----------------------------------------------------------------------
|
---|
26 |
|
---|
27 | export const USER_STATUS_OPTIONS = [
|
---|
28 | { value: 'active', label: 'Active' },
|
---|
29 | { value: 'banned', label: 'Banned' },
|
---|
30 | { value: 'inactive', label: 'Inactive' },
|
---|
31 | ];
|
---|
32 |
|
---|
33 | type Props = {
|
---|
34 | open: boolean;
|
---|
35 | onClose: VoidFunction;
|
---|
36 | currentCustomer?: Customer;
|
---|
37 | };
|
---|
38 |
|
---|
39 | export default function CustomerQuickEditForm({ currentCustomer, open, onClose }: Props) {
|
---|
40 | const { enqueueSnackbar } = useSnackbar();
|
---|
41 |
|
---|
42 | // @ts-ignore
|
---|
43 | const defaultValues: Customer = useMemo(
|
---|
44 | () => ({
|
---|
45 | name: currentCustomer?.name || '',
|
---|
46 | representative: currentCustomer?.representative || '',
|
---|
47 | email: currentCustomer?.email || '',
|
---|
48 | logoUrl: currentCustomer?.logoUrl || '',
|
---|
49 | address: {
|
---|
50 | country: currentCustomer?.address?.country || '',
|
---|
51 | state: currentCustomer?.address?.state || '',
|
---|
52 | street: currentCustomer?.address?.street || '',
|
---|
53 | zip: currentCustomer?.address?.zip || '',
|
---|
54 | city: currentCustomer?.address?.city || '',
|
---|
55 | },
|
---|
56 | vatNumber: currentCustomer?.vatNumber || '',
|
---|
57 | companyNumber: currentCustomer?.companyNumber || '',
|
---|
58 | id: currentCustomer?.id || '',
|
---|
59 | phoneNumber: currentCustomer?.phoneNumber || '',
|
---|
60 | status: currentCustomer?.status || '',
|
---|
61 | }),
|
---|
62 | [currentCustomer]
|
---|
63 | );
|
---|
64 |
|
---|
65 | const methods = useForm({
|
---|
66 | resolver: zodResolver(updateCustomerSchema),
|
---|
67 | defaultValues,
|
---|
68 | });
|
---|
69 |
|
---|
70 | const {
|
---|
71 | reset,
|
---|
72 | handleSubmit,
|
---|
73 | formState: { isSubmitting },
|
---|
74 | } = methods;
|
---|
75 |
|
---|
76 | const onSubmit = handleSubmit(async (data) => {
|
---|
77 | try {
|
---|
78 | console.log('currentCustomer', currentCustomer);
|
---|
79 | if (!currentCustomer) return;
|
---|
80 | console.log('data', data);
|
---|
81 | await updateCustomer(currentCustomer.id!, data);
|
---|
82 |
|
---|
83 | reset();
|
---|
84 | onClose();
|
---|
85 | enqueueSnackbar('Update success!');
|
---|
86 | console.info('DATA', data);
|
---|
87 | } catch (error) {
|
---|
88 | console.error(error);
|
---|
89 | enqueueSnackbar('Update failed!', { variant: 'error' });
|
---|
90 | }
|
---|
91 | });
|
---|
92 |
|
---|
93 | return (
|
---|
94 | <Dialog
|
---|
95 | fullWidth
|
---|
96 | maxWidth={false}
|
---|
97 | open={open}
|
---|
98 | onClose={onClose}
|
---|
99 | PaperProps={{
|
---|
100 | sx: { maxWidth: 720 },
|
---|
101 | }}
|
---|
102 | >
|
---|
103 | <FormProvider methods={methods} onSubmit={onSubmit}>
|
---|
104 | <DialogTitle>Quick Update</DialogTitle>
|
---|
105 |
|
---|
106 | <DialogContent>
|
---|
107 | {/* <Alert variant="outlined" severity="info" sx={{ mb: 3 }}>
|
---|
108 | Account is waiting for confirmation
|
---|
109 | </Alert> */}
|
---|
110 |
|
---|
111 | <Box
|
---|
112 | rowGap={3}
|
---|
113 | columnGap={2}
|
---|
114 | display="grid"
|
---|
115 | sx={{ mt: 3 }}
|
---|
116 | gridTemplateColumns={{
|
---|
117 | xs: 'repeat(1, 1fr)',
|
---|
118 | sm: 'repeat(2, 1fr)',
|
---|
119 | }}
|
---|
120 | >
|
---|
121 | <RHFSelect name="status" label="Status">
|
---|
122 | <MenuItem key="none" value="" />
|
---|
123 | {USER_STATUS_OPTIONS.map((status) => (
|
---|
124 | <MenuItem key={status.value} value={status.value}>
|
---|
125 | {status.label}
|
---|
126 | </MenuItem>
|
---|
127 | ))}
|
---|
128 | </RHFSelect>
|
---|
129 |
|
---|
130 | <Box sx={{ display: { xs: 'none', sm: 'block' } }} />
|
---|
131 |
|
---|
132 | <RHFTextField name="name" label="Name" />
|
---|
133 | <RHFTextField name="representative" label="Representative" />
|
---|
134 | <RHFTextField name="email" label="Email Address" />
|
---|
135 | <RHFTextField name="phoneNumber" label="Phone Number" />
|
---|
136 |
|
---|
137 | <RHFTextField name="address.country" label="Country" />
|
---|
138 |
|
---|
139 | {/* <RHFAutocomplete
|
---|
140 | name="address.country"
|
---|
141 | label="Country"
|
---|
142 | options={countries.map((country) => country.code)}
|
---|
143 | getOptionLabel={(option) => option}
|
---|
144 | renderOption={(props, option) => {
|
---|
145 | const { code, label, phone } = countries.filter(
|
---|
146 | (country) => country.label === option
|
---|
147 | )[0];
|
---|
148 |
|
---|
149 | if (!label) {
|
---|
150 | return null;
|
---|
151 | }
|
---|
152 |
|
---|
153 | return (
|
---|
154 | <li {...props} key={label}>
|
---|
155 | <Iconify
|
---|
156 | key={label}
|
---|
157 | icon={`circle-flags:${code.toLowerCase()}`}
|
---|
158 | width={28}
|
---|
159 | sx={{ mr: 1 }}
|
---|
160 | />
|
---|
161 | {label} ({code}) +{phone}
|
---|
162 | </li>
|
---|
163 | );
|
---|
164 | }}
|
---|
165 | /> */}
|
---|
166 |
|
---|
167 | <RHFTextField name="address.state" label="State/Region" />
|
---|
168 | <RHFTextField name="address.city" label="City" />
|
---|
169 | <RHFTextField name="address.street" label="Street" />
|
---|
170 | <RHFTextField name="address.zip" label="Zip/Code" />
|
---|
171 | <RHFTextField name="vatNumber" label="VAT" />
|
---|
172 | <RHFTextField name="companyNumber" label="Company Number" />
|
---|
173 | </Box>
|
---|
174 | </DialogContent>
|
---|
175 |
|
---|
176 | <DialogActions>
|
---|
177 | <Button variant="outlined" onClick={onClose}>
|
---|
178 | Cancel
|
---|
179 | </Button>
|
---|
180 |
|
---|
181 | <LoadingButton type="submit" variant="contained" loading={isSubmitting}>
|
---|
182 | Update
|
---|
183 | </LoadingButton>
|
---|
184 | </DialogActions>
|
---|
185 | </FormProvider>
|
---|
186 | </Dialog>
|
---|
187 | );
|
---|
188 | }
|
---|