2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2019-01-17 07:34:31 +01:00
|
|
|
import { makeSelectRewardByType, makeSelectIsRewardClaimPending, doClaimRewardType } from 'lbryinc';
|
2017-12-21 22:08:54 +01:00
|
|
|
import RewardLink from './view';
|
2017-05-26 10:53:32 +02:00
|
|
|
|
2019-01-17 07:34:31 +01:00
|
|
|
const select = (state, props) => ({
|
|
|
|
isPending: makeSelectIsRewardClaimPending()(state, props),
|
|
|
|
reward: makeSelectRewardByType()(state, props.reward_type),
|
|
|
|
});
|
2017-05-26 10:53:32 +02:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
const perform = dispatch => ({
|
2019-01-17 07:34:31 +01:00
|
|
|
claimReward: reward => dispatch(doClaimRewardType(reward.reward_type, { notifyError: true })),
|
2017-06-08 02:56:52 +02:00
|
|
|
});
|
2017-05-26 10:53:32 +02:00
|
|
|
|
2018-09-24 05:44:42 +02:00
|
|
|
export default connect(
|
2019-01-17 07:34:31 +01:00
|
|
|
select,
|
2018-09-24 05:44:42 +02:00
|
|
|
perform
|
|
|
|
)(RewardLink);
|