1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/components/tx-list-item.js

303 lines
8.0 KiB
JavaScript
Raw Normal View History

2017-08-30 12:33:00 +02:00
const Component = require('react').Component
const h = require('react-hyperscript')
2017-09-14 10:09:57 +02:00
const connect = require('react-redux').connect
2017-08-30 12:33:00 +02:00
const inherits = require('util').inherits
const classnames = require('classnames')
2017-09-14 10:09:57 +02:00
const abi = require('human-standard-token-abi')
const abiDecoder = require('abi-decoder')
abiDecoder.addABI(abi)
2017-08-30 12:33:00 +02:00
const Identicon = require('./identicon')
const contractMap = require('eth-contract-metadata')
2017-08-30 12:33:00 +02:00
const actions = require('../actions')
const { conversionUtil, multiplyCurrencies } = require('../conversion-util')
const { calcTokenAmount } = require('../token-util')
const { getCurrentCurrency } = require('../selectors')
const t = require('../../i18n')
module.exports = connect(mapStateToProps, mapDispatchToProps)(TxListItem)
2017-09-14 10:09:57 +02:00
function mapStateToProps (state) {
return {
tokens: state.metamask.tokens,
currentCurrency: getCurrentCurrency(state),
tokenExchangeRates: state.metamask.tokenExchangeRates,
selectedAddressTxList: state.metamask.selectedAddressTxList,
}
}
function mapDispatchToProps (dispatch) {
return {
2018-03-14 03:14:05 +01:00
setSelectedToken: tokenAddress => dispatch(actions.setSelectedToken(tokenAddress)),
retryTransaction: transactionId => dispatch(actions.retryTransaction(transactionId)),
2017-09-14 10:09:57 +02:00
}
}
2017-08-30 12:33:00 +02:00
inherits(TxListItem, Component)
function TxListItem () {
Component.call(this)
this.state = {
total: null,
fiatTotal: null,
2018-03-14 03:14:05 +01:00
isTokenTx: null,
}
}
TxListItem.prototype.componentDidMount = async function () {
const { txParams = {} } = this.props
const decodedData = txParams.data && abiDecoder.decodeMethod(txParams.data)
const { name: txDataName } = decodedData || {}
2018-03-14 03:14:05 +01:00
const isTokenTx = txDataName === 'transfer'
2018-03-14 03:14:05 +01:00
const { total, fiatTotal } = isTokenTx
? await this.getSendTokenTotal()
: this.getSendEtherTotal()
2018-03-14 03:26:45 +01:00
this.setState({ total, fiatTotal, isTokenTx })
2017-08-30 12:33:00 +02:00
}
2017-09-14 10:09:57 +02:00
TxListItem.prototype.getAddressText = function () {
const {
address,
txParams = {},
} = this.props
const decodedData = txParams.data && abiDecoder.decodeMethod(txParams.data)
const { name: txDataName, params = [] } = decodedData || {}
const { value } = params[0] || {}
switch (txDataName) {
case 'transfer':
return `${value.slice(0, 10)}...${value.slice(-4)}`
default:
return address
? `${address.slice(0, 10)}...${address.slice(-4)}`
2018-03-07 01:15:45 +01:00
: t('contractDeployment')
2017-09-14 10:09:57 +02:00
}
2017-08-30 12:33:00 +02:00
}
2017-09-14 10:09:57 +02:00
TxListItem.prototype.getSendEtherTotal = function () {
2017-08-30 12:33:00 +02:00
const {
transactionAmount,
conversionRate,
2017-09-14 10:09:57 +02:00
address,
currentCurrency,
2017-08-30 12:33:00 +02:00
} = this.props
2017-09-14 10:09:57 +02:00
if (!address) {
return {}
}
const totalInFiat = conversionUtil(transactionAmount, {
fromNumericBase: 'hex',
toNumericBase: 'dec',
fromCurrency: 'ETH',
toCurrency: currentCurrency,
fromDenomination: 'WEI',
numberOfDecimals: 2,
conversionRate,
})
const totalInETH = conversionUtil(transactionAmount, {
fromNumericBase: 'hex',
toNumericBase: 'dec',
fromCurrency: 'ETH',
toCurrency: 'ETH',
fromDenomination: 'WEI',
conversionRate,
numberOfDecimals: 6,
})
2017-09-14 10:09:57 +02:00
return {
total: `${totalInETH} ETH`,
fiatTotal: `${totalInFiat} ${currentCurrency.toUpperCase()}`,
2017-09-14 10:09:57 +02:00
}
}
TxListItem.prototype.getTokenInfo = async function () {
const { txParams = {}, tokenInfoGetter, tokens } = this.props
const toAddress = txParams.to
let decimals
let symbol
({ decimals, symbol } = tokens.filter(({ address }) => address === toAddress)[0] || {})
if (!decimals && !symbol) {
({ decimals, symbol } = contractMap[toAddress] || {})
}
if (!decimals && !symbol) {
({ decimals, symbol } = await tokenInfoGetter(toAddress))
}
return { decimals, symbol }
}
TxListItem.prototype.getSendTokenTotal = async function () {
2017-09-14 10:09:57 +02:00
const {
txParams = {},
conversionRate,
tokenExchangeRates,
currentCurrency,
2017-09-14 10:09:57 +02:00
} = this.props
const decodedData = txParams.data && abiDecoder.decodeMethod(txParams.data)
const { params = [] } = decodedData || {}
const { value } = params[1] || {}
const { decimals, symbol } = await this.getTokenInfo()
const total = calcTokenAmount(value, decimals)
2017-09-14 10:09:57 +02:00
2017-11-02 13:15:59 +01:00
const pair = symbol && `${symbol.toLowerCase()}_eth`
let tokenToFiatRate
let totalInFiat
if (tokenExchangeRates[pair]) {
tokenToFiatRate = multiplyCurrencies(
tokenExchangeRates[pair].rate,
conversionRate
)
totalInFiat = conversionUtil(total, {
fromNumericBase: 'dec',
toNumericBase: 'dec',
fromCurrency: symbol,
toCurrency: currentCurrency,
numberOfDecimals: 2,
conversionRate: tokenToFiatRate,
})
}
const showFiat = Boolean(totalInFiat) && currentCurrency.toUpperCase() !== symbol
2017-09-14 10:09:57 +02:00
return {
total: `${total} ${symbol}`,
fiatTotal: showFiat && `${totalInFiat} ${currentCurrency.toUpperCase()}`,
2017-09-14 10:09:57 +02:00
}
}
TxListItem.prototype.showRetryButton = function () {
const {
transactionSubmittedTime,
selectedAddressTxList,
transactionId,
txParams,
} = this.props
const currentNonce = txParams.nonce
const currentNonceTxs = selectedAddressTxList.filter(tx => tx.txParams.nonce === currentNonce)
2018-03-14 02:59:47 +01:00
const currentNonceSubmittedTxs = currentNonceTxs.filter(tx => tx.status === 'submitted')
2018-03-14 01:02:22 +01:00
const lastSubmittedTxWithCurrentNonce = currentNonceSubmittedTxs[currentNonceSubmittedTxs.length - 1]
const currentTxIsLatestWithNonce = lastSubmittedTxWithCurrentNonce
&& lastSubmittedTxWithCurrentNonce.id === transactionId
return currentTxIsLatestWithNonce && Date.now() - transactionSubmittedTime > 30000
}
2018-03-14 03:14:05 +01:00
TxListItem.prototype.setSelectedToken = function (tokenAddress) {
this.props.setSelectedToken(tokenAddress)
}
TxListItem.prototype.resubmit = function () {
const { transactionId } = this.props
this.props.retryTransaction(transactionId)
}
2017-09-14 10:09:57 +02:00
TxListItem.prototype.render = function () {
const {
transactionStatus,
transactionAmount,
2017-09-14 10:09:57 +02:00
onClick,
transactionId,
2017-09-14 10:09:57 +02:00
dateString,
address,
className,
2018-03-14 03:14:05 +01:00
txParams,
2017-09-14 10:09:57 +02:00
} = this.props
2018-03-14 03:14:05 +01:00
const { total, fiatTotal, isTokenTx } = this.state
const showFiatTotal = transactionAmount !== '0x0' && fiatTotal
2017-09-14 10:09:57 +02:00
2017-08-30 12:33:00 +02:00
return h(`div${className || ''}`, {
key: transactionId,
onClick: () => onClick && onClick(transactionId),
2017-08-30 12:33:00 +02:00
}, [
h(`div.flex-column.tx-list-item-wrapper`, {}, [
h('div.tx-list-date-wrapper', {
style: {},
}, [
h('span.tx-list-date', {}, [
dateString,
]),
]),
h('div.flex-row.tx-list-content-wrapper', {
style: {},
}, [
h('div.tx-list-identicon-wrapper', {
style: {},
}, [
h(Identicon, {
address,
diameter: 28,
}),
]),
h('div.tx-list-account-and-status-wrapper', {}, [
h('div.tx-list-account-wrapper', {
style: {},
}, [
h('span.tx-list-account', {}, [
this.getAddressText(address),
]),
]),
h('div.tx-list-status-wrapper', {
style: {},
}, [
h('span', {
className: classnames('tx-list-status', {
2017-09-14 10:09:57 +02:00
'tx-list-status--rejected': transactionStatus === 'rejected',
'tx-list-status--failed': transactionStatus === 'failed',
2018-03-14 00:41:50 +01:00
'tx-list-status--dropped': transactionStatus === 'dropped',
2017-09-14 10:09:57 +02:00
}),
},
2017-08-30 12:33:00 +02:00
transactionStatus,
),
2017-08-30 12:33:00 +02:00
]),
]),
h('div.flex-column.tx-list-details-wrapper', {
style: {},
}, [
h('span.tx-list-value', total),
2017-09-14 10:09:57 +02:00
showFiatTotal && h('span.tx-list-fiat-value', fiatTotal),
2017-08-30 12:33:00 +02:00
]),
]),
this.showRetryButton() && h('div.tx-list-item-retry-container', [
h('span.tx-list-item-retry-copy', 'Taking too long?'),
h('span.tx-list-item-retry-link', {
onClick: (event) => {
event.stopPropagation()
2018-03-14 03:14:05 +01:00
if (isTokenTx) {
this.setSelectedToken(txParams.to)
}
this.resubmit()
},
2018-03-13 06:41:45 +01:00
}, 'Increase the gas price on your transaction'),
]),
2017-11-02 13:15:59 +01:00
]), // holding on icon from design
2017-08-30 12:33:00 +02:00
])
}