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

29 lines
794 B
JavaScript
Raw Normal View History

2017-06-08 02:56:52 +02:00
import React from "react";
import { connect } from "react-redux";
2017-07-16 18:29:46 +02:00
import {
selectFetchingRewards,
selectUnclaimedRewards,
2017-11-13 22:02:23 +01:00
} from "redux/selectors/rewards";
import { selectUser } from "redux/selectors/user";
import { doAuthNavigate, doNavigate } from "redux/actions/navigation";
import { doRewardList } from "redux/actions/rewards";
2017-06-08 02:56:52 +02:00
import RewardsPage from "./view";
2017-05-26 10:53:32 +02:00
2017-07-16 18:29:46 +02:00
const select = (state, props) => {
return {
fetching: selectFetchingRewards(state),
rewards: selectUnclaimedRewards(state),
user: selectUser(state),
2017-07-16 18:29:46 +02:00
};
};
2017-05-26 10:53:32 +02:00
2017-06-23 07:29:40 +02:00
const perform = dispatch => ({
fetchRewards: () => dispatch(doRewardList()),
navigate: path => dispatch(doNavigate(path)),
2017-07-19 17:09:40 +02:00
doAuth: () => {
dispatch(doAuthNavigate("/rewards"));
},
2017-06-23 07:29:40 +02:00
});
export default connect(select, perform)(RewardsPage);