import * as Yup from 'yup'; import { useMemo } from 'react'; import { useForm } from 'react-hook-form'; import { zodResolver } from '@hookform/resolvers/zod'; // @mui import LoadingButton from '@mui/lab/LoadingButton'; import Box from '@mui/material/Box'; import Alert from '@mui/material/Alert'; import Button from '@mui/material/Button'; import Dialog from '@mui/material/Dialog'; import MenuItem from '@mui/material/MenuItem'; import DialogTitle from '@mui/material/DialogTitle'; import DialogActions from '@mui/material/DialogActions'; import DialogContent from '@mui/material/DialogContent'; // types import { Customer, customerSchema } from 'src/schemas'; // assets import { countries } from 'src/assets/data'; // components import Iconify from 'src/components/iconify'; import { useSnackbar } from 'src/components/snackbar'; import FormProvider, { RHFSelect, RHFTextField, RHFAutocomplete } from 'src/components/hook-form'; import { doc, setDoc } from 'firebase/firestore'; import { db } from 'src/lib/firebase'; import { mutate } from 'swr'; import { collections } from 'src/lib/firestore'; // ---------------------------------------------------------------------- export const USER_STATUS_OPTIONS = [ { value: 'active', label: 'Active' }, { value: 'banned', label: 'Banned' }, { value: 'inactive', label: 'Inactive' }, ]; type Props = { open: boolean; onClose: VoidFunction; currentCustomer?: Customer; }; export default function CustomerQuickEditForm({ currentCustomer, open, onClose }: Props) { const { enqueueSnackbar } = useSnackbar(); // @ts-ignore const defaultValues: Customer = useMemo( () => ({ name: currentCustomer?.name || '', representative: currentCustomer?.representative || '', email: currentCustomer?.email || '', logoUrl: currentCustomer?.logoUrl || '', address: { country: currentCustomer?.address?.country || '', state: currentCustomer?.address?.state || '', street: currentCustomer?.address?.street || '', zip: currentCustomer?.address?.zip || '', city: currentCustomer?.address?.city || '', }, vatNumber: currentCustomer?.vatNumber || '', companyId: currentCustomer?.companyId || '', companyNumber: currentCustomer?.companyNumber || '', id: currentCustomer?.id || '', phoneNumber: currentCustomer?.phoneNumber || '', status: currentCustomer?.status || '', }), [currentCustomer] ); const methods = useForm({ resolver: zodResolver(customerSchema), defaultValues, }); const { reset, handleSubmit, formState: { isSubmitting }, } = methods; const onSubmit = handleSubmit(async (data) => { try { if (!currentCustomer) return; // await new Promise((resolve) => setTimeout(resolve, 500)); const docRef = doc(db, 'customers', currentCustomer.id!); await setDoc(docRef, data, { merge: true }); mutate(collections.customer); reset(); onClose(); enqueueSnackbar('Update success!'); console.info('DATA', data); } catch (error) { console.error(error); } }); return ( Quick Update {/* Account is waiting for confirmation */} {USER_STATUS_OPTIONS.map((status) => ( {status.label} ))} {/* country.code)} getOptionLabel={(option) => option} renderOption={(props, option) => { const { code, label, phone } = countries.filter( (country) => country.label === option )[0]; if (!label) { return null; } return (
  • {label} ({code}) +{phone}
  • ); }} /> */}
    Update
    ); }