// @flow import React from 'react'; import { Modal } from 'modal/modal'; import * as txnTypes from 'constants/transaction_types'; type Props = { closeModal: () => void, abandonClaim: (string, number) => void, txid: string, nout: number, transactionItems: Array, }; class ModalRevokeClaim extends React.PureComponent { constructor() { super(); (this: any).revokeClaim = this.revokeClaim.bind(this); } getButtonLabel(type: string) { if (type === txnTypes.TIP) { return 'Confirm Tip Unlock'; } else if (type === txnTypes.SUPPORT) { return 'Confirm Support Revoke'; } return 'Confirm Claim Revoke'; } getMsgBody(type: string) { if (type === txnTypes.TIP) { return (

{__('Are you sure you want to unlock these credits?')}

{__( 'These credits are permanently yours and can be unlocked at any time. Unlocking them allows you to spend them, but can hurt the performance of your content in lookups and search results. It is recommended you leave tips locked until you need or want to spend them.' )}

); } else if (type === txnTypes.SUPPORT) { return (

{__('Are you sure you want to remove this support?')}

{__( "These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance." )}

); } return (

{__('Are you sure want to revoke this claim?')}

{__( 'This will prevent others from resolving and accessing the content you published. It will return the LBC to your spendable balance, less a small transaction fee.' )}

); } revokeClaim() { const { txid, nout } = this.props; this.props.closeModal(); this.props.abandonClaim(txid, nout); } render() { const { transactionItems, txid, nout, closeModal } = this.props; const { type } = transactionItems.find(claim => claim.txid === txid && claim.nout === nout) || {}; return (
{this.getMsgBody(type)}
); } } export default ModalRevokeClaim;