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

30 lines
992 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
import { doNavigate, doHistoryBack } from "actions/app";
2017-06-08 23:15:34 +02:00
import { doClaimRewardType } from "actions/rewards";
2017-07-10 16:49:12 +02:00
import {
selectMyClaims,
selectFetchingMyChannels,
selectMyChannelClaims,
} from "selectors/claims";
import { doFetchClaimListMine, doFetchChannelListMine } from "actions/content";
2017-06-08 23:15:34 +02:00
import rewards from "rewards";
2017-06-06 23:19:12 +02:00
import PublishPage from "./view";
2017-05-02 10:21:00 +02:00
2017-06-06 06:21:55 +02:00
const select = state => ({
2017-06-06 23:19:12 +02:00
myClaims: selectMyClaims(state),
2017-07-10 16:49:12 +02:00
fetchingChannels: selectFetchingMyChannels(state),
channels: selectMyChannelClaims(state),
2017-06-06 06:21:55 +02:00
});
2017-05-02 10:21:00 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2017-05-21 18:15:41 +02:00
back: () => dispatch(doHistoryBack()),
2017-06-06 23:19:12 +02:00
navigate: path => dispatch(doNavigate(path)),
fetchClaimListMine: () => dispatch(doFetchClaimListMine()),
2017-06-20 14:08:52 +02:00
claimFirstChannelReward: () =>
dispatch(doClaimRewardType(rewards.TYPE_FIRST_CHANNEL)),
2017-07-10 16:49:12 +02:00
fetchChannelListMine: () => dispatch(doFetchChannelListMine()),
2017-06-06 06:21:55 +02:00
});
2017-05-02 10:21:00 +02:00
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(PublishPage);