import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import { Redirect, Route } from 'react-router-dom'; import { formatDate } from '../../helpers/utils/util'; import AssetList from '../../components/app/asset-list'; import CollectiblesTab from '../../components/app/collectibles-tab'; import HomeNotification from '../../components/app/home-notification'; import MultipleNotifications from '../../components/app/multiple-notifications'; import TransactionList from '../../components/app/transaction-list'; import MenuBar from '../../components/app/menu-bar'; import Popover from '../../components/ui/popover'; import Button from '../../components/ui/button'; import ConnectedSites from '../connected-sites'; import ConnectedAccounts from '../connected-accounts'; import { Tabs, Tab } from '../../components/ui/tabs'; import { EthOverview } from '../../components/app/wallet-overview'; import WhatsNewPopup from '../../components/app/whats-new-popup'; import RecoveryPhraseReminder from '../../components/app/recovery-phrase-reminder'; import ActionableMessage from '../../components/ui/actionable-message/actionable-message'; import Typography from '../../components/ui/typography/typography'; import { TYPOGRAPHY, FONT_WEIGHT } from '../../helpers/constants/design-system'; import { isBeta } from '../../helpers/utils/build-types'; import { ASSET_ROUTE, RESTORE_VAULT_ROUTE, CONFIRM_TRANSACTION_ROUTE, CONFIRM_ADD_SUGGESTED_TOKEN_ROUTE, INITIALIZE_BACKUP_SEED_PHRASE_ROUTE, CONNECT_ROUTE, CONNECTED_ROUTE, CONNECTED_ACCOUNTS_ROUTE, AWAITING_SWAP_ROUTE, BUILD_QUOTE_ROUTE, VIEW_QUOTE_ROUTE, CONFIRMATION_V_NEXT_ROUTE, ADD_COLLECTIBLE_ROUTE, } from '../../helpers/constants/routes'; import BetaHomeFooter from './beta-home-footer.component'; const LEARN_MORE_URL = 'https://metamask.zendesk.com/hc/en-us/articles/360045129011-Intro-to-MetaMask-v8-extension'; const LEGACY_WEB3_URL = 'https://metamask.zendesk.com/hc/en-us/articles/360053147012'; const INFURA_BLOCKAGE_URL = 'https://metamask.zendesk.com/hc/en-us/articles/360059386712'; export default class Home extends PureComponent { static contextTypes = { t: PropTypes.func, }; static propTypes = { history: PropTypes.object, forgottenPassword: PropTypes.bool, suggestedAssets: PropTypes.array, unconfirmedTransactionsCount: PropTypes.number, shouldShowSeedPhraseReminder: PropTypes.bool.isRequired, isPopup: PropTypes.bool, isNotification: PropTypes.bool.isRequired, threeBoxSynced: PropTypes.bool, setupThreeBox: PropTypes.func, turnThreeBoxSyncingOn: PropTypes.func, showRestorePrompt: PropTypes.bool, selectedAddress: PropTypes.string, restoreFromThreeBox: PropTypes.func, setShowRestorePromptToFalse: PropTypes.func, threeBoxLastUpdated: PropTypes.number, firstPermissionsRequestId: PropTypes.string, totalUnapprovedCount: PropTypes.number.isRequired, setConnectedStatusPopoverHasBeenShown: PropTypes.func, connectedStatusPopoverHasBeenShown: PropTypes.bool, defaultHomeActiveTabName: PropTypes.string, onTabClick: PropTypes.func.isRequired, haveSwapsQuotes: PropTypes.bool.isRequired, showAwaitingSwapScreen: PropTypes.bool.isRequired, swapsFetchParams: PropTypes.object, shouldShowWeb3ShimUsageNotification: PropTypes.bool.isRequired, setWeb3ShimUsageAlertDismissed: PropTypes.func.isRequired, originOfCurrentTab: PropTypes.string, disableWeb3ShimUsageAlert: PropTypes.func.isRequired, pendingConfirmations: PropTypes.arrayOf(PropTypes.object).isRequired, infuraBlocked: PropTypes.bool.isRequired, showWhatsNewPopup: PropTypes.bool.isRequired, hideWhatsNewPopup: PropTypes.func.isRequired, notificationsToShow: PropTypes.bool.isRequired, showRecoveryPhraseReminder: PropTypes.bool.isRequired, setRecoveryPhraseReminderHasBeenShown: PropTypes.func.isRequired, setRecoveryPhraseReminderLastShown: PropTypes.func.isRequired, seedPhraseBackedUp: PropTypes.bool.isRequired, newNetworkAdded: PropTypes.string, setNewNetworkAdded: PropTypes.func.isRequired, isSigningQRHardwareTransaction: PropTypes.bool.isRequired, newCollectibleAddedMessage: PropTypes.string, setNewCollectibleAddedMessage: PropTypes.func.isRequired, }; state = { canShowBlockageNotification: true, closing: false, redirecting: false, }; constructor(props) { super(props); const { firstPermissionsRequestId, haveSwapsQuotes, isNotification, isSigningQRHardwareTransaction, showAwaitingSwapScreen, suggestedAssets = [], swapsFetchParams, totalUnapprovedCount, unconfirmedTransactionsCount, } = this.props; if ( isNotification && totalUnapprovedCount === 0 && !isSigningQRHardwareTransaction ) { this.state.closing = true; global.platform.closeCurrentWindow(); } else if ( firstPermissionsRequestId || unconfirmedTransactionsCount > 0 || suggestedAssets.length > 0 || (!isNotification && (showAwaitingSwapScreen || haveSwapsQuotes || swapsFetchParams)) ) { this.state.redirecting = true; } } checkStatusAndNavigate() { const { firstPermissionsRequestId, history, isNotification, suggestedAssets = [], totalUnapprovedCount, unconfirmedTransactionsCount, haveSwapsQuotes, showAwaitingSwapScreen, swapsFetchParams, pendingConfirmations, isSigningQRHardwareTransaction, } = this.props; if ( isNotification && totalUnapprovedCount === 0 && !isSigningQRHardwareTransaction ) { global.platform.closeCurrentWindow(); } else if (!isNotification && showAwaitingSwapScreen) { history.push(AWAITING_SWAP_ROUTE); } else if (!isNotification && haveSwapsQuotes) { history.push(VIEW_QUOTE_ROUTE); } else if (!isNotification && swapsFetchParams) { history.push(BUILD_QUOTE_ROUTE); } else if (firstPermissionsRequestId) { history.push(`${CONNECT_ROUTE}/${firstPermissionsRequestId}`); } else if (unconfirmedTransactionsCount > 0) { history.push(CONFIRM_TRANSACTION_ROUTE); } else if (suggestedAssets.length > 0) { history.push(CONFIRM_ADD_SUGGESTED_TOKEN_ROUTE); } else if (pendingConfirmations.length > 0) { history.push(CONFIRMATION_V_NEXT_ROUTE); } } componentDidMount() { this.checkStatusAndNavigate(); } componentDidUpdate() { const { setupThreeBox, showRestorePrompt, threeBoxLastUpdated, threeBoxSynced, isNotification, } = this.props; isNotification && this.checkStatusAndNavigate(); if (threeBoxSynced && showRestorePrompt && threeBoxLastUpdated === null) { setupThreeBox(); } } onRecoveryPhraseReminderClose = () => { const { setRecoveryPhraseReminderHasBeenShown, setRecoveryPhraseReminderLastShown, } = this.props; setRecoveryPhraseReminderHasBeenShown(true); setRecoveryPhraseReminderLastShown(new Date().getTime()); }; renderNotifications() { const { t } = this.context; const { history, shouldShowSeedPhraseReminder, isPopup, selectedAddress, restoreFromThreeBox, turnThreeBoxSyncingOn, setShowRestorePromptToFalse, showRestorePrompt, threeBoxLastUpdated, shouldShowWeb3ShimUsageNotification, setWeb3ShimUsageAlertDismissed, originOfCurrentTab, disableWeb3ShimUsageAlert, infuraBlocked, newNetworkAdded, setNewNetworkAdded, newCollectibleAddedMessage, setNewCollectibleAddedMessage, } = this.props; return ( {newCollectibleAddedMessage ? ( {newCollectibleAddedMessage === 'success' ? ( ) : null} {newCollectibleAddedMessage === 'success' ? t('newCollectibleAddedMessage') : t('newCollectibleAddFailed', [ newCollectibleAddedMessage, ])} } >
{t('metaMaskConnectStatusParagraphOne')}
{t('metaMaskConnectStatusParagraphTwo')}
{t('metaMaskConnectStatusParagraphThree')}
); }; render() { const { t } = this.context; const { defaultHomeActiveTabName, onTabClick, forgottenPassword, history, connectedStatusPopoverHasBeenShown, isPopup, notificationsToShow, showWhatsNewPopup, hideWhatsNewPopup, seedPhraseBackedUp, showRecoveryPhraseReminder, } = this.props; if (forgottenPassword) { return ; } else if (this.state.closing || this.state.redirecting) { return null; } const showWhatsNew = notificationsToShow && showWhatsNewPopup; return (
{showWhatsNew ? : null} {!showWhatsNew && showRecoveryPhraseReminder ? ( ) : null} {isPopup && !connectedStatusPopoverHasBeenShown ? this.renderPopover() : null}
history.push(`${ASSET_ROUTE}/${asset}`) } /> {process.env.COLLECTIBLES_V1 ? ( { history.push(ADD_COLLECTIBLE_ROUTE); }} /> ) : null}
{isBeta() ? ( ) : ( t('needHelp', [ {t('needHelpLinkText')} , ]) )}
{this.renderNotifications()}
); } }