import { useState, useMemo } from 'react'; // @mui import Paper from '@mui/material/Paper'; import Stack from '@mui/material/Stack'; import Portal from '@mui/material/Portal'; import Backdrop from '@mui/material/Backdrop'; import IconButton from '@mui/material/IconButton'; import Typography from '@mui/material/Typography'; // hooks import { useBoolean } from 'src/hooks/use-boolean'; import { useResponsive } from 'src/hooks/use-responsive'; // components import Iconify from 'src/components/iconify'; import Editor from 'src/components/editor'; import { Invoice } from 'mvpmasters-shared'; import FormProvider from 'src/components/hook-form/form-provider'; import { RHFTextField } from 'src/components/hook-form'; import { useForm } from 'react-hook-form'; import { LoadingButton } from '@mui/lab'; import { enqueueSnackbar } from 'notistack'; import { collectionRef, collections, createDocId, createDocument, firestoreBatch, } from 'src/lib/firestore'; import { storage } from 'src/lib/firebase'; import { getDownloadURL, ref } from 'firebase/storage'; import { increment } from 'firebase/firestore'; import { mutate } from 'swr'; // ---------------------------------------------------------------------- const ZINDEX = 1998; const POSITION = 24; type Props = { invoice: Invoice | null; onCloseCompose: VoidFunction; invoiceMutationKey: string[]; }; export default function MailCompose({ invoice, onCloseCompose, invoiceMutationKey }: Props) { const smUp = useResponsive('up', 'sm'); const fullScreen = useBoolean(false); // const handleChangeMessage = useCallback((value: string) => { // setMessage(value); // }, []); const defaultValues = useMemo( () => ({ to: invoice?.invoiceTo?.email || '', subject: `New Invoice for ${invoice?.month} - MVP Masters`, message: `

Dear ${ invoice?.invoiceTo?.representative || '' },

We hope this email finds you well. Please find attached the invoice for ${invoice?.month}, detailing the work MVP Masters has completed during that period. We appreciate your prompt attention to this invoice.

Should you have any questions or require further clarification on any items, please don't hesitate to reply to this email.

Thank you for your continued partnership and trust in MVP Masters.


Warm regards,

Finance Team

MVP Masters

`, }), [invoice] ); const methods = useForm({ defaultValues, }); const { reset, handleSubmit, watch, setValue, formState: { isSubmitting }, } = methods; const values = watch(); const onSubmit = handleSubmit(async (data) => { try { if (!invoice) return; // await new Promise((resolve) => setTimeout(resolve, 500)); const pdfFilename = invoice.pdfRef?.split('/').pop() as string; const invoicePDFRef = ref(storage, invoice.pdfRef); const url = await getDownloadURL(invoicePDFRef); const mailData = { from: ' finance@mvpmasters.com', to: invoice.invoiceTo.email, message: { subject: data.subject, html: data.message, attachments: [ { filename: pdfFilename, path: url, }, ], }, }; const invoiceData = { sent: increment(1), status: 'pending', }; const mailId = createDocId(collections.mail); // write to DB await firestoreBatch([ { docPath: `${collections.mail}/${mailId}`, type: 'set', data: mailData, }, { docPath: `${collections.invoice}/${invoice.id}`, type: 'set', data: invoiceData, }, ]); mutate(invoiceMutationKey); reset(); onCloseCompose(); enqueueSnackbar('Invoice sent!'); console.info('DATA', data); } catch (error) { console.error(error); } }); return ( {(fullScreen.value || !smUp) && } theme.customShadows.dropdown, ...(fullScreen.value && { m: 0, right: POSITION / 2, bottom: POSITION / 2, width: `calc(100% - ${POSITION}px)`, height: `calc(100% - ${POSITION}px)`, }), }} > theme.spacing(1.5, 1, 1.5, 2), }} > Inv. {invoice?.invoiceNumber} - {invoice?.invoiceTo?.name} {/* // // Cc // // // Bcc // // // } sx={{ px: 2, height: 48, borderBottom: (theme) => `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`, }} /> */} {/* `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`, }} /> */} setValue('message', value)} placeholder="Type a message" sx={{ '& .ql-editor': {}, ...(fullScreen.value && { height: 1, '& .quill': { height: 1, }, '& .ql-editor': { maxHeight: 'unset', }, }), }} /> } > Send ); }