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

31 lines
1 KiB
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
2017-11-13 22:02:23 +01:00
import { doFetchFileInfosAndPublishedClaims } from "redux/actions/file_info";
import {
selectFileInfosDownloaded,
selectIsFetchingFileListDownloadedOrPublished,
2017-11-13 22:02:23 +01:00
} from "redux/selectors/file_info";
import {
selectMyClaimsWithoutChannels,
selectIsFetchingClaimListMine,
2017-11-13 22:02:23 +01:00
} from "redux/selectors/claims";
import { doFetchClaimListMine } from "redux/actions/content";
import { doNavigate } from "redux/actions/navigation";
2017-06-06 23:19:12 +02:00
import FileListDownloaded from "./view";
2017-06-06 06:21:55 +02:00
const select = state => ({
fileInfos: selectFileInfosDownloaded(state),
isFetching: selectIsFetchingFileListDownloadedOrPublished(state),
claims: selectMyClaimsWithoutChannels(state),
isFetchingClaims: selectIsFetchingClaimListMine(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)),
fetchFileInfosDownloaded: () =>
dispatch(doFetchFileInfosAndPublishedClaims()),
fetchClaims: () => dispatch(doFetchClaimListMine()),
2017-06-06 06:21:55 +02:00
});
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(FileListDownloaded);