mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
159 lines
4.4 KiB
JavaScript
159 lines
4.4 KiB
JavaScript
import React, { useCallback } from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
|
|
import InvoicesEmptyStatus from './InvoicesEmptyStatus';
|
|
|
|
import { DataTable, DashboardContentTable } from 'components';
|
|
import { TABLES } from 'common/tables';
|
|
import { useMemorizedColumnsWidths } from 'hooks';
|
|
|
|
import TableSkeletonRows from 'components/Datatable/TableSkeletonRows';
|
|
import TableSkeletonHeader from 'components/Datatable/TableHeaderSkeleton';
|
|
|
|
import withDashboardActions from 'containers/Dashboard/withDashboardActions';
|
|
import withInvoices from './withInvoices';
|
|
import withInvoiceActions from './withInvoiceActions';
|
|
import withAlertsActions from 'containers/Alert/withAlertActions';
|
|
import withDrawerActions from 'containers/Drawer/withDrawerActions';
|
|
import withDialogActions from 'containers/Dialog/withDialogActions';
|
|
|
|
import { useInvoicesTableColumns, ActionsMenu } from './components';
|
|
import { useInvoicesListContext } from './InvoicesListProvider';
|
|
|
|
import { compose } from 'utils';
|
|
|
|
/**
|
|
* Invoices datatable.
|
|
*/
|
|
function InvoicesDataTable({
|
|
// #withInvoicesActions
|
|
setInvoicesTableState,
|
|
|
|
// #withInvoices
|
|
invoicesTableState,
|
|
|
|
// #withAlertsActions
|
|
openAlert,
|
|
|
|
// #withDrawerActions
|
|
openDrawer,
|
|
|
|
// #withDialogAction
|
|
openDialog,
|
|
}) {
|
|
const history = useHistory();
|
|
|
|
// Invoices list context.
|
|
const {
|
|
invoices,
|
|
pagination,
|
|
isEmptyStatus,
|
|
isInvoicesLoading,
|
|
isInvoicesFetching,
|
|
} = useInvoicesListContext();
|
|
|
|
// Invoices table columns.
|
|
const columns = useInvoicesTableColumns();
|
|
|
|
// Handle delete sale invoice.
|
|
const handleDeleteInvoice = ({ id }) => {
|
|
openAlert('invoice-delete', { invoiceId: id });
|
|
};
|
|
|
|
// Handle cancel/confirm invoice deliver.
|
|
const handleDeliverInvoice = ({ id }) => {
|
|
openAlert('invoice-deliver', { invoiceId: id });
|
|
};
|
|
|
|
// Handle edit sale invoice.
|
|
const handleEditInvoice = (invoice) => {
|
|
history.push(`/invoices/${invoice.id}/edit`);
|
|
};
|
|
|
|
// handle quick payment receive.
|
|
const handleQuickPaymentReceive = ({ id }) => {
|
|
openDialog('quick-payment-receive', { invoiceId: id });
|
|
};
|
|
|
|
// Handle view detail invoice.
|
|
const handleViewDetailInvoice = ({ id }) => {
|
|
openDrawer('invoice-detail-drawer', { invoiceId: id });
|
|
};
|
|
|
|
// Handle print invoices.
|
|
const handlePrintInvoice = ({ id }) => {
|
|
openDialog('invoice-pdf-preview', { invoiceId: id });
|
|
};
|
|
|
|
// Handle cell click.
|
|
const handleCellClick = (cell, event) => {
|
|
openDrawer('invoice-detail-drawer', { invoiceId: cell.row.original.id });
|
|
};
|
|
|
|
// Local storage memorizing columns widths.
|
|
const [initialColumnsWidths, , handleColumnResizing] =
|
|
useMemorizedColumnsWidths(TABLES.INVOICES);
|
|
|
|
// Handles fetch data once the table state change.
|
|
const handleDataTableFetchData = useCallback(
|
|
({ pageSize, pageIndex, sortBy }) => {
|
|
setInvoicesTableState({
|
|
pageSize,
|
|
pageIndex,
|
|
sortBy,
|
|
});
|
|
},
|
|
[setInvoicesTableState],
|
|
);
|
|
|
|
// Display invoice empty status instead of the table.
|
|
if (isEmptyStatus) {
|
|
return <InvoicesEmptyStatus />;
|
|
}
|
|
|
|
return (
|
|
<DashboardContentTable>
|
|
<DataTable
|
|
columns={columns}
|
|
data={invoices}
|
|
loading={isInvoicesLoading}
|
|
headerLoading={isInvoicesLoading}
|
|
progressBarLoading={isInvoicesFetching}
|
|
onFetchData={handleDataTableFetchData}
|
|
manualSortBy={true}
|
|
selectionColumn={true}
|
|
noInitialFetch={true}
|
|
sticky={true}
|
|
pagination={true}
|
|
manualPagination={true}
|
|
pagesCount={pagination.pagesCount}
|
|
autoResetSortBy={false}
|
|
autoResetPage={false}
|
|
TableLoadingRenderer={TableSkeletonRows}
|
|
TableHeaderSkeletonRenderer={TableSkeletonHeader}
|
|
ContextMenu={ActionsMenu}
|
|
onCellClick={handleCellClick}
|
|
initialColumnsWidths={initialColumnsWidths}
|
|
onColumnResizing={handleColumnResizing}
|
|
payload={{
|
|
onDelete: handleDeleteInvoice,
|
|
onDeliver: handleDeliverInvoice,
|
|
onEdit: handleEditInvoice,
|
|
onQuick: handleQuickPaymentReceive,
|
|
onViewDetails: handleViewDetailInvoice,
|
|
onPrint: handlePrintInvoice,
|
|
}}
|
|
/>
|
|
</DashboardContentTable>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withDashboardActions,
|
|
withInvoiceActions,
|
|
withAlertsActions,
|
|
withDrawerActions,
|
|
withDialogActions,
|
|
withInvoices(({ invoicesTableState }) => ({ invoicesTableState })),
|
|
)(InvoicesDataTable);
|