import * as Yup from 'yup'; import { useCallback, useMemo } from 'react'; import { useForm, Controller } from 'react-hook-form'; import { zodResolver } from '@hookform/resolvers/zod'; // @mui import LoadingButton from '@mui/lab/LoadingButton'; import Box from '@mui/material/Box'; import Card from '@mui/material/Card'; import Stack from '@mui/material/Stack'; import Switch from '@mui/material/Switch'; import Grid from '@mui/material/Unstable_Grid2'; import Typography from '@mui/material/Typography'; import FormControlLabel from '@mui/material/FormControlLabel'; // utils import { fData } from 'src/utils/format-number'; // routes import { paths } from 'src/routes/paths'; import { useRouter } from 'src/routes/hooks'; // types import { Customer, NewCustomer, newCustomerSchema } from 'src/schemas'; // components import Label from 'src/components/label'; import { useSnackbar } from 'src/components/snackbar'; import FormProvider, { RHFTextField, RHFUploadAvatar } from 'src/components/hook-form'; import uploadToFirebaseStorage from 'src/utils/upload-to-firebase-storage'; import { addDoc, collection } from 'firebase/firestore'; import { db } from 'src/lib/firebase'; import { createCustomer } from 'src/api/customer'; // ---------------------------------------------------------------------- type Props = { currentUser?: Customer; }; export default function CustomerNewEditForm({ currentUser: currentCustomer }: Props) { const router = useRouter(); const { enqueueSnackbar } = useSnackbar(); const defaultValues: NewCustomer = useMemo( () => ({ name: currentCustomer?.name || '', representative: currentCustomer?.representative || '', email: currentCustomer?.email || '', logoUrl: currentCustomer?.logoUrl || null, address: currentCustomer?.address || { country: '', state: '', street: '', zip: '', city: '', }, vatNumber: currentCustomer?.vatNumber || '', companyId: currentCustomer?.companyId || '', companyNumber: currentCustomer?.companyNumber || '', id: currentCustomer?.id || '', phoneNumber: currentCustomer?.phoneNumber || '', status: 'active', }), [currentCustomer] ); const methods = useForm({ resolver: zodResolver(newCustomerSchema), defaultValues, }); const { reset, watch, control, setValue, handleSubmit, formState: { isSubmitting }, } = methods; const values = watch(); const onSubmit = handleSubmit(async (data) => { try { // await new Promise((resolve) => setTimeout(resolve, 500)); const logoFile = data.logoUrl as File & { preview: string }; const storagePath: string = `customers/${logoFile.name}`; const logoUrl = await uploadToFirebaseStorage(logoFile, storagePath); // const customersRef = collection(db, 'customers'); // await addDoc(customersRef, { ...data, logoUrl }); await createCustomer({ ...data, logoUrl }); reset(); enqueueSnackbar(currentCustomer ? 'Update success!' : 'Create success!'); router.push(paths.dashboard.customer.list); console.info('DATA', data); } catch (error) { console.error(error); } }); const handleDrop = useCallback( (acceptedFiles: File[]) => { const file = acceptedFiles[0]; const newFile = Object.assign(file, { preview: URL.createObjectURL(file), }); if (file) { setValue('logoUrl', newFile, { shouldValidate: true }); } }, [setValue] ); return ( {currentCustomer && ( )} Allowed *.jpeg, *.jpg, *.png, *.gif
max size of {fData(3145728)} } />
{currentCustomer && ( ( field.onChange(event.target.checked ? 'banned' : 'active') } /> )} /> } label={ <> Banned Apply disable account } sx={{ mx: 0, mb: 3, width: 1, justifyContent: 'space-between' }} /> )}
{/* country.label)} getOptionLabel={(option) => option} isOptionEqualToValue={(option, value) => option === value} renderOption={(props, option) => { const { code, label, phone } = countries.filter( (country) => country.label === option )[0]; if (!label) { return null; } return (
  • {label} ({code}) +{phone}
  • ); }} /> */}
    {!currentCustomer ? 'Create Customer' : 'Save Changes'}
    ); }