aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list-item/transaction-list-item.component.js
blob: 8c2a0d04ca54c8fa1e2764ad6a133cbc7b7ca4e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import Identicon from '../identicon'
import TransactionStatus from '../transaction-status'
import TransactionAction from '../transaction-action'
import { formatDate } from '../../util'
import prefixForNetwork from '../../../lib/etherscan-prefix-for-network'
import { CONFIRM_TRANSACTION_ROUTE } from '../../routes'
import { UNAPPROVED_STATUS } from '../../constants/transactions'
import { hexToDecimal } from '../../helpers/conversions.util'

export default class TransactionListItem extends PureComponent {
  static propTypes = {
    history: PropTypes.object,
    methodData: PropTypes.object,
    transaction: PropTypes.object,
    ethTransactionAmount: PropTypes.string,
    fiatDisplayValue: PropTypes.string,
  }

  handleClick = () => {
    const { transaction, history } = this.props
    const { id, status, hash, metamaskNetworkId } = transaction

    if (status === UNAPPROVED_STATUS) {
      history.push(`${CONFIRM_TRANSACTION_ROUTE}/${id}`)
    } else if (hash) {
      const prefix = prefixForNetwork(metamaskNetworkId)
      const etherscanUrl = `https://${prefix}etherscan.io/tx/${hash}`
      global.platform.openWindow({ url: etherscanUrl })
    }
  }

  render () {
    const {
      transaction,
      ethTransactionAmount,
      fiatDisplayValue,
    } = this.props
    const { txParams = {} } = transaction
    const nonce = hexToDecimal(txParams.nonce)

    return (
      <div
        className="transaction-list-item"
        onClick={this.handleClick}
      >
        <Identicon
          className="transaction-list-item__identicon"
          address={txParams.to}
          diameter={34}
        />
        <TransactionAction
          transaction={transaction}
          className="transaction-list-item__action"
        />
        <div className="transaction-list-item__nonce">
          { `#${nonce} - ${formatDate(transaction.time)}` }
        </div>
        <TransactionStatus
          className="transaction-list-item__status"
          status={transaction.status}
        />
        <div
          className="transaction-list-item__amount transaction-list-item__amount--primary"
          title={`-${fiatDisplayValue}`}
        >
          { `-${fiatDisplayValue}` }
        </div>
        <div
          className="transaction-list-item__amount transaction-list-item__amount--secondary"
          title={`-${ethTransactionAmount} ETH`}
        >
          { `-${ethTransactionAmount} ETH` }
        </div>
      </div>
    )
  }
}