import { useFocusEffect, useRoute } from '@react-navigation/native'; import React, { useCallback, useEffect, useRef, useState } from 'react'; import { BackHandler, InteractionManager, Keyboard, ScrollView, StyleSheet, Text, TextInput, View } from 'react-native'; import Share from 'react-native-share'; import * as BlueElectrum from '../../blue_modules/BlueElectrum'; import { fiatToBTC, satoshiToBTC } from '../../blue_modules/currency'; import triggerHapticFeedback, { HapticFeedbackTypes } from '../../blue_modules/hapticFeedback'; import Notifications from '../../blue_modules/notifications'; import { BlueButtonLink, BlueCard, BlueLoading, BlueSpacing20, BlueSpacing40, BlueText } from '../../BlueComponents'; import DeeplinkSchemaMatch from '../../class/deeplink-schema-match'; import AmountInput from '../../components/AmountInput'; import BottomModal from '../../components/BottomModal'; import Button from '../../components/Button'; import CopyTextToClipboard from '../../components/CopyTextToClipboard'; import HandOffComponent from '../../components/HandOffComponent'; import QRCodeComponent from '../../components/QRCodeComponent'; import { useTheme } from '../../components/themes'; import { TransactionPendingIconBig } from '../../components/TransactionPendingIconBig'; import { useExtendedNavigation } from '../../hooks/useExtendedNavigation'; import loc, { formatBalance } from '../../loc'; import { BitcoinUnit, Chain } from '../../models/bitcoinUnits'; import { SuccessView } from '../send/success'; import { useStorage } from '../../hooks/context/useStorage'; import { HandOffActivityType } from '../../components/types'; import SegmentedControl from '../../components/SegmentControl'; const segmentControlValues = [loc.wallets.details_address, loc.bip47.payment_code]; const ReceiveDetails = () => { const { walletID, address } = useRoute().params; const { wallets, saveToDisk, sleep, isElectrumDisabled, fetchAndSaveWalletTransactions } = useStorage(); const wallet = wallets.find(w => w.getID() === walletID); const [customLabel, setCustomLabel] = useState(); const [customAmount, setCustomAmount] = useState(); const [customUnit, setCustomUnit] = useState(BitcoinUnit.BTC); const [bip21encoded, setBip21encoded] = useState(); const [isCustom, setIsCustom] = useState(false); const [showPendingBalance, setShowPendingBalance] = useState(false); const [showConfirmedBalance, setShowConfirmedBalance] = useState(false); const [showAddress, setShowAddress] = useState(false); const [currentTab, setCurrentTab] = useState(segmentControlValues[0]); const { goBack, setParams } = useExtendedNavigation(); const bottomModalRef = useRef(null); const { colors } = useTheme(); const [intervalMs, setIntervalMs] = useState(5000); const [eta, setEta] = useState(''); const [initialConfirmed, setInitialConfirmed] = useState(0); const [initialUnconfirmed, setInitialUnconfirmed] = useState(0); const [displayBalance, setDisplayBalance] = useState(''); const fetchAddressInterval = useRef(); const receiveAddressButton = useRef(); const stylesHook = StyleSheet.create({ customAmount: { borderColor: colors.formBorder, borderBottomColor: colors.formBorder, backgroundColor: colors.inputBackgroundColor, }, customAmountText: { color: colors.foregroundColor, }, root: { backgroundColor: colors.elevated, }, amount: { color: colors.foregroundColor, }, label: { color: colors.foregroundColor, }, modalButton: { backgroundColor: colors.modalButton, }, tip: { backgroundColor: colors.ballOutgoingExpired, }, }); useEffect(() => { if (showConfirmedBalance) { triggerHapticFeedback(HapticFeedbackTypes.NotificationSuccess); } }, [showConfirmedBalance]); // re-fetching address balance periodically useEffect(() => { console.log('receive/details - useEffect'); const intervalId = setInterval(async () => { try { const decoded = DeeplinkSchemaMatch.bip21decode(bip21encoded); const addressToUse = address || decoded.address; if (!addressToUse) return; console.log('checking address', addressToUse, 'for balance...'); const balance = await BlueElectrum.getBalanceByAddress(addressToUse); console.log('...got', balance); if (balance.unconfirmed > 0) { if (initialConfirmed === 0 && initialUnconfirmed === 0) { setInitialConfirmed(balance.confirmed); setInitialUnconfirmed(balance.unconfirmed); setIntervalMs(25000); triggerHapticFeedback(HapticFeedbackTypes.ImpactHeavy); } const txs = await BlueElectrum.getMempoolTransactionsByAddress(addressToUse); const tx = txs.pop(); if (tx) { const rez = await BlueElectrum.multiGetTransactionByTxid([tx.tx_hash], true, 10); if (rez && rez[tx.tx_hash] && rez[tx.tx_hash].vsize) { const satPerVbyte = Math.round(tx.fee / rez[tx.tx_hash].vsize); const fees = await BlueElectrum.estimateFees(); if (satPerVbyte >= fees.fast) { setEta(loc.formatString(loc.transactions.eta_10m)); } else if (satPerVbyte >= fees.medium) { setEta(loc.formatString(loc.transactions.eta_3h)); } else { setEta(loc.formatString(loc.transactions.eta_1d)); } } } setDisplayBalance( loc.formatString(loc.transactions.pending_with_amount, { amt1: formatBalance(balance.unconfirmed, BitcoinUnit.LOCAL_CURRENCY, true).toString(), amt2: formatBalance(balance.unconfirmed, BitcoinUnit.BTC, true).toString(), }), ); setShowPendingBalance(true); setShowAddress(false); } else if (balance.unconfirmed === 0 && initialUnconfirmed !== 0) { // now, handling a case when unconfirmed == 0, but in past it wasnt (i.e. it changed while user was // staring at the screen) const balanceToShow = balance.confirmed - initialConfirmed; if (balanceToShow > 0) { // address has actually more coins than initially, so we definitely gained something setShowConfirmedBalance(true); setShowPendingBalance(false); setShowAddress(false); setDisplayBalance( loc.formatString(loc.transactions.received_with_amount, { amt1: formatBalance(balanceToShow, BitcoinUnit.LOCAL_CURRENCY, true).toString(), amt2: formatBalance(balanceToShow, BitcoinUnit.BTC, true).toString(), }), ); fetchAndSaveWalletTransactions(walletID); } else { // rare case, but probable. transaction evicted from mempool (maybe cancelled by the sender) setShowConfirmedBalance(false); setShowPendingBalance(false); setShowAddress(true); } } } catch (error) { console.log(error); } }, intervalMs); return () => clearInterval(intervalId); }, [bip21encoded, address, initialConfirmed, initialUnconfirmed, intervalMs, fetchAndSaveWalletTransactions, walletID]); const renderConfirmedBalance = () => { return ( {isCustom && ( <> {customLabel} )} {displayBalance} ); }; const renderPendingBalance = () => { return ( {isCustom && ( <> {customLabel} )} {displayBalance} {eta} ); }; const handleBackButton = () => { goBack(null); return true; }; const setAddressBIP21Encoded = useCallback( addr => { const newBip21encoded = DeeplinkSchemaMatch.bip21encode(addr); setParams({ address: addr }); setBip21encoded(newBip21encoded); setShowAddress(true); }, [setParams], ); useEffect(() => { BackHandler.addEventListener('hardwareBackPress', handleBackButton); return () => { BackHandler.removeEventListener('hardwareBackPress', handleBackButton); clearInterval(fetchAddressInterval.current); fetchAddressInterval.current = undefined; }; // eslint-disable-next-line react-hooks/exhaustive-deps }, []); const renderReceiveDetails = () => { return ( <> {isCustom && ( <> {getDisplayAmount() && ( {getDisplayAmount()} )} {customLabel?.length > 0 && ( {customLabel} )} )} ); }; const obtainWalletAddress = useCallback(async () => { console.log('receive/details - componentDidMount'); let newAddress; if (address) { setAddressBIP21Encoded(address); await Notifications.tryToObtainPermissions(receiveAddressButton); Notifications.majorTomToGroundControl([address], [], []); } else { if (wallet.chain === Chain.ONCHAIN) { try { if (!isElectrumDisabled) newAddress = await Promise.race([wallet.getAddressAsync(), sleep(1000)]); } catch (_) {} if (newAddress === undefined) { // either sleep expired or getAddressAsync threw an exception console.warn('either sleep expired or getAddressAsync threw an exception'); newAddress = wallet._getExternalAddressByIndex(wallet.getNextFreeAddressIndex()); } else { saveToDisk(); // caching whatever getAddressAsync() generated internally } } else if (wallet.chain === Chain.OFFCHAIN) { try { await Promise.race([wallet.getAddressAsync(), sleep(1000)]); newAddress = wallet.getAddress(); } catch (_) {} if (newAddress === undefined) { // either sleep expired or getAddressAsync threw an exception console.warn('either sleep expired or getAddressAsync threw an exception'); newAddress = wallet.getAddress(); } else { saveToDisk(); // caching whatever getAddressAsync() generated internally } } setAddressBIP21Encoded(newAddress); await Notifications.tryToObtainPermissions(receiveAddressButton); Notifications.majorTomToGroundControl([newAddress], [], []); } }, [wallet, saveToDisk, address, setAddressBIP21Encoded, isElectrumDisabled, sleep]); useFocusEffect( useCallback(() => { const task = InteractionManager.runAfterInteractions(async () => { if (wallet) { obtainWalletAddress(); } else if (!wallet && address) { setAddressBIP21Encoded(address); } }); return () => { task.cancel(); }; }, [wallet, address, obtainWalletAddress, setAddressBIP21Encoded]), ); const dismissCustomAmountModal = () => { Keyboard.dismiss(); bottomModalRef.current.dismiss(); }; const showCustomAmountModal = () => { bottomModalRef.current.present(); }; const createCustomAmountAddress = () => { setIsCustom(true); bottomModalRef.current.dismiss(); let amount = customAmount; switch (customUnit) { case BitcoinUnit.BTC: // nop break; case BitcoinUnit.SATS: amount = satoshiToBTC(customAmount); break; case BitcoinUnit.LOCAL_CURRENCY: if (AmountInput.conversionCache[amount + BitcoinUnit.LOCAL_CURRENCY]) { // cache hit! we reuse old value that supposedly doesnt have rounding errors amount = satoshiToBTC(AmountInput.conversionCache[amount + BitcoinUnit.LOCAL_CURRENCY]); } else { amount = fiatToBTC(customAmount); } break; } setBip21encoded(DeeplinkSchemaMatch.bip21encode(address, { amount, label: customLabel })); setShowAddress(true); }; const renderCustomAmountModal = () => { return (