import React, { PureComponent } from 'react' import PropTypes from 'prop-types' import SenderToRecipient from '../sender-to-recipient' import { CARDS_VARIANT } from '../sender-to-recipient/sender-to-recipient.constants' import TransactionActivityLog from '../transaction-activity-log' import TransactionBreakdown from '../transaction-breakdown' import Button from '../button' import prefixForNetwork from '../../../lib/etherscan-prefix-for-network' export default class TransactionListItemDetails extends PureComponent { static contextTypes = { t: PropTypes.func, } static propTypes = { onRetry: PropTypes.func, showRetry: PropTypes.bool, transaction: PropTypes.object, } handleEtherscanClick = () => { const { hash, metamaskNetworkId } = this.props.transaction const prefix = prefixForNetwork(metamaskNetworkId) const etherscanUrl = `https://${prefix}etherscan.io/tx/${hash}` global.platform.openWindow({ url: etherscanUrl }) this.setState({ showTransactionDetails: true }) } handleRetry = event => { const { onRetry } = this.props event.stopPropagation() onRetry() } render () { const { t } = this.context const { transaction, showRetry } = this.props const { txParams: { to, from } = {} } = transaction return (
Details
{ showRetry && ( ) }
) } }