ee9f63a161
bugfix wip flow fix cleaning clean
16 lines
626 B
JavaScript
16 lines
626 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectDownloadUrlsCount, selectIsFetchingFileList } from 'redux/selectors/file_info';
|
|
import { selectMyPurchases, selectIsFetchingMyPurchases } from 'redux/selectors/claims';
|
|
import { doPurchaseList } from 'redux/actions/claims';
|
|
import LibraryPage from './view';
|
|
|
|
const select = (state) => ({
|
|
allDownloadedUrlsCount: selectDownloadUrlsCount(state),
|
|
fetchingFileList: selectIsFetchingFileList(state),
|
|
myPurchases: selectMyPurchases(state),
|
|
fetchingMyPurchases: selectIsFetchingMyPurchases(state),
|
|
});
|
|
|
|
export default connect(select, {
|
|
doPurchaseList,
|
|
})(LibraryPage);
|