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