2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2019-10-03 23:20:55 +02:00
|
|
|
import { makeSelectSearchDownloadUrlsForPage, makeSelectSearchDownloadUrlsCount, selectDownloadUrlsCount, selectIsFetchingFileList } from 'lbry-redux';
|
2017-12-21 22:08:54 +01:00
|
|
|
import FileListDownloaded from './view';
|
2019-09-23 19:32:38 +02:00
|
|
|
import { withRouter } from 'react-router';
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2019-09-23 19:32:38 +02:00
|
|
|
const select = (state, props) => {
|
2019-10-03 23:20:55 +02:00
|
|
|
const { history, location } = props;
|
|
|
|
const { search } = location;
|
2019-09-23 19:32:38 +02:00
|
|
|
const urlParams = new URLSearchParams(search);
|
2019-10-03 23:20:55 +02:00
|
|
|
const query = urlParams.get('query') || '';
|
2019-09-25 23:17:23 +02:00
|
|
|
const page = Number(urlParams.get('page')) || 1;
|
2019-09-23 19:32:38 +02:00
|
|
|
return {
|
|
|
|
page,
|
2019-10-03 23:20:55 +02:00
|
|
|
history,
|
|
|
|
query,
|
|
|
|
allDownloadedUrlsCount: selectDownloadUrlsCount(state),
|
|
|
|
downloadedUrls: makeSelectSearchDownloadUrlsForPage(query, page)(state),
|
|
|
|
downloadedUrlsCount: makeSelectSearchDownloadUrlsCount(query)(state),
|
2019-09-23 19:32:38 +02:00
|
|
|
fetching: selectIsFetchingFileList(state),
|
|
|
|
};
|
|
|
|
};
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2019-09-23 19:32:38 +02:00
|
|
|
export default withRouter(
|
|
|
|
connect(
|
|
|
|
select,
|
|
|
|
null
|
|
|
|
)(FileListDownloaded)
|
|
|
|
);
|