import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { Switch, Route } from 'react-router-dom'; import { getEnvironmentType } from '../../../app/scripts/lib/util'; import { ENVIRONMENT_TYPE_NOTIFICATION } from '../../../shared/constants/app'; import { MILLISECOND } from '../../../shared/constants/time'; import { DEFAULT_ROUTE } from '../../helpers/constants/routes'; import PermissionPageContainer from '../../components/app/permission-page-container'; import ChooseAccount from './choose-account'; import PermissionsRedirect from './redirect'; ///: BEGIN:ONLY_INCLUDE_IN(flask) import SnapInstall from './flask/snap-install'; ///: END:ONLY_INCLUDE_IN const APPROVE_TIMEOUT = MILLISECOND * 1200; export default class PermissionConnect extends Component { static propTypes = { approvePermissionsRequest: PropTypes.func.isRequired, rejectPermissionsRequest: PropTypes.func.isRequired, getRequestAccountTabIds: PropTypes.func.isRequired, getCurrentWindowTab: PropTypes.func.isRequired, accounts: PropTypes.array.isRequired, currentAddress: PropTypes.string.isRequired, origin: PropTypes.string, showNewAccountModal: PropTypes.func.isRequired, newAccountNumber: PropTypes.number.isRequired, nativeCurrency: PropTypes.string, permissionsRequest: PropTypes.object, addressLastConnectedMap: PropTypes.object.isRequired, lastConnectedInfo: PropTypes.object.isRequired, permissionsRequestId: PropTypes.string, history: PropTypes.object.isRequired, connectPath: PropTypes.string.isRequired, confirmPermissionPath: PropTypes.string.isRequired, ///: BEGIN:ONLY_INCLUDE_IN(flask) snapInstallPath: PropTypes.string.isRequired, isSnap: PropTypes.bool.isRequired, ///: END:ONLY_INCLUDE_IN totalPages: PropTypes.string.isRequired, page: PropTypes.string.isRequired, targetSubjectMetadata: PropTypes.shape({ extensionId: PropTypes.string, iconUrl: PropTypes.string, name: PropTypes.string, origin: PropTypes.string.isRequired, subjectType: PropTypes.string, }), isRequestingAccounts: PropTypes.bool.isRequired, }; static defaultProps = { origin: '', nativeCurrency: '', permissionsRequest: undefined, permissionsRequestId: '', }; static contextTypes = { t: PropTypes.func, }; state = { redirecting: false, selectedAccountAddresses: new Set([this.props.currentAddress]), permissionsApproved: null, origin: this.props.origin, targetSubjectMetadata: this.props.targetSubjectMetadata || {}, }; beforeUnload = () => { const { permissionsRequestId, rejectPermissionsRequest } = this.props; const { permissionsApproved } = this.state; if (permissionsApproved === null && permissionsRequestId) { rejectPermissionsRequest(permissionsRequestId); } }; removeBeforeUnload = () => { const environmentType = getEnvironmentType(); if (environmentType === ENVIRONMENT_TYPE_NOTIFICATION) { window.removeEventListener('beforeunload', this.beforeUnload); } }; componentDidMount() { const { connectPath, confirmPermissionPath, ///: BEGIN:ONLY_INCLUDE_IN(flask) snapInstallPath, isSnap, ///: END:ONLY_INCLUDE_IN getCurrentWindowTab, getRequestAccountTabIds, permissionsRequest, history, isRequestingAccounts, } = this.props; getCurrentWindowTab(); getRequestAccountTabIds(); if (!permissionsRequest) { history.push(DEFAULT_ROUTE); return; } const environmentType = getEnvironmentType(); if (environmentType === ENVIRONMENT_TYPE_NOTIFICATION) { window.addEventListener('beforeunload', this.beforeUnload); } if (history.location.pathname === connectPath && !isRequestingAccounts) { ///: BEGIN:ONLY_INCLUDE_IN(flask) if (isSnap) { history.push(snapInstallPath); } else { ///: END:ONLY_INCLUDE_IN history.push(confirmPermissionPath); ///: BEGIN:ONLY_INCLUDE_IN(flask) } ///: END:ONLY_INCLUDE_IN } } static getDerivedStateFromProps(props, state) { const { permissionsRequest, targetSubjectMetadata } = props; const { targetSubjectMetadata: savedMetadata } = state; if ( permissionsRequest && savedMetadata.origin !== targetSubjectMetadata?.origin ) { return { targetSubjectMetadata }; } return null; } componentDidUpdate(prevProps) { const { permissionsRequest, lastConnectedInfo } = this.props; const { redirecting, origin } = this.state; if (!permissionsRequest && prevProps.permissionsRequest && !redirecting) { const accountsLastApprovedTime = lastConnectedInfo[origin]?.lastApproved || 0; const initialAccountsLastApprovedTime = prevProps.lastConnectedInfo[origin]?.lastApproved || 0; const approved = accountsLastApprovedTime > initialAccountsLastApprovedTime; this.redirect(approved); } } selectAccounts = (addresses) => { this.setState( { selectedAccountAddresses: addresses, }, () => this.props.history.push(this.props.confirmPermissionPath), ); }; redirect(approved) { const { history } = this.props; this.setState({ redirecting: true, permissionsApproved: approved, }); this.removeBeforeUnload(); if (approved) { setTimeout(() => history.push(DEFAULT_ROUTE), APPROVE_TIMEOUT); } else { history.push(DEFAULT_ROUTE); } } cancelPermissionsRequest = async (requestId) => { const { rejectPermissionsRequest } = this.props; if (requestId) { await rejectPermissionsRequest(requestId); this.redirect(false); } }; goBack() { const { history, connectPath } = this.props; history.push(connectPath); } renderTopBar() { const { redirecting } = this.state; const { page, isRequestingAccounts, totalPages } = this.props; const { t } = this.context; return redirecting ? null : (
{page === '2' && isRequestingAccounts ? (
this.goBack()} > {t('back')}
) : null} {isRequestingAccounts ? (
{t('xOfY', [page, totalPages])}
) : null}
); } render() { const { approvePermissionsRequest, accounts, showNewAccountModal, newAccountNumber, nativeCurrency, permissionsRequest, addressLastConnectedMap, permissionsRequestId, connectPath, confirmPermissionPath, ///: BEGIN:ONLY_INCLUDE_IN(flask) snapInstallPath, ///: END:ONLY_INCLUDE_IN } = this.props; const { selectedAccountAddresses, permissionsApproved, redirecting, targetSubjectMetadata, } = this.state; return (
{this.renderTopBar()} {redirecting && permissionsApproved ? ( ) : ( ( this.selectAccounts(addresses)} selectNewAccountViaModal={(handleAccountClick) => { showNewAccountModal({ onCreateNewAccount: (address) => handleAccountClick(address), newAccountNumber, }); }} addressLastConnectedMap={addressLastConnectedMap} cancelPermissionsRequest={(requestId) => this.cancelPermissionsRequest(requestId) } permissionsRequestId={permissionsRequestId} selectedAccountAddresses={selectedAccountAddresses} targetSubjectMetadata={targetSubjectMetadata} /> )} /> ( { approvePermissionsRequest(...args); this.redirect(true); }} rejectPermissionsRequest={(requestId) => this.cancelPermissionsRequest(requestId) } selectedIdentities={accounts.filter((account) => selectedAccountAddresses.has(account.address), )} targetSubjectMetadata={targetSubjectMetadata} /> )} /> { ///: BEGIN:ONLY_INCLUDE_IN(flask) } ( { approvePermissionsRequest(...args); this.redirect(true); }} rejectSnapInstall={(requestId) => this.cancelPermissionsRequest(requestId) } targetSubjectMetadata={targetSubjectMetadata} /> )} /> { ///: END:ONLY_INCLUDE_IN } )}
); } }