2017-06-06 17:19:12 -04:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
import { doFetchFileInfosAndPublishedClaims } from "actions/file_info";
|
2017-04-30 23:01:43 +07:00
|
|
|
import {
|
2017-05-18 19:14:26 -04:00
|
|
|
selectFileInfosDownloaded,
|
2017-07-04 18:05:35 +07:00
|
|
|
selectIsFetchingFileListDownloadedOrPublished,
|
2017-06-06 17:19:12 -04:00
|
|
|
} from "selectors/file_info";
|
2017-07-12 15:08:59 +07:00
|
|
|
import {
|
|
|
|
selectMyClaimsWithoutChannels,
|
|
|
|
selectIsFetchingClaimListMine,
|
|
|
|
} from "selectors/claims";
|
|
|
|
import { doFetchClaimListMine } from "actions/content";
|
2017-08-30 08:48:32 -04:00
|
|
|
import { doNavigate } from "actions/navigation";
|
2017-06-29 14:58:15 +07:00
|
|
|
import { doCancelAllResolvingUris } from "actions/content";
|
2017-06-06 17:19:12 -04:00
|
|
|
import FileListDownloaded from "./view";
|
2017-04-23 23:10:45 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const select = state => ({
|
2017-05-18 19:14:26 -04:00
|
|
|
fileInfos: selectFileInfosDownloaded(state),
|
2017-07-04 18:05:35 +07:00
|
|
|
isFetching: selectIsFetchingFileListDownloadedOrPublished(state),
|
2017-07-12 15:08:59 +07:00
|
|
|
claims: selectMyClaimsWithoutChannels(state),
|
|
|
|
isFetchingClaims: selectIsFetchingClaimListMine(state),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-04-23 23:10:45 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 17:19:12 -04:00
|
|
|
navigate: path => dispatch(doNavigate(path)),
|
|
|
|
fetchFileInfosDownloaded: () =>
|
|
|
|
dispatch(doFetchFileInfosAndPublishedClaims()),
|
2017-06-29 14:58:15 +07:00
|
|
|
cancelResolvingUris: () => dispatch(doCancelAllResolvingUris()),
|
2017-07-12 15:08:59 +07:00
|
|
|
fetchClaims: () => dispatch(doFetchClaimListMine()),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-04-23 23:10:45 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
export default connect(select, perform)(FileListDownloaded);
|