2017-06-06 23:19:12 +02:00
|
|
|
import React from "react";
|
2017-06-08 23:15:34 +02:00
|
|
|
import rewards from "rewards";
|
2017-06-06 23:19:12 +02:00
|
|
|
import { connect } from "react-redux";
|
|
|
|
import { doFetchFileInfosAndPublishedClaims } from "actions/file_info";
|
2017-05-01 06:51:19 +02:00
|
|
|
import {
|
2017-05-19 01:14:26 +02:00
|
|
|
selectFileInfosPublished,
|
2017-07-04 13:05:35 +02:00
|
|
|
selectIsFetchingFileListDownloadedOrPublished,
|
2017-06-06 23:19:12 +02:00
|
|
|
} from "selectors/file_info";
|
2017-06-08 23:15:34 +02:00
|
|
|
import { doClaimRewardType } from "actions/rewards";
|
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 FileListPublished 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: selectFileInfosPublished(state),
|
2017-07-04 13:05:35 +02:00
|
|
|
isFetching: selectIsFetchingFileListDownloadedOrPublished(state),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-01 06:51:19 +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)),
|
2017-05-19 01:14:26 +02:00
|
|
|
fetchFileListPublished: () => dispatch(doFetchFileInfosAndPublishedClaims()),
|
2017-06-08 23:15:34 +02:00
|
|
|
claimFirstPublishReward: () =>
|
|
|
|
dispatch(doClaimRewardType(rewards.TYPE_FIRST_PUBLISH)),
|
2017-06-29 09:58:15 +02:00
|
|
|
cancelResolvingUris: () => dispatch(doCancelAllResolvingUris()),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-01 06:51:19 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
export default connect(select, perform)(FileListPublished);
|