mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import { Intent, Alert } from '@blueprintjs/core';
|
|
import { FormattedMessage as T } from 'react-intl';
|
|
|
|
import withAlertActions from 'containers/Alert/withAlertActions';
|
|
import withAlertStoreConnect from 'containers/Alert/withAlertStoreConnect';
|
|
|
|
import { compose, saveInvoke } from 'utils';
|
|
|
|
/**
|
|
* Items entries table clear all lines alert.
|
|
*/
|
|
function ItemsEntriesDeleteAlert({
|
|
name,
|
|
onConfirm,
|
|
|
|
// #withAlertStoreConnect
|
|
isOpen,
|
|
payload: { },
|
|
|
|
// #withAlertActions
|
|
closeAlert,
|
|
}) {
|
|
// Handle the alert cancel.
|
|
const handleCancel = () => {
|
|
closeAlert(name);
|
|
};
|
|
|
|
// Handle confirm the alert.
|
|
const handleConfirm = (event) => {
|
|
closeAlert(name);
|
|
saveInvoke(onConfirm, event)
|
|
};
|
|
|
|
return (
|
|
<Alert
|
|
cancelButtonText={<T id={'cancel'} />}
|
|
confirmButtonText={<T id={'clear_all_lines'} />}
|
|
intent={Intent.DANGER}
|
|
isOpen={isOpen}
|
|
onCancel={handleCancel}
|
|
onConfirm={handleConfirm}
|
|
loading={false}
|
|
>
|
|
<p>
|
|
Clearing the table lines will delete all quantities and rate were applied to the items, Is this okay?
|
|
</p>
|
|
</Alert>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withAlertStoreConnect(),
|
|
withAlertActions,
|
|
)(ItemsEntriesDeleteAlert);
|