// @ts-nocheck import React, { useCallback } from 'react'; import intl from 'react-intl-universal'; import { Intent, Alert } from '@blueprintjs/core'; import { AppToaster, FormattedMessage as T, FormattedHTMLMessage, } from '@/components'; import { transformErrors } from '@/containers/Customers/utils'; import { withAlertStoreConnect } from '@/containers/Alert/withAlertStoreConnect'; import { withAlertActions } from '@/containers/Alert/withAlertActions'; import { withDrawerActions } from '@/containers/Drawer/withDrawerActions'; import { useDeleteCustomer } from '@/hooks/query'; import { compose } from '@/utils'; import { DRAWERS } from '@/constants/drawers'; /** * Customer delete alert. */ function CustomerDeleteAlert({ name, // #withAlertStoreConnect isOpen, payload: { contactId }, // #withAlertActions closeAlert, // #withDrawerActions closeDrawer, }) { const { mutateAsync: deleteCustomerMutate, isLoading } = useDeleteCustomer(); // handle cancel delete alert. const handleCancelDeleteAlert = () => { closeAlert(name); }; // handle confirm delete customer. const handleConfirmDeleteCustomer = useCallback(() => { deleteCustomerMutate(contactId) .then(() => { AppToaster.show({ message: intl.get('the_customer_has_been_deleted_successfully'), intent: Intent.SUCCESS, }); closeDrawer(DRAWERS.CUSTOMER_DETAILS); }) .catch( ({ response: { data: { errors }, }, }) => { transformErrors(errors); }, ) .finally(() => { closeAlert(name); }); }, [deleteCustomerMutate, contactId, closeAlert, name]); return ( } confirmButtonText={} icon="trash" intent={Intent.DANGER} isOpen={isOpen} onCancel={handleCancelDeleteAlert} onConfirm={handleConfirmDeleteCustomer} loading={isLoading} >

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