mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import { Button, NavbarGroup, Classes, Intent } from '@blueprintjs/core';
|
|
|
|
import { useRefundCreditNoteDrawerContext } from './RefundCreditNoteDrawerProvider';
|
|
|
|
import withAlertsActions from 'containers/Alert/withAlertActions';
|
|
import { Icon, DrawerActionsBar, FormattedMessage as T, Can } from 'components';
|
|
import {
|
|
CreditNoteAction,
|
|
AbilitySubject,
|
|
} from '../../../common/abilityOption';
|
|
|
|
import { compose } from 'utils';
|
|
|
|
/**
|
|
* Refund credit note actions bar.
|
|
*/
|
|
function RefundCreditNoteDetailActionsBar({
|
|
// #withAlertsActions
|
|
openAlert,
|
|
}) {
|
|
const { refundTransactionId } = useRefundCreditNoteDrawerContext();
|
|
|
|
// Handle delete refund credit.
|
|
const handleDeleteRefundCreditNote = () => {
|
|
openAlert('refund-credit-delete', { creditNoteId: refundTransactionId });
|
|
};
|
|
|
|
return (
|
|
<Can I={CreditNoteAction.Delete} a={AbilitySubject.CreditNote}>
|
|
<DrawerActionsBar>
|
|
<NavbarGroup>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'trash-16'} iconSize={16} />}
|
|
text={<T id={'delete'} />}
|
|
intent={Intent.DANGER}
|
|
onClick={handleDeleteRefundCreditNote}
|
|
/>
|
|
</NavbarGroup>
|
|
</DrawerActionsBar>
|
|
</Can>
|
|
);
|
|
}
|
|
|
|
export default compose(withAlertsActions)(RefundCreditNoteDetailActionsBar);
|