mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
135 lines
3.8 KiB
TypeScript
135 lines
3.8 KiB
TypeScript
// @ts-nocheck
|
|
import {
|
|
Button,
|
|
NavbarGroup,
|
|
Classes,
|
|
NavbarDivider,
|
|
Alignment,
|
|
Switch,
|
|
} from '@blueprintjs/core';
|
|
import {
|
|
DashboardActionsBar,
|
|
Can,
|
|
Icon,
|
|
FormattedMessage as T,
|
|
FeatureCan,
|
|
} from '@/components';
|
|
import { useRefreshCashflowAccounts } from '@/hooks/query';
|
|
import { CashflowAction, AbilitySubject } from '@/constants/abilityOption';
|
|
|
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
import withCashflowAccountsTableActions from '../AccountTransactions/withCashflowAccountsTableActions';
|
|
|
|
import { AccountDialogAction } from '@/containers/Dialogs/AccountDialog/utils';
|
|
|
|
import { ACCOUNT_TYPE, Features } from '@/constants';
|
|
import { DialogsName } from '@/constants/dialogs';
|
|
|
|
import { compose } from '@/utils';
|
|
|
|
/**
|
|
* Cash Flow accounts actions bar.
|
|
*/
|
|
function CashFlowAccountsActionsBar({
|
|
// #withDialogActions
|
|
openDialog,
|
|
|
|
// #withCashflowAccountsTableActions
|
|
setCashflowAccountsTableState,
|
|
}) {
|
|
const { refresh } = useRefreshCashflowAccounts();
|
|
|
|
// Handle refresh button click.
|
|
const handleRefreshBtnClick = () => {
|
|
refresh();
|
|
};
|
|
// Handle add bank account.
|
|
const handleAddBankAccount = () => {
|
|
openDialog(DialogsName.AccountForm, {
|
|
action: AccountDialogAction.NewDefinedType,
|
|
accountType: ACCOUNT_TYPE.CASH,
|
|
});
|
|
};
|
|
// Handle add cash account.
|
|
const handleAddCashAccount = () => {
|
|
openDialog(DialogsName.AccountForm, {
|
|
action: AccountDialogAction.NewDefinedType,
|
|
accountType: ACCOUNT_TYPE.BANK,
|
|
});
|
|
};
|
|
// Handle inactive switch changing.
|
|
const handleInactiveSwitchChange = (event) => {
|
|
const checked = event.target.checked;
|
|
setCashflowAccountsTableState({ inactiveMode: checked });
|
|
};
|
|
// Handle connect button click.
|
|
const handleConnectToBank = () => {
|
|
openDialog(DialogsName.ConnectBankCreditCard);
|
|
};
|
|
|
|
return (
|
|
<DashboardActionsBar>
|
|
<NavbarGroup>
|
|
<Can I={CashflowAction.Create} a={AbilitySubject.Cashflow}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'plus-24'} iconSize={20} />}
|
|
text={<T id={'cash_flow.label.add_cash_account'} />}
|
|
onClick={handleAddBankAccount}
|
|
/>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'plus-24'} iconSize={20} />}
|
|
text={<T id={'cash_flow.label.add_bank_account'} />}
|
|
onClick={handleAddCashAccount}
|
|
/>
|
|
<NavbarDivider />
|
|
</Can>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="print-16" iconSize={16} />}
|
|
text={<T id={'print'} />}
|
|
/>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="file-import-16" iconSize={16} />}
|
|
text={<T id={'import'} />}
|
|
/>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="file-export-16" iconSize={16} />}
|
|
text={<T id={'export'} />}
|
|
/>
|
|
<NavbarDivider />
|
|
<Can I={CashflowAction.Edit} a={AbilitySubject.Cashflow}>
|
|
<Switch
|
|
labelElement={<T id={'inactive'} />}
|
|
defaultChecked={false}
|
|
onChange={handleInactiveSwitchChange}
|
|
/>
|
|
</Can>
|
|
</NavbarGroup>
|
|
|
|
<NavbarGroup align={Alignment.RIGHT}>
|
|
<FeatureCan feature={Features.BankSyncing}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
text={'Connect to Bank / Credit Card'}
|
|
onClick={handleConnectToBank}
|
|
/>
|
|
<NavbarDivider />
|
|
</FeatureCan>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="refresh-16" iconSize={14} />}
|
|
onClick={handleRefreshBtnClick}
|
|
/>
|
|
</NavbarGroup>
|
|
</DashboardActionsBar>
|
|
);
|
|
}
|
|
export default compose(
|
|
withDialogActions,
|
|
withCashflowAccountsTableActions,
|
|
)(CashFlowAccountsActionsBar);
|