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

16 lines
495 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2018-04-18 06:03:01 +02:00
import { selectFileInfosDownloaded, selectMyClaimsWithoutChannels } from 'lbry-redux';
import { doNavigate } from 'redux/actions/navigation';
import FileListDownloaded from './view';
2017-06-06 06:21:55 +02:00
const select = state => ({
fileInfos: selectFileInfosDownloaded(state),
claims: selectMyClaimsWithoutChannels(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)),
2017-06-06 06:21:55 +02:00
});
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(FileListDownloaded);