import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import Identicon from '../../ui/identicon'; import LedgerInstructionField from '../ledger-instruction-field'; import { sanitizeMessage } from '../../../helpers/utils/util'; import Header from './signature-request-header'; import Footer from './signature-request-footer'; import Message from './signature-request-message'; export default class SignatureRequest extends PureComponent { static propTypes = { /** * The display content of transaction data */ txData: PropTypes.object.isRequired, /** * The display content of sender account */ fromAccount: PropTypes.shape({ address: PropTypes.string.isRequired, balance: PropTypes.string, name: PropTypes.string, }).isRequired, /** * Check if the wallet is ledget wallet or not */ isLedgerWallet: PropTypes.bool, /** * Handler for cancel button */ cancel: PropTypes.func.isRequired, /** * Handler for sign button */ sign: PropTypes.func.isRequired, /** * Whether the hardware wallet requires a connection disables the sign button if true. */ hardwareWalletRequiresConnection: PropTypes.bool.isRequired, }; static contextTypes = { t: PropTypes.func, trackEvent: PropTypes.func, }; state = { hasScrolledMessage: false, }; setMessageRootRef(ref) { this.messageRootRef = ref; } formatWallet(wallet) { return `${wallet.slice(0, 8)}...${wallet.slice( wallet.length - 8, wallet.length, )}`; } render() { const { fromAccount, txData: { msgParams: { data, origin, version }, type, }, cancel, sign, isLedgerWallet, hardwareWalletRequiresConnection, } = this.props; const { address: fromAddress } = fromAccount; const { message, domain = {}, primaryType, types } = JSON.parse(data); const { trackEvent } = this.context; const onSign = (event) => { sign(event); trackEvent({ category: 'Transactions', event: 'Confirm', properties: { action: 'Sign Request', legacy_event: true, type, version, }, }); }; const onCancel = (event) => { cancel(event); trackEvent({ category: 'Transactions', event: 'Cancel', properties: { action: 'Sign Request', legacy_event: true, type, version, }, }); }; const messageIsScrollable = this.messageRootRef?.scrollHeight > this.messageRootRef?.clientHeight; return (
{this.context.t('sigRequest')}
{domain.name && domain.name[0]}
{domain.name}
{origin}
{this.formatWallet(fromAddress)}
{isLedgerWallet ? (
) : null} this.setState({ hasScrolledMessage: true })} setMessageRootRef={this.setMessageRootRef.bind(this)} messageRootRef={this.messageRootRef} messageIsScrollable={messageIsScrollable} />
); } }