Files
bigcapital/packages/webapp/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx
Ahmed Bouhuolia 2383091b6e wip
2025-11-12 21:34:30 +02:00

24 lines
813 B
TypeScript

// @ts-nocheck
import { connect } from 'react-redux';
import {
getReceiptsSelectedRowsFactory,
getReceiptsTableStateFactory,
receiptsTableStateChangedFactory,
} from '@/store/receipts/receipts.selector';
export default (mapState) => {
const getReceiptsTableState = getReceiptsTableStateFactory();
const receiptsTableStateChanged = receiptsTableStateChangedFactory();
const getSelectedRows = getReceiptsSelectedRowsFactory();
const mapStateToProps = (state, props) => {
const mapped = {
receiptTableState: getReceiptsTableState(state, props),
receiptsTableStateChanged: receiptsTableStateChanged(state, props),
receiptSelectedRows: getSelectedRows(state, props),
};
return mapState ? mapState(mapped, state, props) : mapped;
};
return connect(mapStateToProps);
};