// @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, CHANNEL_ANONYMOUS, CHANNEL_NEW } 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 SelectChannel from 'component/selectChannel'; import LbcSymbol from 'component/common/lbc-symbol'; import { parseURI } from 'lbry-redux'; import usePersistedState from 'effects/use-persisted-state'; const DEFAULT_TIP_AMOUNTS = [5, 25, 100, 1000]; type SupportParams = { amount: number, claim_id: string, channel_id?: string }; type Props = { uri: string, claimIsMine: boolean, title: string, claim: StreamClaim, isPending: boolean, sendSupport: (SupportParams, boolean) => void, closeModal: () => void, balance: number, isSupport: boolean, fetchingChannels: boolean, instantTipEnabled: boolean, instantTipMax: { amount: number, currency: string }, channels: ?Array, }; function WalletSendTip(props: Props) { const { uri, title, isPending, claimIsMine, balance, claim = {}, instantTipEnabled, instantTipMax, sendSupport, closeModal, channels, fetchingChannels, } = 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 [sendAsTip, setSendAsTip] = usePersistedState('comment-support:sendAsTip', true); const [isConfirming, setIsConfirming] = React.useState(false); const [selectedChannel, setSelectedChannel] = usePersistedState('comment-support:channel'); const { claim_id: claimId } = claim; const { channelName } = parseURI(uri); const noBalance = balance === 0; const channelStrings = channels && channels.map(channel => channel.permanent_url).join(','); React.useEffect(() => { if (!selectedChannel && channelStrings) { const channels = channelStrings.split(','); const newChannelUrl = channels[0]; const { claimName } = parseURI(newChannelUrl); setSelectedChannel(claimName); } }, [channelStrings]); const tipAmount = useCustomTip ? customTipAmount : presetTipAmount; const isSupport = claimIsMine ? true : !sendAsTip; React.useEffect(() => { 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) { let selectedChannelId; if (selectedChannel !== CHANNEL_ANONYMOUS) { const selectedChannelClaim = channels && channels.find(channelClaim => channelClaim.name === selectedChannel); if (selectedChannelClaim) { selectedChannelId = selectedChannelClaim.claim_id; } } if ( !isSupport && !isConfirming && (!instantTipMaxAmount || !instantTipEnabled || tipAmount > instantTipMaxAmount) ) { setIsConfirming(true); } else { const supportParams: SupportParams = { amount: tipAmount, claim_id: claimId }; if (selectedChannelId) { supportParams.channel_id = selectedChannelId; } sendSupport(supportParams, isSupport); closeModal(); } } function handleSubmit() { if (selectedChannel === CHANNEL_NEW) { // This is the submission to create a new channel, and would // be handled by , so do nothing here. return; } if (tipAmount && claimId) { if (instantTipEnabled) { 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); }); } } else { sendSupportOrConfirm(); } } } function handleCustomPriceChange(event: SyntheticInputEvent<*>) { const tipAmount = parseFloat(event.target.value); setCustomTipAmount(tipAmount); } return (
{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={
} /> ) : ( {isSupport ? __( 'This will increase the overall bid amount for this content, which will boost its ability to be discovered while active.' ) : __('Show this channel your appreciation by sending a donation.')}{' '}