2017-12-21 18:08:54 -03:00
|
|
|
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';
|
2017-12-21 18:08:54 -03:00
|
|
|
import FileListPublished from './view';
|
2017-04-23 23:10:45 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const select = state => ({
|
2018-10-26 00:20:18 -04:00
|
|
|
claims: selectMyClaimsWithoutChannels(state),
|
2018-06-13 17:07:06 -04:00
|
|
|
fetching: selectIsFetchingClaimListMine(state),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-01 11:51:19 +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
|
|
|
});
|
2017-05-01 11:51:19 +07:00
|
|
|
|
2018-06-12 03:12:22 -04:00
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(FileListPublished);
|