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