mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
142 lines
3.4 KiB
TypeScript
142 lines
3.4 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { Intent, Tag, Classes } from '@blueprintjs/core';
|
|
import clsx from 'classnames';
|
|
|
|
import { If, AppToaster } from '@/components';
|
|
import { NormalCell, BalanceCell, BankBalanceCell } from './components';
|
|
import { transformTableStateToQuery, isBlank } from '@/utils';
|
|
|
|
export const DeleteAccountTypeError = {
|
|
AccountPredefined: 'account_predefined',
|
|
AccountHasAssociatedTransactions: 'account_has_associated_transactions',
|
|
};
|
|
|
|
/**
|
|
* Account name accessor.
|
|
*/
|
|
export const accountNameAccessor = (account) => {
|
|
return (
|
|
<span>
|
|
<span class={'account-name'}>{account.name}</span>
|
|
<If condition={account.description}>
|
|
<span class={'account-desc'}>{account.description}</span>
|
|
</If>
|
|
</span>
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Handle delete errors in bulk and singular.
|
|
*/
|
|
export const handleDeleteErrors = (errors) => {
|
|
if (errors.find((e) => e.type === DeleteAccountTypeError.AccountPredefined)) {
|
|
AppToaster.show({
|
|
message: intl.get('cannot_delete_predefined_accounts'),
|
|
intent: Intent.DANGER,
|
|
});
|
|
}
|
|
if (errors.find((e) => e.type === DeleteAccountTypeError.AccountHasAssociatedTransactions)) {
|
|
AppToaster.show({
|
|
message: intl.get('cannot_delete_account_has_associated_transactions'),
|
|
intent: Intent.DANGER,
|
|
});
|
|
}
|
|
};
|
|
|
|
export const AccountCodeAccessor = (row) =>
|
|
!isBlank(row.code) ? (
|
|
<Tag minimal round intent={Intent.NONE}>
|
|
{row.code}
|
|
</Tag>
|
|
) : null;
|
|
|
|
/**
|
|
* Accounts table columns.
|
|
*/
|
|
export const useAccountsTableColumns = () => {
|
|
return React.useMemo(
|
|
() => [
|
|
{
|
|
id: 'name',
|
|
Header: intl.get('account_name'),
|
|
accessor: 'name',
|
|
className: 'account_name',
|
|
width: 200,
|
|
clickable: true,
|
|
textOverview: true,
|
|
},
|
|
{
|
|
id: 'code',
|
|
Header: intl.get('code'),
|
|
accessor: AccountCodeAccessor,
|
|
className: 'code',
|
|
width: 80,
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'type',
|
|
Header: intl.get('type'),
|
|
accessor: 'account_type_label',
|
|
className: clsx('type', Classes.TEXT_MUTED),
|
|
width: 140,
|
|
clickable: true,
|
|
textOverview: true,
|
|
},
|
|
{
|
|
id: 'normal',
|
|
Header: intl.get('account_normal'),
|
|
Cell: NormalCell,
|
|
accessor: 'account_normal',
|
|
className: 'normal',
|
|
width: 80,
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'currency',
|
|
Header: intl.get('currency'),
|
|
accessor: 'currency_code',
|
|
className: clsx(Classes.TEXT_MUTED),
|
|
width: 75,
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'bank_balance',
|
|
Header: 'Bank Balance',
|
|
accessor: 'bank_balance_formatted',
|
|
Cell: BankBalanceCell,
|
|
width: 150,
|
|
clickable: true,
|
|
align: 'right',
|
|
money: true,
|
|
},
|
|
{
|
|
id: 'balance',
|
|
Header: intl.get('balance'),
|
|
accessor: 'amount',
|
|
Cell: BalanceCell,
|
|
width: 150,
|
|
clickable: true,
|
|
money: true,
|
|
align: 'right',
|
|
},
|
|
],
|
|
[],
|
|
);
|
|
};
|
|
|
|
export const rowClassNames = (row) => ({
|
|
inactive: !row.original.active,
|
|
});
|
|
|
|
/**
|
|
* Transformes the table state to list query.
|
|
*/
|
|
export const transformAccountsStateToQuery = (tableState) => {
|
|
return {
|
|
...transformTableStateToQuery(tableState),
|
|
onlyInactive: tableState.inactiveMode,
|
|
};
|
|
};
|