mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
24 lines
813 B
TypeScript
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);
|
|
};
|