2017-06-06 17:19:12 -04:00
|
|
|
import React from "react";
|
2017-06-08 17:15:34 -04:00
|
|
|
import rewards from "rewards";
|
2017-06-06 17:19:12 -04:00
|
|
|
import { connect } from "react-redux";
|
2017-07-05 13:38:17 +07:00
|
|
|
import { doFetchClaimListMine } from "actions/content";
|
2017-05-01 11:51:19 +07:00
|
|
|
import {
|
2017-07-08 15:03:12 +07:00
|
|
|
selectMyClaimsWithoutChannels,
|
2017-07-05 13:38:17 +07:00
|
|
|
selectIsFetchingClaimListMine,
|
|
|
|
} from "selectors/claims";
|
2017-06-08 17:15:34 -04:00
|
|
|
import { doClaimRewardType } from "actions/rewards";
|
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 FileListPublished from "./view";
|
2017-04-23 23:10:45 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const select = state => ({
|
2017-07-08 15:03:12 +07:00
|
|
|
claims: selectMyClaimsWithoutChannels(state),
|
2017-07-05 13:38:17 +07:00
|
|
|
isFetching: selectIsFetchingClaimListMine(state),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-01 11:51:19 +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)),
|
2017-07-05 13:38:17 +07:00
|
|
|
fetchClaims: () => dispatch(doFetchClaimListMine()),
|
2017-06-08 17:15:34 -04:00
|
|
|
claimFirstPublishReward: () =>
|
|
|
|
dispatch(doClaimRewardType(rewards.TYPE_FIRST_PUBLISH)),
|
2017-06-29 14:58:15 +07:00
|
|
|
cancelResolvingUris: () => dispatch(doCancelAllResolvingUris()),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-01 11:51:19 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
export default connect(select, perform)(FileListPublished);
|