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