// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { AppToaster, FormattedMessage as T, FormattedHTMLMessage, } from '@/components'; import { Intent, Alert } from '@blueprintjs/core'; import { useDeleteReceipt } from '@/hooks/query'; import withAlertStoreConnect from '@/containers/Alert/withAlertStoreConnect'; import withAlertActions from '@/containers/Alert/withAlertActions'; import withDrawerActions from '@/containers/Drawer/withDrawerActions'; import { compose } from '@/utils'; import { DRAWERS } from '@/constants/drawers'; /** * Invoice alert. */ function NameDeleteAlert({ name, // #withAlertStoreConnect isOpen, payload: { receiptId }, // #withAlertActions closeAlert, // #withDrawerActions closeDrawer, }) { const { mutateAsync: deleteReceiptMutate, isLoading } = useDeleteReceipt(); // Handle cancel delete alert. const handleCancelDeleteAlert = () => { closeAlert(name); }; // Handle confirm delete receipt const handleConfirmReceiptDelete = () => { deleteReceiptMutate(receiptId) .then(() => { AppToaster.show({ message: intl.get('the_receipt_has_been_deleted_successfully'), intent: Intent.SUCCESS, }); closeDrawer(DRAWERS.RECEIPT_DETAILS); }) .catch(() => {}) .finally(() => { closeAlert(name); }); }; return ( } confirmButtonText={} icon="trash" intent={Intent.DANGER} isOpen={isOpen} onCancel={handleCancelDeleteAlert} onConfirm={handleConfirmReceiptDelete} loading={isLoading} >

); } export default compose( withAlertStoreConnect(), withAlertActions, withDrawerActions, )(NameDeleteAlert);