import React from 'react'; import intl from 'react-intl-universal'; import { FormattedMessage as T, FormattedHTMLMessage } from 'components'; import { Intent, Alert } from '@blueprintjs/core'; import { AppToaster } from 'components'; import { useDeleteInvoice } from 'hooks/query'; import { handleDeleteErrors } from 'containers/Sales/Invoices/InvoicesLanding/components'; import withAlertStoreConnect from 'containers/Alert/withAlertStoreConnect'; import withAlertActions from 'containers/Alert/withAlertActions'; import { compose } from 'utils'; /** * Invoice delete alert. */ function InvoiceDeleteAlert({ name, // #withAlertStoreConnect isOpen, payload: { invoiceId }, // #withAlertActions closeAlert, }) { const { mutateAsync: deleteInvoiceMutate, isLoading } = useDeleteInvoice(); // handle cancel delete invoice alert. const handleCancelDeleteAlert = () => { closeAlert(name); }; // handleConfirm delete invoice const handleConfirmInvoiceDelete = () => { deleteInvoiceMutate(invoiceId) .then(() => { AppToaster.show({ message: intl.get('the_invoice_has_been_deleted_successfully'), intent: Intent.SUCCESS, }); }) .catch(({ response: { data: { errors } } }) => { handleDeleteErrors(errors); }) .finally(() => { closeAlert(name); }); }; return ( } confirmButtonText={} icon="trash" intent={Intent.DANGER} isOpen={isOpen} onCancel={handleCancelDeleteAlert} onConfirm={handleConfirmInvoiceDelete} loading={isLoading} >

); } export default compose( withAlertStoreConnect(), withAlertActions, )(InvoiceDeleteAlert);