2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2019-07-13 04:59:45 +02:00
|
|
|
import { selectIsFetchingClaimListMine, selectMyClaimUrisWithoutChannels } from 'lbry-redux';
|
|
|
|
import { doCheckPendingPublishesApp } from 'redux/actions/publish';
|
2017-12-21 22:08:54 +01:00
|
|
|
import FileListPublished from './view';
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const select = state => ({
|
2019-06-11 20:38:08 +02:00
|
|
|
uris: selectMyClaimUrisWithoutChannels(state),
|
2018-06-13 23:07:06 +02:00
|
|
|
fetching: selectIsFetchingClaimListMine(state),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-01 06:51:19 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const perform = dispatch => ({
|
2019-07-13 04:59:45 +02:00
|
|
|
checkPendingPublishes: () => dispatch(doCheckPendingPublishesApp()),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-01 06:51:19 +02:00
|
|
|
|
2018-06-12 09:12:22 +02:00
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(FileListPublished);
|