// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import React from 'react'; import Button from 'component/button'; import { FormField, Form } from 'component/common/form'; import { MINIMUM_PUBLISH_BID } from 'constants/claim'; import CreditAmount from 'component/common/credit-amount'; import I18nMessage from 'component/i18nMessage'; import { Lbryio } from 'lbryinc'; import Card from 'component/common/card'; import classnames from 'classnames'; import ChannelSelector from 'component/channelSelector'; import LbcSymbol from 'component/common/lbc-symbol'; import { parseURI } from 'lbry-redux'; import usePersistedState from 'effects/use-persisted-state'; import WalletSpendableBalanceHelp from 'component/walletSpendableBalanceHelp'; import { STRIPE_PUBLIC_KEY } from 'config'; let stripeEnvironment = 'test'; // if the key contains pk_live it's a live key // update the environment for the calls to the backend to indicate which environment to hit if (STRIPE_PUBLIC_KEY.indexOf('pk_live') > -1) { stripeEnvironment = 'live'; } const DEFAULT_TIP_AMOUNTS = [1, 5, 25, 100]; const TAB_BOOST = 'TabBoost'; const TAB_FIAT = 'TabFiat'; const TAB_LBC = 'TabLBC'; type SupportParams = { amount: number, claim_id: string, channel_id?: string }; type Props = { uri: string, claimIsMine: boolean, title: string, claim: StreamClaim, isPending: boolean, isSupport: boolean, sendSupport: (SupportParams, boolean) => void, // function that comes from lbry-redux closeModal: () => void, balance: number, fetchingChannels: boolean, instantTipEnabled: boolean, instantTipMax: { amount: number, currency: string }, activeChannelClaim: ?ChannelClaim, incognito: boolean, doToast: ({ message: string }) => void, isAuthenticated: boolean, }; function WalletSendTip(props: Props) { const { uri, title, isPending, claimIsMine, balance, claim = {}, instantTipEnabled, instantTipMax, sendSupport, closeModal, fetchingChannels, incognito, activeChannelClaim, doToast, isAuthenticated, } = props; const [presetTipAmount, setPresetTipAmount] = usePersistedState('comment-support:presetTip', DEFAULT_TIP_AMOUNTS[0]); const [customTipAmount, setCustomTipAmount] = usePersistedState('comment-support:customTip', 1.0); const [useCustomTip, setUseCustomTip] = usePersistedState('comment-support:useCustomTip', false); const [tipError, setTipError] = React.useState(); const [isConfirming, setIsConfirming] = React.useState(false); const { claim_id: claimId } = claim; const { channelName } = parseURI(uri); const activeChannelName = activeChannelClaim && activeChannelClaim.name; const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id; const [canReceiveFiatTip, setCanReceiveFiatTip] = React.useState(); // dont persist because it needs to be calc'd per creator const [hasCardSaved, setHasSavedCard] = usePersistedState('comment-support:hasCardSaved', false); // setup variables for tip API let channelClaimId, tipChannelName; // if there is a signing channel it's on a file if (claim.signing_channel) { channelClaimId = claim.signing_channel.claim_id; tipChannelName = claim.signing_channel.name; // otherwise it's on the channel page } else { channelClaimId = claim.claim_id; tipChannelName = claim.name; } const sourceClaimId = claim.claim_id; // TODO: come up with a better way to do this, // TODO: waiting 100ms to wait for token to populate // check if creator has an account saved React.useEffect(() => { if (channelClaimId && isAuthenticated) { Lbryio.call( 'customer', 'status', { environment: stripeEnvironment, }, 'post' ).then((customerStatusResponse) => { const defaultPaymentMethodId = customerStatusResponse.Customer && customerStatusResponse.Customer.invoice_settings && customerStatusResponse.Customer.invoice_settings.default_payment_method && customerStatusResponse.Customer.invoice_settings.default_payment_method.id; setHasSavedCard(Boolean(defaultPaymentMethodId)); }); } }, [channelClaimId, isAuthenticated]); React.useEffect(() => { if (channelClaimId) { Lbryio.call( 'account', 'check', { channel_claim_id: channelClaimId, channel_name: tipChannelName, environment: stripeEnvironment, }, 'post' ) .then((accountCheckResponse) => { if (accountCheckResponse === true && canReceiveFiatTip !== true) { setCanReceiveFiatTip(true); } }) .catch(function (error) { console.log(error); }); } }, [channelClaimId]); const noBalance = balance === 0; const tipAmount = useCustomTip ? customTipAmount : presetTipAmount; const [activeTab, setActiveTab] = React.useState(TAB_LBC); let iconToUse, explainerText; if (activeTab === TAB_BOOST) { iconToUse = ICONS.LBC; explainerText = 'This refundable boost will improve the discoverability of this content while active. '; } else if (activeTab === TAB_FIAT) { iconToUse = ICONS.FINANCE; explainerText = 'Show this channel your appreciation by sending a donation of cash in USD. '; // if (!hasCardSaved) { // explainerText += 'You must add a card to use this functionality. '; // } } else if (activeTab === TAB_LBC) { iconToUse = ICONS.LBC; explainerText = 'Show this channel your appreciation by sending a donation of Credits. '; } const isSupport = claimIsMine || activeTab === TAB_BOOST; React.useEffect(() => { // Regex for number up to 8 decimal places const regexp = RegExp(/^(\d*([.]\d{0,8})?)$/); const validTipInput = regexp.test(String(tipAmount)); let tipError; if (!tipAmount) { tipError = __('Amount must be a number'); } else if (tipAmount <= 0) { tipError = __('Amount must be a positive number'); } else if (tipAmount < MINIMUM_PUBLISH_BID) { tipError = __('Amount must be higher'); } else if (!validTipInput) { tipError = __('Amount must have no more than 8 decimal places'); } else if (tipAmount === balance) { tipError = __('Please decrease the amount to account for transaction fees'); } else if (tipAmount > balance) { tipError = __('Not enough Credits'); } setTipError(tipError); }, [tipAmount, balance, setTipError]); // function sendSupportOrConfirm(instantTipMaxAmount = null) { // send a tip if (!isConfirming && (!instantTipMaxAmount || !instantTipEnabled || tipAmount > instantTipMaxAmount)) { setIsConfirming(true); } else { // send a boost const supportParams: SupportParams = { amount: tipAmount, claim_id: claimId }; // include channel name if donation not anonymous if (activeChannelClaim && !incognito) { supportParams.channel_id = activeChannelClaim.claim_id; } // send tip/boost sendSupport(supportParams, isSupport); closeModal(); } } // when the form button is clicked function handleSubmit() { if (tipAmount && claimId) { // send an instant tip (no need to go to an exchange first) if (instantTipEnabled && activeTab !== TAB_FIAT) { if (instantTipMax.currency === 'LBC') { sendSupportOrConfirm(instantTipMax.amount); } else { // Need to convert currency of instant purchase maximum before trying to send support Lbryio.getExchangeRates().then(({ LBC_USD }) => { sendSupportOrConfirm(instantTipMax.amount / LBC_USD); }); } // sending fiat tip } else if (activeTab === TAB_FIAT) { if (!isConfirming) { setIsConfirming(true); } else if (isConfirming) { let sendAnonymously = !activeChannelClaim || incognito; Lbryio.call( 'customer', 'tip', { amount: 100 * tipAmount, // convert from dollars to cents creator_channel_name: tipChannelName, // creator_channel_name creator_channel_claim_id: channelClaimId, tipper_channel_name: sendAnonymously ? '' : activeChannelName, tipper_channel_claim_id: sendAnonymously ? '' : activeChannelId, currency: 'USD', anonymous: sendAnonymously, source_claim_id: sourceClaimId, environment: stripeEnvironment, }, 'post' ) .then((customerTipResponse) => { doToast({ message: __("You sent $%amount% as a tip to %tipChannelName%, I'm sure they appreciate it!", { amount: tipAmount, tipChannelName, }), }); console.log(customerTipResponse); }) .catch(function (error) { console.log(error); doToast({ message: error.message, isError: true }); }); closeModal(); } // if it's a boost (?) } else { sendSupportOrConfirm(); } } } function handleCustomPriceChange(event: SyntheticInputEvent<*>) { const tipAmount = parseFloat(event.target.value); setCustomTipAmount(tipAmount); } function buildButtonText() { // test if frontend will show up as isNan function isNan(tipAmount) { // testing for NaN ES5 style https://stackoverflow.com/a/35912757/3973137 // also sometimes it's returned as a string // eslint-disable-next-line if (tipAmount !== tipAmount || tipAmount === 'NaN') { return true; } return false; } // if it's a valid number display it, otherwise do an empty string const displayAmount = !isNan(tipAmount) ? tipAmount : ''; if (activeTab === TAB_BOOST) { return 'Boost This Content'; } else if (activeTab === TAB_FIAT) { return 'Send a $' + displayAmount + ' Tip'; } else if (activeTab === TAB_LBC) { return 'Send a ' + displayAmount + ' LBC Tip'; } } function shouldDisableAmountSelector(amount) { return ( (amount > balance && activeTab !== TAB_FIAT) || (activeTab === TAB_FIAT && (!hasCardSaved || !canReceiveFiatTip)) ); } function setConfirmLabel() { if (activeTab === TAB_LBC) { return 'Tipping LBC'; } else if (activeTab === TAB_FIAT) { return 'Tipping Fiat (USD)'; } else if (activeTab === TAB_BOOST) { return 'Boosting'; } } return (
{/* if there is no LBC balance, show user frontend to get credits */} {noBalance ? ( }}>Supporting content requires %lbc%} subtitle={ }}> With %lbc%, you can send tips to your favorite creators, or help boost their content for more people to see. } actions={
} /> ) : ( // if there is lbc, the main tip/boost gui with the 3 tabs at the top } subtitle={ {!claimIsMine && (
{/* tip LBC tab button */}
)} {/* short explainer under the button */}
{explainerText} {/* {activeTab === TAB_FIAT && !hasCardSaved &&
} actions={ // confirmation modal, allow user to confirm or cancel transaction isConfirming ? ( <>
{__('To --[the tip recipient]--')}
{channelName || title}
{__('From --[the tip sender]--')}
{activeChannelClaim && !incognito ? activeChannelClaim.name : __('Anonymous')}
{setConfirmLabel()}
{activeTab === TAB_FIAT ?

$ {tipAmount}

: }
) : ( <>
{activeTab === TAB_FIAT && !hasCardSaved && (

)} {/* section to pick tip/boost amount */}
{DEFAULT_TIP_AMOUNTS.map((amount) => (
{useCustomTip && (
{__('Custom support amount')}{' '} {activeTab !== TAB_FIAT ? ( }} > (%lbc_balance% Credits available) ) : ( 'in USD' )} } className="form-field--price-amount" error={tipError && activeTab !== TAB_FIAT} min="0" step="any" type="number" placeholder="1.23" value={customTipAmount} onChange={(event) => handleCustomPriceChange(event)} />
)} {/* send tip/boost button */}
{activeTab !== TAB_FIAT ? ( ) : !canReceiveFiatTip ? (
Only select creators can receive tips at this time
) : (
The payment will be made from your saved card
)} ) } /> )} ); } export default WalletSendTip;