32 lines
1,001 B
JavaScript
32 lines
1,001 B
JavaScript
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import {
|
|
makeSelectClaimRewardError,
|
|
makeSelectRewardByType,
|
|
makeSelectIsRewardClaimPending,
|
|
} from "selectors/rewards";
|
|
import { doNavigate } from "actions/app";
|
|
import { doClaimReward, doClaimRewardClearError } from "actions/rewards";
|
|
import RewardLink from "./view";
|
|
|
|
const makeSelect = () => {
|
|
const selectIsPending = makeSelectIsRewardClaimPending();
|
|
const selectReward = makeSelectRewardByType();
|
|
const selectError = makeSelectClaimRewardError();
|
|
|
|
const select = (state, props) => ({
|
|
errorMessage: selectError(state, props),
|
|
isPending: selectIsPending(state, props),
|
|
reward: selectReward(state, props),
|
|
});
|
|
|
|
return select;
|
|
};
|
|
|
|
const perform = dispatch => ({
|
|
claimReward: reward => dispatch(doClaimReward(reward, true)),
|
|
clearError: reward => dispatch(doClaimRewardClearError(reward)),
|
|
navigate: path => dispatch(doNavigate(path)),
|
|
});
|
|
|
|
export default connect(makeSelect, perform)(RewardLink);
|