2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-11-02 19:33:00 +01:00
|
|
|
import {
|
|
|
|
selectIsFetchingClaimListMine,
|
|
|
|
selectFileListPublishedSort,
|
|
|
|
selectMyClaimsWithoutChannels,
|
|
|
|
} from 'lbry-redux';
|
2017-12-21 22:08:54 +01:00
|
|
|
import { doNavigate } from 'redux/actions/navigation';
|
2018-03-26 23:32:43 +02:00
|
|
|
import { doCheckPendingPublishes } 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 => ({
|
2018-10-26 06:20:18 +02:00
|
|
|
claims: selectMyClaimsWithoutChannels(state),
|
2018-06-13 23:07:06 +02:00
|
|
|
fetching: selectIsFetchingClaimListMine(state),
|
2018-10-23 04:02:19 +02:00
|
|
|
sortBy: selectFileListPublishedSort(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 => ({
|
2017-06-06 23:19:12 +02:00
|
|
|
navigate: path => dispatch(doNavigate(path)),
|
2018-10-26 06:20:18 +02:00
|
|
|
checkPendingPublishes: () => dispatch(doCheckPendingPublishes()),
|
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);
|