lbry-desktop/ui/page/fileListDownloaded/index.js

29 lines
926 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { makeSelectSearchDownloadUrlsForPage, makeSelectSearchDownloadUrlsCount, selectDownloadUrlsCount, selectIsFetchingFileList } from 'lbry-redux';
import FileListDownloaded from './view';
2019-09-23 19:32:38 +02:00
import { withRouter } from 'react-router';
2019-09-23 19:32:38 +02:00
const select = (state, props) => {
const { history, location } = props;
const { search } = location;
2019-09-23 19:32:38 +02:00
const urlParams = new URLSearchParams(search);
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,
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),
};
};
2019-09-23 19:32:38 +02:00
export default withRouter(
connect(
select,
null
)(FileListDownloaded)
);