import React from 'react'; import lbry from 'lbry' import {Icon} from 'component/common'; import Modal from 'component/modal'; import rewards from 'rewards'; import Link from 'component/link' export let RewardLink = React.createClass({ propTypes: { type: React.PropTypes.string.isRequired, claimed: React.PropTypes.bool, onRewardClaim: React.PropTypes.func, onRewardFailure: React.PropTypes.func }, refreshClaimable: function() { switch(this.props.type) { case 'new_user': this.setState({ claimable: true }); return; case 'first_publish': lbry.claim_list_mine().then(function(list) { this.setState({ claimable: list.length > 0 }) }.bind(this)); return; } }, componentWillMount: function() { this.refreshClaimable(); }, getInitialState: function() { return { claimable: true, pending: false, errorMessage: null } }, claimReward: function() { this.setState({ pending: true }) rewards.claimReward(this.props.type).then((reward) => { this.setState({ pending: false, errorMessage: null }) if (this.props.onRewardClaim) { this.props.onRewardClaim(reward); } }).catch((error) => { this.setState({ errorMessage: error.message, pending: false }) }) }, clearError: function() { if (this.props.onRewardFailure) { this.props.onRewardFailure() } this.setState({ errorMessage: null }) }, render: function() { return (