2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
2020-06-08 20:42:29 +02:00
|
|
|
import * as ICONS from 'constants/icons';
|
2020-06-10 00:09:24 +02:00
|
|
|
import * as PAGES from 'constants/pages';
|
2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
2018-03-26 23:32:43 +02:00
|
|
|
import Button from 'component/button';
|
2019-02-13 17:27:20 +01:00
|
|
|
import { FormField, Form } from 'component/common/form';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { MINIMUM_PUBLISH_BID } from 'constants/claim';
|
2020-03-13 20:53:53 +01:00
|
|
|
import CreditAmount from 'component/common/credit-amount';
|
|
|
|
import I18nMessage from 'component/i18nMessage';
|
2020-04-25 01:53:57 +02:00
|
|
|
import { Lbryio } from 'lbryinc';
|
2020-06-08 20:42:29 +02:00
|
|
|
import Card from 'component/common/card';
|
|
|
|
import classnames from 'classnames';
|
2021-02-09 17:05:56 +01:00
|
|
|
import ChannelSelector from 'component/channelSelector';
|
2020-09-02 22:08:37 +02:00
|
|
|
import LbcSymbol from 'component/common/lbc-symbol';
|
2020-06-10 00:09:24 +02:00
|
|
|
import { parseURI } from 'lbry-redux';
|
|
|
|
import usePersistedState from 'effects/use-persisted-state';
|
2021-02-02 21:00:24 +01:00
|
|
|
import WalletSpendableBalanceHelp from 'component/walletSpendableBalanceHelp';
|
2021-07-03 19:19:23 +02:00
|
|
|
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';
|
|
|
|
}
|
2020-06-08 20:42:29 +02:00
|
|
|
|
2021-02-02 21:00:24 +01:00
|
|
|
const DEFAULT_TIP_AMOUNTS = [1, 5, 25, 100];
|
2021-07-22 20:05:46 +02:00
|
|
|
const MINIMUM_FIAT_TIP = 1;
|
|
|
|
const MAXIMUM_FIAT_TIP = 1000;
|
2017-09-17 22:33:52 +02:00
|
|
|
|
2021-07-03 19:19:23 +02:00
|
|
|
const TAB_BOOST = 'TabBoost';
|
|
|
|
const TAB_FIAT = 'TabFiat';
|
|
|
|
const TAB_LBC = 'TabLBC';
|
2020-06-15 16:04:44 +02:00
|
|
|
type SupportParams = { amount: number, claim_id: string, channel_id?: string };
|
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
type Props = {
|
|
|
|
uri: string,
|
2020-06-10 00:09:24 +02:00
|
|
|
claimIsMine: boolean,
|
2018-03-26 23:32:43 +02:00
|
|
|
title: string,
|
2019-04-24 16:02:08 +02:00
|
|
|
claim: StreamClaim,
|
2018-03-26 23:32:43 +02:00
|
|
|
isPending: boolean,
|
2021-07-03 19:19:23 +02:00
|
|
|
isSupport: boolean,
|
|
|
|
sendSupport: (SupportParams, boolean) => void, // function that comes from lbry-redux
|
2020-04-30 00:02:53 +02:00
|
|
|
closeModal: () => void,
|
2018-05-14 18:19:07 +02:00
|
|
|
balance: number,
|
2020-06-15 16:04:44 +02:00
|
|
|
fetchingChannels: boolean,
|
2020-04-25 01:53:57 +02:00
|
|
|
instantTipEnabled: boolean,
|
|
|
|
instantTipMax: { amount: number, currency: string },
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelClaim: ?ChannelClaim,
|
|
|
|
incognito: boolean,
|
2021-07-03 19:19:23 +02:00
|
|
|
doToast: ({ message: string }) => void,
|
|
|
|
isAuthenticated: boolean,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
|
|
|
|
2020-03-13 20:53:53 +01:00
|
|
|
function WalletSendTip(props: Props) {
|
2020-04-25 01:53:57 +02:00
|
|
|
const {
|
2020-05-11 21:20:37 +02:00
|
|
|
uri,
|
2020-04-25 01:53:57 +02:00
|
|
|
title,
|
|
|
|
isPending,
|
2020-06-10 00:09:24 +02:00
|
|
|
claimIsMine,
|
2020-04-25 01:53:57 +02:00
|
|
|
balance,
|
2020-06-08 20:42:29 +02:00
|
|
|
claim = {},
|
2020-04-25 01:53:57 +02:00
|
|
|
instantTipEnabled,
|
|
|
|
instantTipMax,
|
|
|
|
sendSupport,
|
2020-04-30 00:02:53 +02:00
|
|
|
closeModal,
|
2020-06-15 16:04:44 +02:00
|
|
|
fetchingChannels,
|
2021-02-09 17:05:56 +01:00
|
|
|
incognito,
|
|
|
|
activeChannelClaim,
|
2021-07-03 19:19:23 +02:00
|
|
|
doToast,
|
|
|
|
isAuthenticated,
|
2020-04-25 01:53:57 +02:00
|
|
|
} = props;
|
2020-06-17 09:11:57 +02:00
|
|
|
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);
|
2020-03-13 20:53:53 +01:00
|
|
|
const [tipError, setTipError] = React.useState();
|
2020-06-15 16:04:44 +02:00
|
|
|
const [isConfirming, setIsConfirming] = React.useState(false);
|
2020-06-10 00:09:24 +02:00
|
|
|
const { claim_id: claimId } = claim;
|
2020-06-15 16:04:44 +02:00
|
|
|
const { channelName } = parseURI(uri);
|
2021-07-05 13:35:17 +02:00
|
|
|
const activeChannelName = activeChannelClaim && activeChannelClaim.name;
|
|
|
|
const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
// check if creator has a payment method saved
|
2021-07-03 19:19:23 +02:00
|
|
|
React.useEffect(() => {
|
2021-07-05 13:35:17 +02:00
|
|
|
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));
|
|
|
|
});
|
2021-07-03 19:19:23 +02:00
|
|
|
}
|
|
|
|
}, [channelClaimId, isAuthenticated]);
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
// check if creator has an account saved
|
|
|
|
React.useEffect(() => {
|
2021-08-11 22:58:55 +02:00
|
|
|
const tipInputElement = document.getElementById('tip-input');
|
2021-07-06 22:28:29 +02:00
|
|
|
if (tipInputElement) { tipInputElement.focus() }
|
|
|
|
}, []);
|
|
|
|
|
2021-07-03 19:19:23 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (channelClaimId) {
|
2021-07-05 13:35:17 +02:00
|
|
|
Lbryio.call(
|
|
|
|
'account',
|
|
|
|
'check',
|
|
|
|
{
|
|
|
|
channel_claim_id: channelClaimId,
|
|
|
|
channel_name: tipChannelName,
|
|
|
|
environment: stripeEnvironment,
|
|
|
|
},
|
|
|
|
'post'
|
|
|
|
)
|
|
|
|
.then((accountCheckResponse) => {
|
|
|
|
if (accountCheckResponse === true && canReceiveFiatTip !== true) {
|
|
|
|
setCanReceiveFiatTip(true);
|
2021-08-11 22:58:55 +02:00
|
|
|
} else {
|
|
|
|
setCanReceiveFiatTip(false);
|
2021-07-05 13:35:17 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function (error) {
|
2021-07-06 22:28:29 +02:00
|
|
|
// console.log(error);
|
2021-07-05 13:35:17 +02:00
|
|
|
});
|
2021-07-03 19:19:23 +02:00
|
|
|
}
|
|
|
|
}, [channelClaimId]);
|
|
|
|
|
2020-08-26 22:28:33 +02:00
|
|
|
const noBalance = balance === 0;
|
2020-06-17 09:11:57 +02:00
|
|
|
const tipAmount = useCustomTip ? customTipAmount : presetTipAmount;
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-12 20:42:20 +02:00
|
|
|
const [activeTab, setActiveTab] = React.useState(claimIsMine ? TAB_BOOST : TAB_LBC);
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-07-15 14:55:09 +02:00
|
|
|
function setClaimTypeText() {
|
|
|
|
if (claim.value_type === 'stream') {
|
2021-07-16 22:33:59 +02:00
|
|
|
return __('Content');
|
2021-07-15 14:55:09 +02:00
|
|
|
} else if (claim.value_type === 'channel') {
|
|
|
|
return __('Channel');
|
|
|
|
} else if (claim.value_type === 'repost') {
|
|
|
|
return __('Repost');
|
|
|
|
} else if (claim.value_type === 'collection') {
|
|
|
|
return __('List');
|
2021-07-16 22:33:59 +02:00
|
|
|
} else {
|
2021-07-15 14:55:09 +02:00
|
|
|
return __('Claim');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const claimTypeText = setClaimTypeText();
|
|
|
|
|
2021-08-11 22:58:55 +02:00
|
|
|
let iconToUse;
|
|
|
|
let explainerText = '';
|
2021-07-03 19:19:23 +02:00
|
|
|
if (activeTab === TAB_BOOST) {
|
|
|
|
iconToUse = ICONS.LBC;
|
2021-07-15 14:55:09 +02:00
|
|
|
explainerText = __('This refundable boost will improve the discoverability of this %claimTypeText% while active.', {claimTypeText});
|
2021-07-03 19:19:23 +02:00
|
|
|
} else if (activeTab === TAB_FIAT) {
|
|
|
|
iconToUse = ICONS.FINANCE;
|
2021-07-06 22:28:29 +02:00
|
|
|
explainerText = __('Show this channel your appreciation by sending a donation in USD. ');
|
2021-07-03 19:19:23 +02:00
|
|
|
// if (!hasCardSaved) {
|
2021-07-05 16:53:38 +02:00
|
|
|
// explainerText += __('You must add a card to use this functionality.');
|
2021-07-03 19:19:23 +02:00
|
|
|
// }
|
|
|
|
} else if (activeTab === TAB_LBC) {
|
|
|
|
iconToUse = ICONS.LBC;
|
2021-07-06 22:28:29 +02:00
|
|
|
explainerText = __('Show this channel your appreciation by sending a donation of Credits. ');
|
2021-07-03 19:19:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const isSupport = claimIsMine || activeTab === TAB_BOOST;
|
2020-06-17 09:11:57 +02:00
|
|
|
|
2020-06-10 00:09:24 +02:00
|
|
|
React.useEffect(() => {
|
2021-07-03 19:19:23 +02:00
|
|
|
// Regex for number up to 8 decimal places
|
2021-07-22 18:44:30 +02:00
|
|
|
let regexp;
|
2020-06-10 00:09:24 +02:00
|
|
|
let tipError;
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
if (tipAmount === 0) {
|
2020-06-10 00:09:24 +02:00
|
|
|
tipError = __('Amount must be a positive number');
|
2021-07-06 22:28:29 +02:00
|
|
|
} else if (!tipAmount || typeof tipAmount !== 'number') {
|
|
|
|
tipError = __('Amount must be a number');
|
|
|
|
}
|
|
|
|
|
|
|
|
// if it's not fiat, aka it's boost or lbc tip
|
|
|
|
else if (activeTab !== TAB_FIAT) {
|
2021-07-22 18:44:30 +02:00
|
|
|
regexp = RegExp(/^(\d*([.]\d{0,8})?)$/);
|
|
|
|
const validTipInput = regexp.test(String(tipAmount));
|
|
|
|
|
2021-07-06 22:28:29 +02:00
|
|
|
if (!validTipInput) {
|
|
|
|
tipError = __('Amount must have no more than 8 decimal places');
|
2021-07-22 18:44:30 +02:00
|
|
|
} else if (!validTipInput) {
|
|
|
|
tipError = __('Amount must have no more than 8 decimal places');
|
2021-07-06 22:28:29 +02:00
|
|
|
} else if (tipAmount === balance) {
|
|
|
|
tipError = __('Please decrease the amount to account for transaction fees');
|
|
|
|
} else if (tipAmount > balance) {
|
|
|
|
tipError = __('Not enough Credits');
|
|
|
|
} else if (tipAmount < MINIMUM_PUBLISH_BID) {
|
|
|
|
tipError = __('Amount must be higher');
|
|
|
|
}
|
|
|
|
// if tip fiat tab
|
|
|
|
} else {
|
2021-07-22 18:44:30 +02:00
|
|
|
regexp = RegExp(/^(\d*([.]\d{0,2})?)$/);
|
|
|
|
const validTipInput = regexp.test(String(tipAmount));
|
|
|
|
|
|
|
|
if (!validTipInput) {
|
|
|
|
tipError = __('Amount must have no more than 2 decimal places');
|
2021-07-22 20:05:46 +02:00
|
|
|
} else if (tipAmount < MINIMUM_FIAT_TIP) {
|
2021-07-06 22:28:29 +02:00
|
|
|
tipError = __('Amount must be at least one dollar');
|
2021-07-22 20:05:46 +02:00
|
|
|
} else if (tipAmount > MAXIMUM_FIAT_TIP) {
|
2021-07-06 22:28:29 +02:00
|
|
|
tipError = __('Amount cannot be over 1000 dollars');
|
|
|
|
}
|
2020-06-10 00:09:24 +02:00
|
|
|
}
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2020-06-10 00:09:24 +02:00
|
|
|
setTipError(tipError);
|
2021-07-06 22:28:29 +02:00
|
|
|
}, [tipAmount, balance, setTipError, activeTab]);
|
2018-03-26 23:32:43 +02:00
|
|
|
|
2021-07-03 19:19:23 +02:00
|
|
|
//
|
2020-04-25 01:53:57 +02:00
|
|
|
function sendSupportOrConfirm(instantTipMaxAmount = null) {
|
2021-07-03 19:19:23 +02:00
|
|
|
// send a tip
|
|
|
|
if (!isConfirming && (!instantTipMaxAmount || !instantTipEnabled || tipAmount > instantTipMaxAmount)) {
|
2020-06-15 16:04:44 +02:00
|
|
|
setIsConfirming(true);
|
2020-04-25 01:53:57 +02:00
|
|
|
} else {
|
2021-07-03 19:19:23 +02:00
|
|
|
// send a boost
|
2020-06-15 16:04:44 +02:00
|
|
|
const supportParams: SupportParams = { amount: tipAmount, claim_id: claimId };
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
// include channel name if donation not anonymous
|
|
|
|
if (activeChannelClaim && !incognito) {
|
|
|
|
supportParams.channel_id = activeChannelClaim.claim_id;
|
2020-06-15 16:04:44 +02:00
|
|
|
}
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
// send tip/boost
|
2020-06-15 16:04:44 +02:00
|
|
|
sendSupport(supportParams, isSupport);
|
2020-04-30 00:02:53 +02:00
|
|
|
closeModal();
|
2020-04-25 01:53:57 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-23 18:44:18 +02:00
|
|
|
|
2021-07-03 19:19:23 +02:00
|
|
|
// when the form button is clicked
|
2020-04-25 01:53:57 +02:00
|
|
|
function handleSubmit() {
|
2020-04-23 10:18:17 +02:00
|
|
|
if (tipAmount && claimId) {
|
2021-07-03 19:19:23 +02:00
|
|
|
// send an instant tip (no need to go to an exchange first)
|
|
|
|
if (instantTipEnabled && activeTab !== TAB_FIAT) {
|
2020-04-25 01:53:57 +02:00
|
|
|
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);
|
|
|
|
});
|
|
|
|
}
|
2021-07-03 19:19:23 +02:00
|
|
|
// sending fiat tip
|
|
|
|
} else if (activeTab === TAB_FIAT) {
|
|
|
|
if (!isConfirming) {
|
|
|
|
setIsConfirming(true);
|
|
|
|
} else if (isConfirming) {
|
|
|
|
let sendAnonymously = !activeChannelClaim || incognito;
|
|
|
|
|
|
|
|
Lbryio.call(
|
|
|
|
'customer',
|
|
|
|
'tip',
|
2021-08-11 22:58:55 +02:00
|
|
|
{ // round to fix issues with floating point numbers
|
|
|
|
amount: Math.round(100 * tipAmount), // convert from dollars to cents
|
2021-07-03 19:36:25 +02:00
|
|
|
creator_channel_name: tipChannelName, // creator_channel_name
|
|
|
|
creator_channel_claim_id: channelClaimId,
|
2021-07-05 13:35:17 +02:00
|
|
|
tipper_channel_name: sendAnonymously ? '' : activeChannelName,
|
|
|
|
tipper_channel_claim_id: sendAnonymously ? '' : activeChannelId,
|
2021-07-03 19:19:23 +02:00
|
|
|
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,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
})
|
2021-07-06 22:28:29 +02:00
|
|
|
.catch(function(error) {
|
2021-08-11 22:58:55 +02:00
|
|
|
let displayError = 'Sorry, there was an error in processing your payment!';
|
2021-07-06 22:28:29 +02:00
|
|
|
|
|
|
|
if (error.message !== 'payment intent failed to confirm') {
|
|
|
|
displayError = error.message;
|
|
|
|
}
|
|
|
|
|
|
|
|
doToast({ message: displayError, isError: true });
|
2021-07-03 19:19:23 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
closeModal();
|
|
|
|
}
|
|
|
|
// if it's a boost (?)
|
2020-04-23 18:44:18 +02:00
|
|
|
} else {
|
2020-04-25 01:53:57 +02:00
|
|
|
sendSupportOrConfirm();
|
2020-04-23 18:44:18 +02:00
|
|
|
}
|
2018-03-26 23:32:43 +02:00
|
|
|
}
|
2017-09-17 22:33:52 +02:00
|
|
|
}
|
|
|
|
|
2021-08-11 22:58:55 +02:00
|
|
|
const countDecimals = function(value) {
|
|
|
|
const text = value.toString();
|
|
|
|
const index = text.indexOf('.');
|
|
|
|
return (text.length - index - 1);
|
|
|
|
};
|
|
|
|
|
2020-06-17 09:11:57 +02:00
|
|
|
function handleCustomPriceChange(event: SyntheticInputEvent<*>) {
|
2021-08-11 22:58:55 +02:00
|
|
|
let tipAmountAsString = event.target.value;
|
|
|
|
|
|
|
|
let tipAmount = parseFloat(tipAmountAsString);
|
|
|
|
|
|
|
|
const howManyDecimals = countDecimals(tipAmountAsString);
|
2021-07-06 22:28:29 +02:00
|
|
|
|
2021-08-11 22:58:55 +02:00
|
|
|
// fiat tip input
|
|
|
|
if (activeTab === TAB_FIAT) {
|
|
|
|
if (Number.isNaN(tipAmount)) {
|
|
|
|
setCustomTipAmount('');
|
|
|
|
}
|
|
|
|
|
|
|
|
// allow maximum of two decimal places
|
|
|
|
if (howManyDecimals > 2) {
|
|
|
|
tipAmount = Math.floor(tipAmount * 100) / 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove decimals, and then get number of digits
|
|
|
|
const howManyDigits = Math.trunc(tipAmount).toString().length;
|
|
|
|
|
|
|
|
if (howManyDigits > 4 && tipAmount !== 1000) {
|
|
|
|
setTipError('Amount cannot be over 1000 dollars');
|
|
|
|
setCustomTipAmount(tipAmount);
|
|
|
|
} else if (tipAmount > 1000) {
|
|
|
|
setTipError('Amount cannot be over 1000 dollars');
|
|
|
|
setCustomTipAmount(tipAmount);
|
|
|
|
} else {
|
|
|
|
setCustomTipAmount(tipAmount);
|
|
|
|
}
|
|
|
|
// LBC tip input
|
|
|
|
} else {
|
|
|
|
// TODO: this is a bit buggy, needs a touchup
|
|
|
|
// if (howManyDecimals > 9) {
|
|
|
|
// // only allows up to 8 decimal places
|
|
|
|
// tipAmount = Number(tipAmount.toString().match(/^-?\d+(?:\.\d{0,8})?/)[0]);
|
|
|
|
//
|
|
|
|
// setTipError('Please only use up to 8 decimals');
|
|
|
|
// }
|
|
|
|
setCustomTipAmount(tipAmount);
|
|
|
|
}
|
2017-09-17 22:33:52 +02:00
|
|
|
}
|
|
|
|
|
2021-07-03 19:19:23 +02:00
|
|
|
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
|
2021-07-05 13:35:17 +02:00
|
|
|
// eslint-disable-next-line
|
|
|
|
if (tipAmount !== tipAmount || tipAmount === 'NaN') {
|
2021-07-03 19:19:23 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-11 22:58:55 +02:00
|
|
|
function convertToTwoDecimals(number) {
|
|
|
|
return (Math.round(number * 100) / 100).toFixed(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
const amountToShow = activeTab === TAB_FIAT ? convertToTwoDecimals(tipAmount) : tipAmount;
|
|
|
|
|
2021-07-03 19:19:23 +02:00
|
|
|
// if it's a valid number display it, otherwise do an empty string
|
2021-08-11 22:58:55 +02:00
|
|
|
const displayAmount = !isNan(tipAmount) ? amountToShow : '';
|
2021-07-03 19:19:23 +02:00
|
|
|
|
|
|
|
if (activeTab === TAB_BOOST) {
|
2021-07-15 14:55:09 +02:00
|
|
|
return (claimIsMine ? __('Boost Your %claimTypeText%', {claimTypeText}) : __('Boost This %claimTypeText%', {claimTypeText}));
|
2021-07-03 19:19:23 +02:00
|
|
|
} else if (activeTab === TAB_FIAT) {
|
2021-07-05 16:53:38 +02:00
|
|
|
return __('Send a $%displayAmount% Tip', { displayAmount });
|
2021-07-03 19:19:23 +02:00
|
|
|
} else if (activeTab === TAB_LBC) {
|
2021-07-05 18:10:16 +02:00
|
|
|
return __('Send a %displayAmount% Credit Tip', { displayAmount });
|
2021-07-03 19:19:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function shouldDisableAmountSelector(amount) {
|
|
|
|
return (
|
2021-07-05 13:35:17 +02:00
|
|
|
(amount > balance && activeTab !== TAB_FIAT) || (activeTab === TAB_FIAT && (!hasCardSaved || !canReceiveFiatTip))
|
2021-07-03 19:19:23 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setConfirmLabel() {
|
|
|
|
if (activeTab === TAB_LBC) {
|
2021-07-05 18:10:16 +02:00
|
|
|
return __('Tipping Credit');
|
2021-07-03 19:19:23 +02:00
|
|
|
} else if (activeTab === TAB_FIAT) {
|
2021-07-05 16:53:38 +02:00
|
|
|
return __('Tipping Fiat (USD)');
|
2021-07-03 19:19:23 +02:00
|
|
|
} else if (activeTab === TAB_BOOST) {
|
2021-07-05 16:53:38 +02:00
|
|
|
return __('Boosting');
|
2021-07-03 19:19:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-13 20:53:53 +01:00
|
|
|
return (
|
2020-06-08 20:42:29 +02:00
|
|
|
<Form onSubmit={handleSubmit}>
|
2021-07-03 19:19:23 +02:00
|
|
|
{/* if there is no LBC balance, show user frontend to get credits */}
|
2021-08-11 22:58:55 +02:00
|
|
|
{/* if there is lbc, the main tip/boost gui with the 3 tabs at the top */}
|
|
|
|
<Card
|
|
|
|
title={<LbcSymbol postfix={claimIsMine ? __('Boost Your %claimTypeText%', {claimTypeText}) : __('Support This %claimTypeText%', {claimTypeText})} size={22} />}
|
|
|
|
subtitle={
|
|
|
|
<React.Fragment>
|
|
|
|
{!claimIsMine && (
|
|
|
|
<div className="section">
|
|
|
|
{/* tip LBC tab button */}
|
|
|
|
<Button
|
|
|
|
key="tip"
|
|
|
|
icon={ICONS.LBC}
|
|
|
|
label={__('Tip')}
|
|
|
|
button="alt"
|
|
|
|
onClick={() => {
|
|
|
|
const tipInputElement = document.getElementById('tip-input');
|
|
|
|
if (tipInputElement) { tipInputElement.focus() }
|
|
|
|
if (!isConfirming) {
|
|
|
|
setActiveTab(TAB_LBC);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
className={classnames('button-toggle', { 'button-toggle--active': activeTab === TAB_LBC })}
|
|
|
|
/>
|
|
|
|
{/* tip fiat tab button */}
|
|
|
|
{/* @if TARGET='web' */}
|
|
|
|
<Button
|
|
|
|
key="tip-fiat"
|
|
|
|
icon={ICONS.FINANCE}
|
|
|
|
label={__('Tip')}
|
|
|
|
button="alt"
|
|
|
|
onClick={() => {
|
|
|
|
const tipInputElement = document.getElementById('tip-input');
|
|
|
|
if (tipInputElement) { tipInputElement.focus() }
|
|
|
|
if (!isConfirming) {
|
|
|
|
setActiveTab(TAB_FIAT);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
className={classnames('button-toggle', { 'button-toggle--active': activeTab === TAB_FIAT })}
|
|
|
|
/>
|
|
|
|
{/* @endif */}
|
|
|
|
{/* tip LBC tab button */}
|
|
|
|
<Button
|
|
|
|
key="boost"
|
|
|
|
icon={ICONS.TRENDING}
|
|
|
|
label={__('Boost')}
|
|
|
|
button="alt"
|
|
|
|
onClick={() => {
|
|
|
|
const tipInputElement = document.getElementById('tip-input');
|
|
|
|
if (tipInputElement) { tipInputElement.focus() }
|
|
|
|
if (!isConfirming) {
|
|
|
|
setActiveTab(TAB_BOOST);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
className={classnames('button-toggle', { 'button-toggle--active': activeTab === TAB_BOOST })}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{/* short explainer under the button */}
|
|
|
|
<div className="section__subtitle">
|
|
|
|
{explainerText + ' '}
|
|
|
|
{/* {activeTab === TAB_FIAT && !hasCardSaved && <Button navigate={`/$/${PAGES.SETTINGS_STRIPE_CARD}`} label={__('Add A Card')} button="link" />} */}
|
|
|
|
{<Button label={__('Learn more')} button="link" href="https://lbry.com/faq/tipping" />}
|
2020-06-10 00:09:24 +02:00
|
|
|
</div>
|
2021-08-11 22:58:55 +02:00
|
|
|
</React.Fragment>
|
|
|
|
}
|
|
|
|
actions={
|
|
|
|
// confirmation modal, allow user to confirm or cancel transaction
|
|
|
|
isConfirming ? (
|
|
|
|
<>
|
|
|
|
<div className="section section--padded card--inline confirm__wrapper">
|
2021-03-19 07:47:29 +01:00
|
|
|
<div className="section">
|
2021-08-11 22:58:55 +02:00
|
|
|
<div className="confirm__label">{__('To --[the tip recipient]--')}</div>
|
|
|
|
<div className="confirm__value">{channelName || title}</div>
|
|
|
|
<div className="confirm__label">{__('From --[the tip sender]--')}</div>
|
|
|
|
<div className="confirm__value">
|
|
|
|
{activeChannelClaim && !incognito ? activeChannelClaim.name : __('Anonymous')}
|
|
|
|
</div>
|
|
|
|
<div className="confirm__label">{setConfirmLabel()}</div>
|
|
|
|
<div className="confirm__value">
|
|
|
|
{activeTab === TAB_FIAT ? <p>$ {(Math.round(tipAmount * 100) / 100).toFixed(2)}</p> : <LbcSymbol postfix={tipAmount} size={22} />}
|
2020-06-15 16:04:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-08-11 22:58:55 +02:00
|
|
|
</div>
|
|
|
|
<div className="section__actions">
|
|
|
|
<Button
|
|
|
|
autoFocus
|
|
|
|
onClick={handleSubmit}
|
|
|
|
button="primary"
|
|
|
|
disabled={isPending}
|
|
|
|
label={__('Confirm')}
|
|
|
|
/>
|
|
|
|
<Button button="link" label={__('Cancel')} onClick={() => setIsConfirming(false)} />
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
// only show the prompt to earn more if its lbc or boost tab and no balance
|
|
|
|
// otherwise you can show the full prompt
|
|
|
|
) : (!((activeTab === TAB_LBC || activeTab === TAB_BOOST) && noBalance)
|
|
|
|
? <>
|
|
|
|
<div className="section">
|
|
|
|
<ChannelSelector />
|
|
|
|
</div>
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-08-11 22:58:55 +02:00
|
|
|
{activeTab === TAB_FIAT && !hasCardSaved && (
|
|
|
|
<h3 className="add-card-prompt">
|
|
|
|
<Button navigate={`/$/${PAGES.SETTINGS_STRIPE_CARD}`} label={__('Add a Card')} button="link" />
|
|
|
|
{' '}{__('To Tip Creators')}
|
|
|
|
</h3>
|
|
|
|
)}
|
2021-07-03 19:19:23 +02:00
|
|
|
|
2021-08-11 22:58:55 +02:00
|
|
|
{/* section to pick tip/boost amount */}
|
|
|
|
<div className="section">
|
|
|
|
{DEFAULT_TIP_AMOUNTS.map((amount) => (
|
2020-06-10 00:09:24 +02:00
|
|
|
<Button
|
2021-08-11 22:58:55 +02:00
|
|
|
key={amount}
|
|
|
|
disabled={shouldDisableAmountSelector(amount)}
|
2020-06-10 00:09:24 +02:00
|
|
|
button="alt"
|
2020-06-15 16:41:59 +02:00
|
|
|
className={classnames('button-toggle button-toggle--expandformobile', {
|
2021-08-11 22:58:55 +02:00
|
|
|
'button-toggle--active': tipAmount === amount && !useCustomTip,
|
|
|
|
'button-toggle--disabled': amount > balance,
|
2020-06-10 00:09:24 +02:00
|
|
|
})}
|
2021-08-11 22:58:55 +02:00
|
|
|
label={amount}
|
2021-07-03 19:19:23 +02:00
|
|
|
icon={iconToUse}
|
2021-08-11 22:58:55 +02:00
|
|
|
onClick={() => {
|
|
|
|
setPresetTipAmount(amount);
|
|
|
|
setUseCustomTip(false);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
|
|
|
|
<Button
|
|
|
|
button="alt"
|
|
|
|
className={classnames('button-toggle button-toggle--expandformobile', {
|
|
|
|
'button-toggle--active': useCustomTip, // set as active
|
|
|
|
})}
|
|
|
|
icon={iconToUse}
|
|
|
|
label={__('Custom')}
|
|
|
|
onClick={() => setUseCustomTip(true)}
|
|
|
|
// disabled if it's receive fiat and there is no card or creator can't receive tips
|
|
|
|
disabled={activeTab === TAB_FIAT && (!hasCardSaved || !canReceiveFiatTip)}
|
|
|
|
/>
|
|
|
|
|
|
|
|
{DEFAULT_TIP_AMOUNTS.some((val) => val > balance) && activeTab !== TAB_FIAT && (
|
|
|
|
<Button
|
|
|
|
button="secondary"
|
|
|
|
className="button-toggle-group-action"
|
|
|
|
icon={ICONS.BUY}
|
|
|
|
title={__('Buy or swap more LBRY Credits')}
|
|
|
|
navigate={`/$/${PAGES.BUY}`}
|
2020-06-10 00:09:24 +02:00
|
|
|
/>
|
2020-06-15 16:04:44 +02:00
|
|
|
)}
|
2021-08-11 22:58:55 +02:00
|
|
|
</div>
|
2020-06-15 16:04:44 +02:00
|
|
|
|
2021-08-11 22:58:55 +02:00
|
|
|
{useCustomTip && (
|
|
|
|
<div className="section">
|
|
|
|
<FormField
|
2020-06-10 00:09:24 +02:00
|
|
|
autoFocus
|
2021-08-11 22:58:55 +02:00
|
|
|
name="tip-input"
|
|
|
|
label={
|
|
|
|
<React.Fragment>
|
|
|
|
{__('Custom support amount')}{' '}
|
|
|
|
{activeTab !== TAB_FIAT ? (
|
|
|
|
<I18nMessage
|
|
|
|
tokens={{ lbc_balance: <CreditAmount precision={4} amount={balance} showLBC={false} /> }}
|
|
|
|
>
|
|
|
|
(%lbc_balance% Credits available)
|
|
|
|
</I18nMessage>
|
|
|
|
) : (
|
|
|
|
'in USD'
|
|
|
|
)}
|
|
|
|
</React.Fragment>
|
2020-06-10 00:09:24 +02:00
|
|
|
}
|
2021-08-11 22:58:55 +02:00
|
|
|
error={tipError}
|
|
|
|
min="0"
|
|
|
|
step="any"
|
|
|
|
type="number"
|
|
|
|
style={{
|
|
|
|
width: activeTab === TAB_FIAT ? '99px' : '160px',
|
|
|
|
}}
|
|
|
|
placeholder="1.23"
|
|
|
|
value={customTipAmount}
|
|
|
|
onChange={(event) => handleCustomPriceChange(event)}
|
2020-06-10 00:09:24 +02:00
|
|
|
/>
|
|
|
|
</div>
|
2021-08-11 22:58:55 +02:00
|
|
|
)}
|
|
|
|
|
|
|
|
{/* send tip/boost button */}
|
|
|
|
<div className="section__actions">
|
|
|
|
<Button
|
|
|
|
autoFocus
|
|
|
|
icon={isSupport ? ICONS.TRENDING : ICONS.SUPPORT}
|
|
|
|
button="primary"
|
|
|
|
type="submit"
|
|
|
|
disabled={
|
|
|
|
fetchingChannels ||
|
|
|
|
isPending ||
|
|
|
|
tipError ||
|
|
|
|
!tipAmount ||
|
|
|
|
(activeTab === TAB_FIAT && (!hasCardSaved || !canReceiveFiatTip))
|
|
|
|
}
|
|
|
|
label={buildButtonText()}
|
|
|
|
/>
|
|
|
|
{fetchingChannels && <span className="help">{__('Loading your channels...')}</span>}
|
|
|
|
</div>
|
|
|
|
{activeTab !== TAB_FIAT ? (
|
|
|
|
<WalletSpendableBalanceHelp />
|
|
|
|
) : !canReceiveFiatTip ? (
|
2021-08-14 02:40:24 +02:00
|
|
|
<div className="help">{__('Only creators that verify cash accounts can receive tips')}</div>
|
2021-08-11 22:58:55 +02:00
|
|
|
) : (
|
|
|
|
<div className="help">{__('The payment will be made from your saved card')}</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
// if it's LBC and there is no balance, you can prompt to purchase LBC
|
|
|
|
: <Card
|
|
|
|
title={<I18nMessage tokens={{ lbc: <LbcSymbol size={22} /> }}>Supporting content requires %lbc%</I18nMessage>}
|
|
|
|
subtitle={
|
|
|
|
<I18nMessage tokens={{ lbc: <LbcSymbol /> }}>
|
|
|
|
With %lbc%, you can send tips to your favorite creators, or help boost their content for more people to
|
|
|
|
see.
|
|
|
|
</I18nMessage>
|
|
|
|
}
|
|
|
|
actions={
|
|
|
|
<div className="section__actions">
|
|
|
|
<Button
|
|
|
|
icon={ICONS.REWARDS}
|
|
|
|
button="primary"
|
|
|
|
label={__('Earn Rewards')}
|
|
|
|
navigate={`/$/${PAGES.REWARDS}`}
|
|
|
|
/>
|
|
|
|
<Button icon={ICONS.BUY} button="secondary" label={__('Buy/Swap Credits')} navigate={`/$/${PAGES.BUY}`} />
|
|
|
|
<Button button="link" label={__('Nevermind')} onClick={closeModal} />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
/>
|
2020-06-08 20:42:29 +02:00
|
|
|
</Form>
|
2020-03-13 20:53:53 +01:00
|
|
|
);
|
2017-09-17 22:33:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default WalletSendTip;
|