import React, { useContext, useEffect } from 'react'; import { shallowEqual, useDispatch, useSelector } from 'react-redux'; import { useHistory } from 'react-router-dom'; import isEqual from 'lodash/isEqual'; import { I18nContext } from '../../../contexts/i18n'; import { getFetchParams, getApproveTxParams, prepareToLeaveSwaps, getSmartTransactionsOptInStatus, getSmartTransactionsEnabled, getCurrentSmartTransactionsEnabled, } from '../../../ducks/swaps/swaps'; import { isHardwareWallet, getHardwareWalletType, } from '../../../selectors/selectors'; import { DEFAULT_ROUTE, BUILD_QUOTE_ROUTE, } from '../../../helpers/constants/routes'; import PulseLoader from '../../../components/ui/pulse-loader'; import Box from '../../../components/ui/box'; import { BLOCK_SIZES, TextVariant, JustifyContent, DISPLAY, TextColor, } from '../../../helpers/constants/design-system'; import SwapsFooter from '../swaps-footer'; import { MetaMetricsContext } from '../../../contexts/metametrics'; import { MetaMetricsEventCategory } from '../../../../shared/constants/metametrics'; import { Text } from '../../../components/component-library/text/deprecated'; import SwapStepIcon from './swap-step-icon'; export default function AwaitingSignatures() { const t = useContext(I18nContext); const history = useHistory(); const dispatch = useDispatch(); const fetchParams = useSelector(getFetchParams, isEqual); const { destinationTokenInfo, sourceTokenInfo } = fetchParams?.metaData || {}; const approveTxParams = useSelector(getApproveTxParams, shallowEqual); const hardwareWalletUsed = useSelector(isHardwareWallet); const hardwareWalletType = useSelector(getHardwareWalletType); const smartTransactionsOptInStatus = useSelector( getSmartTransactionsOptInStatus, ); const smartTransactionsEnabled = useSelector(getSmartTransactionsEnabled); const currentSmartTransactionsEnabled = useSelector( getCurrentSmartTransactionsEnabled, ); const needsTwoConfirmations = Boolean(approveTxParams); const trackEvent = useContext(MetaMetricsContext); useEffect(() => { trackEvent({ event: 'Awaiting Signature(s) on a HW wallet', category: MetaMetricsEventCategory.Swaps, sensitiveProperties: { needs_two_confirmations: needsTwoConfirmations, token_from: sourceTokenInfo?.symbol, token_from_amount: fetchParams?.value, token_to: destinationTokenInfo?.symbol, request_type: fetchParams?.balanceError ? 'Quote' : 'Order', slippage: fetchParams?.slippage, custom_slippage: fetchParams?.slippage === 2, is_hardware_wallet: hardwareWalletUsed, hardware_wallet_type: hardwareWalletType, stx_enabled: smartTransactionsEnabled, current_stx_enabled: currentSmartTransactionsEnabled, stx_user_opt_in: smartTransactionsOptInStatus, }, }); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); const headerText = needsTwoConfirmations ? t('swapTwoTransactions') : t('swapConfirmWithHwWallet'); return (
{headerText} {needsTwoConfirmations && ( <> {t('swapToConfirmWithHwWallet')} {t('swapGasFeesSplit')} )} { await dispatch(prepareToLeaveSwaps()); // Go to the default route and then to the build quote route in order to clean up // the `inputValue` local state in `pages/swaps/index.js` history.push(DEFAULT_ROUTE); history.push(BUILD_QUOTE_ROUTE); }} submitText={t('cancel')} hideCancel />
); }