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