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 14:10:58 -04:00
import { selectIsFetchingClaimListMine, selectMyClaimsWithoutChannels } from 'lbry-redux';
2018-03-26 14:32:43 -07:00
import { doCheckPendingPublishes } from 'redux/actions/publish';
import FileListPublished from './view';
2017-06-05 21:21:55 -07:00
const select = state => ({
2018-10-26 00:20:18 -04:00
claims: selectMyClaimsWithoutChannels(state),
fetching: selectIsFetchingClaimListMine(state),
2017-06-05 21:21:55 -07:00
});
2017-06-05 21:21:55 -07:00
const perform = dispatch => ({
2018-10-26 00:20:18 -04:00
checkPendingPublishes: () => dispatch(doCheckPendingPublishes()),
2017-06-05 21:21:55 -07:00
});
2018-06-12 03:12:22 -04:00
export default connect(
select,
perform
)(FileListPublished);