mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
92 lines
2.2 KiB
TypeScript
92 lines
2.2 KiB
TypeScript
// @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 (
|
|
<Alert
|
|
cancelButtonText={<T id={'cancel'} />}
|
|
confirmButtonText={<T id={'delete'} />}
|
|
icon="trash"
|
|
intent={Intent.DANGER}
|
|
isOpen={isOpen}
|
|
onCancel={handleCancelDeleteAlert}
|
|
onConfirm={handleConfirmDeleteCustomer}
|
|
loading={isLoading}
|
|
>
|
|
<p>
|
|
<FormattedHTMLMessage
|
|
id={'once_delete_this_customer_you_will_able_to_restore_it'}
|
|
/>
|
|
</p>
|
|
</Alert>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withAlertStoreConnect(),
|
|
withAlertActions,
|
|
withDrawerActions,
|
|
)(CustomerDeleteAlert);
|