lbry-desktop/src/ui/page/fileListPublished/index.js

19 lines
536 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2019-06-11 20:10:58 +02:00
import { selectIsFetchingClaimListMine, selectMyClaimsWithoutChannels } from 'lbry-redux';
2018-03-26 23:32:43 +02:00
import { doCheckPendingPublishes } from 'redux/actions/publish';
import FileListPublished from './view';
2017-06-06 06:21:55 +02:00
const select = state => ({
2018-10-26 06:20:18 +02:00
claims: selectMyClaimsWithoutChannels(state),
fetching: selectIsFetchingClaimListMine(state),
2017-06-06 06:21:55 +02:00
});
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2018-10-26 06:20:18 +02:00
checkPendingPublishes: () => dispatch(doCheckPendingPublishes()),
2017-06-06 06:21:55 +02:00
});
2018-06-12 09:12:22 +02:00
export default connect(
select,
perform
)(FileListPublished);