28 lines
803 B
JavaScript
28 lines
803 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { selectClaimedRewardsByTransactionId } from 'lbryinc';
|
||
|
import { doOpenModal } from 'redux/actions/app';
|
||
|
import {
|
||
|
selectAllMyClaimsByOutpoint,
|
||
|
selectSupportsByOutpoint,
|
||
|
selectTransactionListFilter,
|
||
|
selectIsFetchingTransactions,
|
||
|
} from 'lbry-redux';
|
||
|
import TransactionListTable from './view';
|
||
|
|
||
|
const select = state => ({
|
||
|
rewards: selectClaimedRewardsByTransactionId(state),
|
||
|
mySupports: selectSupportsByOutpoint(state),
|
||
|
myClaims: selectAllMyClaimsByOutpoint(state),
|
||
|
filterSetting: selectTransactionListFilter(state),
|
||
|
loading: selectIsFetchingTransactions(state),
|
||
|
});
|
||
|
|
||
|
const perform = dispatch => ({
|
||
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
||
|
});
|
||
|
|
||
|
export default connect(
|
||
|
select,
|
||
|
perform
|
||
|
)(TransactionListTable);
|