2017-12-21 18:08:54 -03:00
|
|
|
import { connect } from 'react-redux';
|
2020-06-15 16:33:03 -04:00
|
|
|
import { makeSelectRewardByClaimCode, makeSelectIsRewardClaimPending } from 'redux/selectors/rewards';
|
|
|
|
import { doClaimRewardType } from 'redux/actions/rewards';
|
|
|
|
|
2017-12-21 18:08:54 -03:00
|
|
|
import RewardLink from './view';
|
2017-05-26 12:53:32 +04:00
|
|
|
|
2019-01-17 01:34:31 -05:00
|
|
|
const select = (state, props) => ({
|
|
|
|
isPending: makeSelectIsRewardClaimPending()(state, props),
|
2020-03-26 15:14:22 -04:00
|
|
|
reward: makeSelectRewardByClaimCode()(state, props.claim_code),
|
2019-01-17 01:34:31 -05:00
|
|
|
});
|
2017-05-26 12:53:32 +04:00
|
|
|
|
2017-06-07 20:56:52 -04:00
|
|
|
const perform = dispatch => ({
|
2020-03-27 21:54:59 -04:00
|
|
|
claimReward: reward =>
|
|
|
|
dispatch(doClaimRewardType(reward.reward_type, { notifyError: true, params: { claim_code: reward.claim_code } })),
|
2017-06-07 20:56:52 -04:00
|
|
|
});
|
2017-05-26 12:53:32 +04:00
|
|
|
|
2020-03-26 15:14:22 -04:00
|
|
|
export default connect(select, perform)(RewardLink);
|