mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
78 lines
1.9 KiB
TypeScript
78 lines
1.9 KiB
TypeScript
// @ts-nocheck
|
|
import React, { useCallback, useState } from 'react';
|
|
import { FormattedMessage as T } from '@/components';
|
|
import intl from 'react-intl-universal';
|
|
import { Intent, Alert } from '@blueprintjs/core';
|
|
import { AppToaster } from '@/components';
|
|
import { transformErrors } from '@/containers/Customers/utils';
|
|
|
|
import { withAlertStoreConnect } from '@/containers/Alert/withAlertStoreConnect';
|
|
import { withAlertActions } from '@/containers/Alert/withAlertActions';
|
|
|
|
import { compose } from '@/utils';
|
|
|
|
/**
|
|
* Customer bulk delete alert.
|
|
*/
|
|
function CustomerBulkDeleteAlert({
|
|
name,
|
|
|
|
// #withAlertStoreConnect
|
|
isOpen,
|
|
payload: { customersIds },
|
|
|
|
// #withAlertActions
|
|
closeAlert,
|
|
}) {
|
|
|
|
const [isLoading, setLoading] = useState(false);
|
|
|
|
// handle cancel delete alert.
|
|
const handleCancelDeleteAlert = () => {
|
|
closeAlert(name);
|
|
};
|
|
|
|
|
|
|
|
// Handle confirm customers bulk delete.
|
|
const handleConfirmBulkDelete = useCallback(() => {
|
|
setLoading(true);
|
|
requestDeleteBulkCustomers(customersIds)
|
|
.then(() => {
|
|
AppToaster.show({
|
|
message: intl.get('the_customers_has_been_deleted_successfully'),
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
})
|
|
.catch((errors) => {
|
|
transformErrors(errors);
|
|
})
|
|
.finally(() => {
|
|
setLoading(false);
|
|
closeAlert(name);
|
|
});
|
|
}, [requestDeleteBulkCustomers, customersIds]);
|
|
|
|
return (
|
|
<Alert
|
|
cancelButtonText={<T id={'cancel'} />}
|
|
confirmButtonText={<T id={'delete'} />}
|
|
icon="trash"
|
|
intent={Intent.DANGER}
|
|
isOpen={isOpen}
|
|
onCancel={handleCancelDeleteAlert}
|
|
onConfirm={handleConfirmBulkDelete}
|
|
loading={isLoading}
|
|
>
|
|
<p>
|
|
<T id={'once_delete_these_customers_you_will_not_able_restore_them'} />
|
|
</p>
|
|
</Alert>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withAlertStoreConnect(),
|
|
withAlertActions,
|
|
)(CustomerBulkDeleteAlert);
|