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

19 lines
707 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2018-04-18 06:03:01 +02:00
import { selectMyClaimsWithoutChannels } from 'lbry-redux';
import { selectPendingPublishesLessEdits } from 'redux/selectors/publish';
import { doNavigate } from 'redux/actions/navigation';
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 => ({
2017-07-08 10:03:12 +02:00
claims: selectMyClaimsWithoutChannels(state),
pendingPublishes: selectPendingPublishesLessEdits(state),
2017-06-06 06:21:55 +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-03-26 23:32:43 +02:00
checkIfPublishesConfirmed: publishes => dispatch(doCheckPendingPublishes(publishes)),
2017-06-06 06:21:55 +02:00
});
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(FileListPublished);