diff --git a/web/cashtab/src/components/Send/Send.js b/web/cashtab/src/components/Send/Send.js index 148025755..aac0bde40 100644 --- a/web/cashtab/src/components/Send/Send.js +++ b/web/cashtab/src/components/Send/Send.js @@ -1,542 +1,529 @@ import React, { useState, useEffect } from 'react'; import styled from 'styled-components'; import { WalletContext } from '@utils/context'; import { Form, notification, message, Spin, Modal, Alert } from 'antd'; import { CashLoader, CashLoadingIcon } from '@components/Common/CustomIcons'; import { Row, Col } from 'antd'; import Paragraph from 'antd/lib/typography/Paragraph'; import PrimaryButton, { SecondaryButton, } from '@components/Common/PrimaryButton'; import { SendBchInput, FormItemWithQRCodeAddon, } from '@components/Common/EnhancedInputs'; import useBCH from '@hooks/useBCH'; import useWindowDimensions from '@hooks/useWindowDimensions'; import { isMobile, isIOS, isSafari } from 'react-device-detect'; import { currency, isValidTokenPrefix, parseAddress, toLegacy, } from '@components/Common/Ticker.js'; import { Event } from '@utils/GoogleAnalytics'; +import { shouldRejectAmountInput } from '@utils/validation'; export const BalanceHeader = styled.div` p { color: #777; width: 100%; font-size: 14px; margin-bottom: 0px; } h3 { color: #444; width: 100%; font-size: 26px; font-weight: bold; margin-bottom: 0px; } `; export const BalanceHeaderFiat = styled.div` color: #444; width: 100%; font-size: 18px; margin-bottom: 20px; font-weight: bold; @media (max-width: 768px) { font-size: 16px; } `; export const ZeroBalanceHeader = styled.div` color: #444; width: 100%; font-size: 14px; margin-bottom: 20px; `; const ConvertAmount = styled.div` color: #777; width: 100%; font-size: 14px; margin-bottom: 10px; font-weight: bold; @media (max-width: 768px) { font-size: 12px; } `; const SendBCH = ({ filledAddress, callbackTxId }) => { const { wallet, fiatPrice, balances, slpBalancesAndUtxos, apiError, } = React.useContext(WalletContext); // Get device window width // If this is less than 769, the page will open with QR scanner open const { width } = useWindowDimensions(); // Load with QR code open if device is mobile and NOT iOS + anything but safari const scannerSupported = width < 769 && isMobile && !(isIOS && !isSafari); const [formData, setFormData] = useState({ dirty: true, value: '', address: filledAddress || '', }); const [loading, setLoading] = useState(false); const [queryStringText, setQueryStringText] = useState(null); const [sendBchAddressError, setSendBchAddressError] = useState(false); const [sendBchAmountError, setSendBchAmountError] = useState(false); const [selectedCurrency, setSelectedCurrency] = useState(currency.ticker); // Support cashtab button from web pages const [txInfoFromUrl, setTxInfoFromUrl] = useState(false); // Show a confirmation modal on transactions created by populating form from web page button const [isModalVisible, setIsModalVisible] = useState(false); const showModal = () => { setIsModalVisible(true); }; const handleOk = () => { setIsModalVisible(false); submit(); }; const handleCancel = () => { setIsModalVisible(false); }; const { getBCH, getRestUrl, sendBch, calcFee } = useBCH(); const BCH = getBCH(); // If the balance has changed, unlock the UI // This is redundant, if backend has refreshed in 1.75s timeout below, UI will already be unlocked useEffect(() => { setLoading(false); }, [balances.totalBalance]); useEffect(() => { // Manually parse for txInfo object on page load when Send.js is loaded with a query string // Do not set txInfo in state if query strings are not present if ( !window.location || !window.location.hash || window.location.hash === '#/send' ) { return; } const txInfoArr = window.location.hash.split('?')[1].split('&'); // Iterate over this to create object const txInfo = {}; for (let i = 0; i < txInfoArr.length; i += 1) { let txInfoKeyValue = txInfoArr[i].split('='); let key = txInfoKeyValue[0]; let value = txInfoKeyValue[1]; txInfo[key] = value; } console.log(`txInfo from page params`, txInfo); setTxInfoFromUrl(txInfo); populateFormsFromUrl(txInfo); }, []); function populateFormsFromUrl(txInfo) { if (txInfo && txInfo.address && txInfo.value) { setFormData({ address: txInfo.address, value: txInfo.value }); } } async function submit() { setFormData({ ...formData, dirty: false, }); if ( !formData.address || !formData.value || Number(formData.value) <= 0 ) { return; } // Event("Category", "Action", "Label") // Track number of BCHA send transactions and whether users // are sending BCHA or USD Event('Send.js', 'Send', selectedCurrency); setLoading(true); const { address, value } = formData; // Get the param-free address let cleanAddress = address.split('?')[0]; // Ensure address has bitcoincash: prefix and checksum cleanAddress = toLegacy(cleanAddress); let hasValidCashPrefix; try { hasValidCashPrefix = cleanAddress.startsWith( currency.legacyPrefix + ':', ); } catch (err) { hasValidCashPrefix = false; console.log(`toLegacy() returned an error:`, cleanAddress); } if (!hasValidCashPrefix) { // set loading to false and set address validation to false // Now that the no-prefix case is handled, this happens when user tries to send // BCHA to an SLPA address setLoading(false); setSendBchAddressError( `Destination is not a valid ${currency.ticker} address`, ); return; } // Calculate the amount in BCH let bchValue = value; if (selectedCurrency === 'USD') { bchValue = (value / fiatPrice).toFixed(8); } try { const link = await sendBch( BCH, wallet, slpBalancesAndUtxos.nonSlpUtxos, { addresses: [filledAddress || cleanAddress], values: [bchValue], }, callbackTxId, ); notification.success({ message: 'Success', description: ( Transaction successful. Click or tap here for more details ), duration: 5, }); } catch (e) { // Set loading to false here as well, as balance may not change depending on where error occured in try loop setLoading(false); let message; if (!e.error && !e.message) { message = `Transaction failed: no response from ${getRestUrl()}.`; } else if ( /Could not communicate with full node or other external service/.test( e.error, ) ) { message = 'Could not communicate with API. Please try again.'; } else if ( e.error && e.error.includes( 'too-long-mempool-chain, too many unconfirmed ancestors [limit: 50] (code 64)', ) ) { message = `The ${currency.ticker} you are trying to send has too many unconfirmed ancestors to send (limit 50). Sending will be possible after a block confirmation. Try again in about 10 minutes.`; } else { message = e.message || e.error || JSON.stringify(e); } notification.error({ message: 'Error', description: message, duration: 5, }); console.error(e); } } const handleAddressChange = e => { const { value, name } = e.target; let error = false; let addressString = value; // parse address const addressInfo = parseAddress(BCH, addressString); /* Model addressInfo = { address: '', isValid: false, queryString: '', amount: null, }; */ const { address, isValid, queryString, amount } = addressInfo; // If query string, // Show an alert that only amount and currency.ticker are supported setQueryStringText(queryString); // Is this valid address? if (!isValid) { error = 'Address is not a valid cash address'; // If valid address but token format if (isValidTokenPrefix(address)) { error = `Token addresses are not supported for ${currency.ticker} sends`; } } setSendBchAddressError(error); // Set amount if it's in the query string if (amount !== null) { // Set currency to BCHA setSelectedCurrency(currency.ticker); // Use this object to mimic user input and get validation for the value let amountObj = { target: { name: 'value', value: amount } }; handleBchAmountChange(amountObj); setFormData({ ...formData, value: amount, }); } // Set address field to user input setFormData(p => ({ ...p, [name]: value, })); }; const handleSelectedCurrencyChange = e => { setSelectedCurrency(e); // Clear input field to prevent accidentally sending 1 BCH instead of 1 USD setFormData(p => ({ ...p, value: '' })); }; const handleBchAmountChange = e => { const { value, name } = e.target; - let error = false; let bchValue = value; - - if (selectedCurrency === 'USD') { - bchValue = (value / fiatPrice).toFixed(8); - } - - // Validate value for > 0 - if (isNaN(bchValue)) { - error = 'Amount must be a number'; - } else if (bchValue <= 0) { - error = 'Amount must be greater than 0'; - } else if (bchValue < currency.dust) { - error = `Send amount must be at least ${currency.dust} ${currency.ticker}`; - } else if (bchValue > balances.totalBalance) { - error = `Amount cannot exceed your ${currency.ticker} balance`; - } else if (!isNaN(bchValue) && bchValue.toString().includes('.')) { - if (bchValue.toString().split('.')[1].length > 8) { - error = `${currency.ticker} transactions do not support more than 8 decimal places`; - } - } + const error = shouldRejectAmountInput( + bchValue, + selectedCurrency, + fiatPrice, + balances.totalBalance, + ); setSendBchAmountError(error); setFormData(p => ({ ...p, [name]: value })); }; const onMax = async () => { // Clear amt error setSendBchAmountError(false); // Set currency to BCH setSelectedCurrency(currency.ticker); try { const txFeeSats = calcFee(BCH, slpBalancesAndUtxos.nonSlpUtxos); const txFeeBch = txFeeSats / 1e8; let value = balances.totalBalance - txFeeBch >= 0 ? (balances.totalBalance - txFeeBch).toFixed(8) : 0; setFormData({ ...formData, value, }); } catch (err) { console.log(`Error in onMax:`); console.log(err); message.error( 'Unable to calculate the max value due to network errors', ); } }; // Display price in USD below input field for send amount, if it can be calculated let fiatPriceString = ''; if (fiatPrice !== null && !isNaN(formData.value)) { if (selectedCurrency === currency.ticker) { fiatPriceString = `$ ${(fiatPrice * Number(formData.value)).toFixed( 2, )} USD`; } else { fiatPriceString = `${(Number(formData.value) / fiatPrice).toFixed( 8, )} ${currency.ticker}`; } } return ( <>

Are you sure you want to send {formData.value}{' '} {currency.ticker} to {formData.address}?

{!balances.totalBalance ? ( You currently have 0 {currency.ticker}
Deposit some funds to use this feature
) : ( <>

Available balance

{balances.totalBalance} {currency.ticker}

{fiatPrice !== null && ( ${(balances.totalBalance * fiatPrice).toFixed(2)}{' '} USD )} )}
handleAddressChange({ target: { name: 'address', value: result, }, }) } inputProps={{ disabled: Boolean(filledAddress), placeholder: `${currency.ticker} Address`, name: 'address', onChange: e => handleAddressChange(e), required: true, value: filledAddress || formData.address, }} > handleBchAmountChange(e), required: true, value: formData.value, }} selectProps={{ value: selectedCurrency, disabled: queryStringText !== null, onChange: e => handleSelectedCurrencyChange(e), }} > = {fiatPriceString}
{!balances.totalBalance || apiError || sendBchAmountError || sendBchAddressError ? ( Send ) : ( <> {txInfoFromUrl ? ( showModal()} > Send ) : ( submit()} > Send )} )}
{queryStringText && ( )} {apiError && ( <>

An error occured on our end. Reconnecting...

)}
); }; export default SendBCH; diff --git a/web/cashtab/src/utils/__tests__/validation.test.js b/web/cashtab/src/utils/__tests__/validation.test.js new file mode 100644 index 000000000..bbb375c6b --- /dev/null +++ b/web/cashtab/src/utils/__tests__/validation.test.js @@ -0,0 +1,74 @@ +import { shouldRejectAmountInput } from '../validation'; +import { currency } from '@components/Common/Ticker.js'; + +describe('Validation utils', () => { + it(`Returns 'false' if ${currency.ticker} send amount is a valid send amount`, () => { + expect(shouldRejectAmountInput('10', currency.ticker, 20.0, 300)).toBe( + false, + ); + }); + it(`Returns 'false' if ${currency.ticker} send amount is a valid send amount in USD`, () => { + // Here, user is trying to send $170 USD, where 1 BCHA = $20 USD, and the user has a balance of 15 BCHA or $300 + expect(shouldRejectAmountInput('170', 'USD', 20.0, 15)).toBe(false); + }); + it(`Returns not a number if ${currency.ticker} send amount is not a number`, () => { + const expectedValidationError = `Amount must be a number`; + expect( + shouldRejectAmountInput('Not a number', currency.ticker, 20.0, 3), + ).toBe(expectedValidationError); + }); + it(`Returns amount must be greater than 0 if ${currency.ticker} send amount is 0`, () => { + const expectedValidationError = `Amount must be greater than 0`; + expect(shouldRejectAmountInput('0', currency.ticker, 20.0, 3)).toBe( + expectedValidationError, + ); + }); + it(`Returns amount must be greater than 0 if ${currency.ticker} send amount is less than 0`, () => { + const expectedValidationError = `Amount must be greater than 0`; + expect( + shouldRejectAmountInput('-0.031', currency.ticker, 20.0, 3), + ).toBe(expectedValidationError); + }); + it(`Returns balance error if ${currency.ticker} send amount is greater than user balance`, () => { + const expectedValidationError = `Amount cannot exceed your ${currency.ticker} balance`; + expect(shouldRejectAmountInput('17', currency.ticker, 20.0, 3)).toBe( + expectedValidationError, + ); + }); + it(`Returns balance error if ${currency.ticker} send amount is greater than user balance`, () => { + const expectedValidationError = `Amount cannot exceed your ${currency.ticker} balance`; + expect(shouldRejectAmountInput('17', currency.ticker, 20.0, 3)).toBe( + expectedValidationError, + ); + }); + it(`Returns error if ${currency.ticker} send amount is less than ${currency.dust} minimum`, () => { + const expectedValidationError = `Send amount must be at least ${currency.dust} ${currency.ticker}`; + expect( + shouldRejectAmountInput( + (currency.dust - 0.00000001).toString(), + currency.ticker, + 20.0, + 3, + ), + ).toBe(expectedValidationError); + }); + it(`Returns error if ${currency.ticker} send amount is less than ${currency.dust} minimum in fiat currency`, () => { + const expectedValidationError = `Send amount must be at least ${currency.dust} ${currency.ticker}`; + expect( + shouldRejectAmountInput('0.0000005', 'USD', 14.63, 0.52574662), + ).toBe(expectedValidationError); + }); + it(`Returns balance error if ${currency.ticker} send amount is greater than user balance with fiat currency selected`, () => { + const expectedValidationError = `Amount cannot exceed your ${currency.ticker} balance`; + // Here, user is trying to send $170 USD, where 1 BCHA = $20 USD, and the user has a balance of 5 BCHA or $100 + expect(shouldRejectAmountInput('170', 'USD', 20.0, 5)).toBe( + expectedValidationError, + ); + }); + it(`Returns precision error if ${currency.ticker} send amount has more than 8 decimal places`, () => { + const expectedValidationError = `${currency.ticker} transactions do not support more than 8 decimal places`; + expect( + shouldRejectAmountInput('17.123456789', currency.ticker, 20.0, 35), + ).toBe(expectedValidationError); + }); +}); diff --git a/web/cashtab/src/utils/validation.js b/web/cashtab/src/utils/validation.js new file mode 100644 index 000000000..29a63fb0e --- /dev/null +++ b/web/cashtab/src/utils/validation.js @@ -0,0 +1,34 @@ +import { currency } from '@components/Common/Ticker.js'; + +// Validate cash amount +export const shouldRejectAmountInput = ( + cashAmount, + selectedCurrency, + fiatPrice, + totalCashBalance, +) => { + // Take cashAmount as input, a string from form input + let error = false; + let testedAmount = cashAmount; + + if (selectedCurrency === 'USD') { + testedAmount = (cashAmount / fiatPrice).toFixed(8); + } + + // Validate value for > 0 + if (isNaN(testedAmount)) { + error = 'Amount must be a number'; + } else if (testedAmount <= 0) { + error = 'Amount must be greater than 0'; + } else if (testedAmount < currency.dust) { + error = `Send amount must be at least ${currency.dust} ${currency.ticker}`; + } else if (testedAmount > totalCashBalance) { + error = `Amount cannot exceed your ${currency.ticker} balance`; + } else if (!isNaN(testedAmount) && testedAmount.toString().includes('.')) { + if (testedAmount.toString().split('.')[1].length > 8) { + error = `${currency.ticker} transactions do not support more than 8 decimal places`; + } + } + // return false if no error, or string error msg if error + return error; +};