mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
184 lines
5.1 KiB
TypeScript
184 lines
5.1 KiB
TypeScript
// @ts-nocheck
|
|
import React, { useCallback } from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
|
|
import EstimatesEmptyStatus from './EstimatesEmptyStatus';
|
|
|
|
import withEstimatesActions from './withEstimatesActions';
|
|
import withAlertsActions from '@/containers/Alert/withAlertActions';
|
|
import withDrawerActions from '@/containers/Drawer/withDrawerActions';
|
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
import withSettings from '@/containers/Settings/withSettings';
|
|
import withEstimates from './withEstimates';
|
|
|
|
import { TABLES } from '@/constants/tables';
|
|
import {
|
|
DataTable,
|
|
DashboardContentTable,
|
|
TableSkeletonRows,
|
|
TableSkeletonHeader,
|
|
} from '@/components';
|
|
import { ActionsMenu, useEstiamtesTableColumns } from './components';
|
|
import { useEstimatesListContext } from './EstimatesListProvider';
|
|
import { useMemorizedColumnsWidths } from '@/hooks';
|
|
import { compose } from '@/utils';
|
|
import { DRAWERS } from '@/constants/drawers';
|
|
import { DialogsName } from '@/constants/dialogs';
|
|
|
|
/**
|
|
* Estimates datatable.
|
|
*/
|
|
function EstimatesDataTable({
|
|
// #withEstimatesActions
|
|
setEstimatesTableState,
|
|
|
|
// #withAlertsActions
|
|
openAlert,
|
|
|
|
// #withDrawerActions
|
|
openDrawer,
|
|
|
|
// #withDialogAction
|
|
openDialog,
|
|
|
|
// #withSettings
|
|
estimatesTableSize,
|
|
|
|
// #withEstimates
|
|
estimatesTableState
|
|
}) {
|
|
const history = useHistory();
|
|
|
|
// Estimates list context.
|
|
const {
|
|
estimates,
|
|
pagination,
|
|
isEmptyStatus,
|
|
isEstimatesLoading,
|
|
isEstimatesFetching,
|
|
} = useEstimatesListContext();
|
|
|
|
// Estimates table columns.
|
|
const columns = useEstiamtesTableColumns();
|
|
|
|
// Handle estimate edit action.
|
|
const handleEditEstimate = (estimate) => {
|
|
history.push(`/estimates/${estimate.id}/edit`);
|
|
};
|
|
// Handle estimate delete action.
|
|
const handleDeleteEstimate = ({ id }) => {
|
|
openAlert('estimate-delete', { estimateId: id });
|
|
};
|
|
|
|
// Handle cancel/confirm estimate deliver.
|
|
const handleDeliverEstimate = ({ id }) => {
|
|
openAlert('estimate-deliver', { estimateId: id });
|
|
};
|
|
|
|
// Handle cancel/confirm estimate approve.
|
|
const handleApproveEstimate = ({ id }) => {
|
|
openAlert('estimate-Approve', { estimateId: id });
|
|
};
|
|
|
|
// Handle cancel/confirm estimate reject.
|
|
const handleRejectEstimate = ({ id }) => {
|
|
openAlert('estimate-reject', { estimateId: id });
|
|
};
|
|
|
|
// Handle convent to invoice.
|
|
const handleConvertToInvoice = ({ id }) => {
|
|
history.push(`/invoices/new?from_estimate_id=${id}`, { action: id });
|
|
};
|
|
|
|
// Handle view detail estimate.
|
|
const handleViewDetailEstimate = ({ id }) => {
|
|
openDrawer(DRAWERS.ESTIMATE_DETAILS, { estimateId: id });
|
|
};
|
|
|
|
// Handle print estimate.
|
|
const handlePrintEstimate = ({ id }) => {
|
|
openDialog('estimate-pdf-preview', { estimateId: id });
|
|
};
|
|
|
|
// Handle cell click.
|
|
const handleCellClick = (cell, event) => {
|
|
openDrawer(DRAWERS.ESTIMATE_DETAILS, { estimateId: cell.row.original.id });
|
|
};
|
|
|
|
// Handle mail send estimate.
|
|
const handleMailSendEstimate = ({ id }) => {
|
|
openDialog(DialogsName.EstimateMail, { estimateId: id });
|
|
}
|
|
|
|
// Local storage memorizing columns widths.
|
|
const [initialColumnsWidths, , handleColumnResizing] =
|
|
useMemorizedColumnsWidths(TABLES.ESTIMATES);
|
|
|
|
// Handles fetch data.
|
|
const handleFetchData = useCallback(
|
|
({ pageIndex, pageSize, sortBy }) => {
|
|
setEstimatesTableState({
|
|
pageIndex,
|
|
pageSize,
|
|
sortBy,
|
|
});
|
|
},
|
|
[setEstimatesTableState],
|
|
);
|
|
|
|
// Display empty status instead of the table.
|
|
if (isEmptyStatus) {
|
|
return <EstimatesEmptyStatus />;
|
|
}
|
|
|
|
return (
|
|
<DashboardContentTable>
|
|
<DataTable
|
|
columns={columns}
|
|
data={estimates}
|
|
loading={isEstimatesLoading}
|
|
headerLoading={isEstimatesLoading}
|
|
progressBarLoading={isEstimatesFetching}
|
|
onFetchData={handleFetchData}
|
|
noInitialFetch={true}
|
|
manualSortBy={true}
|
|
selectionColumn={true}
|
|
sticky={true}
|
|
pagination={true}
|
|
initialPageSize={estimatesTableState.pageSize}
|
|
manualPagination={true}
|
|
pagesCount={pagination.pagesCount}
|
|
TableLoadingRenderer={TableSkeletonRows}
|
|
TableHeaderSkeletonRenderer={TableSkeletonHeader}
|
|
ContextMenu={ActionsMenu}
|
|
onCellClick={handleCellClick}
|
|
initialColumnsWidths={initialColumnsWidths}
|
|
onColumnResizing={handleColumnResizing}
|
|
size={estimatesTableSize}
|
|
payload={{
|
|
onApprove: handleApproveEstimate,
|
|
onEdit: handleEditEstimate,
|
|
onReject: handleRejectEstimate,
|
|
onDeliver: handleDeliverEstimate,
|
|
onDelete: handleDeleteEstimate,
|
|
onConvert: handleConvertToInvoice,
|
|
onViewDetails: handleViewDetailEstimate,
|
|
onPrint: handlePrintEstimate,
|
|
onSendMail: handleMailSendEstimate,
|
|
}}
|
|
/>
|
|
</DashboardContentTable>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withEstimatesActions,
|
|
withAlertsActions,
|
|
withDrawerActions,
|
|
withDialogActions,
|
|
withSettings(({ estimatesSettings }) => ({
|
|
estimatesTableSize: estimatesSettings?.tableSize,
|
|
})),
|
|
withEstimates(({ estimatesTableState }) => ({ estimatesTableState }))
|
|
)(EstimatesDataTable);
|