mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
153 lines
4.1 KiB
TypeScript
153 lines
4.1 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import { Intent } from '@blueprintjs/core';
|
|
import * as R from 'ramda';
|
|
import {
|
|
DataTable,
|
|
TableFastCell,
|
|
TableSkeletonRows,
|
|
TableSkeletonHeader,
|
|
TableVirtualizedListRows,
|
|
AppToaster,
|
|
} from '@/components';
|
|
import { TABLES } from '@/constants/tables';
|
|
|
|
import { useMemorizedColumnsWidths } from '@/hooks';
|
|
import { useExcludedTransactionsColumns } from './_utils';
|
|
import { useExcludedTransactionsBoot } from './ExcludedTransactionsTableBoot';
|
|
import { useAccountTransactionsContext } from '../AccountTransactionsProvider';
|
|
|
|
import { ActionsMenu } from './_components';
|
|
import { useUnexcludeUncategorizedTransaction } from '@/hooks/query/bank-rules';
|
|
import {
|
|
WithBankingActionsProps,
|
|
withBankingActions,
|
|
} from '../../withBankingActions';
|
|
|
|
interface ExcludeTransactionsTableProps extends WithBankingActionsProps {}
|
|
|
|
/**
|
|
* Renders the recognized account transactions datatable.
|
|
*/
|
|
function ExcludedTransactionsTableRoot({
|
|
// #withBankingActions
|
|
setExcludedTransactionsSelected,
|
|
}: ExcludeTransactionsTableProps) {
|
|
const { excludedBankTransactions } = useExcludedTransactionsBoot();
|
|
const { mutateAsync: unexcludeBankTransaction } =
|
|
useUnexcludeUncategorizedTransaction();
|
|
|
|
const { scrollableRef } = useAccountTransactionsContext();
|
|
|
|
// Retrieve table columns.
|
|
const columns = useExcludedTransactionsColumns();
|
|
|
|
// Local storage memorizing columns widths.
|
|
const [initialColumnsWidths, , handleColumnResizing] =
|
|
useMemorizedColumnsWidths(TABLES.UNCATEGORIZED_ACCOUNT_TRANSACTIONS);
|
|
|
|
// Handle cell click.
|
|
const handleCellClick = (cell, event) => {};
|
|
|
|
// Handle restore button click.
|
|
const handleRestoreClick = (transaction) => {
|
|
unexcludeBankTransaction(transaction.id)
|
|
.then(() => {
|
|
AppToaster.show({
|
|
message: 'The excluded bank transaction has been restored.',
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
AppToaster.show({
|
|
message: 'Something went wrong.',
|
|
intent: Intent.DANGER,
|
|
});
|
|
});
|
|
};
|
|
|
|
// Handle selected rows change.
|
|
const handleSelectedRowsChange = (selected) => {
|
|
const _selectedIds = selected?.map((row) => row.original.id);
|
|
setExcludedTransactionsSelected(_selectedIds);
|
|
};
|
|
|
|
return (
|
|
<CashflowTransactionsTable
|
|
noInitialFetch={true}
|
|
columns={columns}
|
|
data={excludedBankTransactions}
|
|
sticky={true}
|
|
loading={false}
|
|
headerLoading={false}
|
|
expandColumnSpace={1}
|
|
expandToggleColumn={2}
|
|
selectionColumnWidth={45}
|
|
TableCellRenderer={TableFastCell}
|
|
TableLoadingRenderer={TableSkeletonRows}
|
|
TableRowsRenderer={TableVirtualizedListRows}
|
|
TableHeaderSkeletonRenderer={TableSkeletonHeader}
|
|
ContextMenu={ActionsMenu}
|
|
onCellClick={handleCellClick}
|
|
// #TableVirtualizedListRows props.
|
|
vListrowHeight={'small' == 'small' ? 32 : 40}
|
|
vListrowHeight={40}
|
|
vListOverscanRowCount={0}
|
|
initialColumnsWidths={initialColumnsWidths}
|
|
onColumnResizing={handleColumnResizing}
|
|
noResults={'There is no excluded bank transactions.'}
|
|
className="table-constrant"
|
|
selectionColumn={true}
|
|
onSelectedRowsChange={handleSelectedRowsChange}
|
|
windowScrollerProps={{ scrollElement: scrollableRef }}
|
|
payload={{
|
|
onRestore: handleRestoreClick,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export const ExcludedTransactionsTable = R.compose(withBankingActions)(
|
|
ExcludedTransactionsTableRoot,
|
|
);
|
|
|
|
const DashboardConstrantTable = styled(DataTable)`
|
|
.table {
|
|
.thead {
|
|
.th {
|
|
background: #fff;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
.tbody {
|
|
.tr:last-child .td {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
const CashflowTransactionsTable = styled(DashboardConstrantTable)`
|
|
.table .tbody {
|
|
.tbody-inner .tr.no-results {
|
|
.td {
|
|
padding: 2rem 0;
|
|
font-size: 14px;
|
|
color: #888;
|
|
font-weight: 400;
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.tbody-inner {
|
|
.tr .td {
|
|
border-bottom: 1px solid #e6e6e6;
|
|
}
|
|
}
|
|
}
|
|
`;
|