1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/components/transaction-list-item.js

134 lines
3.6 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const EtherBalance = require('./eth-balance')
const addressSummary = require('../util').addressSummary
const explorerLink = require('../../lib/explorer-link')
2016-06-29 23:12:58 +02:00
const CopyButton = require('./copyButton')
const vreme = new (require('vreme'))
const extension = require('../../../app/scripts/lib/extension')
const TransactionIcon = require('./transaction-list-item-icon')
2016-08-18 19:40:35 +02:00
const ShiftListItem = require('./shift-list-item')
module.exports = TransactionListItem
inherits(TransactionListItem, Component)
2016-06-21 22:18:32 +02:00
function TransactionListItem () {
Component.call(this)
}
2016-06-21 22:18:32 +02:00
TransactionListItem.prototype.render = function () {
2016-05-26 23:50:01 +02:00
const { transaction, i, network } = this.props
2016-08-18 19:40:35 +02:00
if (transaction.key === 'shapeshift') {
if (network === '1') return h(ShiftListItem, transaction)
}
var date = formatDate(transaction.time)
let isLinkable = false
2016-05-27 00:00:37 +02:00
const numericNet = parseInt(network)
isLinkable = numericNet === 1 || numericNet === 2
var isMsg = ('msgParams' in transaction)
var isTx = ('txParams' in transaction)
var isPending = transaction.status === 'unconfirmed'
let txParams
if (isTx) {
txParams = transaction.txParams
} else if (isMsg) {
txParams = transaction.msgParams
}
const isClickable = ('hash' in transaction && isLinkable) || isPending
return (
h(`.transaction-list-item.flex-row.flex-space-between${isClickable ? '.pointer' : ''}`, {
onClick: (event) => {
if (isPending) {
this.props.showTx(transaction.id)
}
if (!transaction.hash || !isLinkable) return
var url = explorerLink(transaction.hash, parseInt(network))
extension.tabs.create({ url })
},
style: {
padding: '20px 0',
},
}, [
// large identicon
h('.identicon-wrapper.flex-column.flex-center.select-none', [
transaction.status === 'unconfirmed' ? h('i.fa.fa-ellipsis-h', {style: { fontSize: '27px' }})
2016-06-21 22:56:04 +02:00
: h(TransactionIcon, { txParams, transaction, isTx, isMsg }),
]),
h('.flex-column', {style: {width: '200px', overflow: 'hidden'}}, [
domainField(txParams),
h('div', date),
recipientField(txParams, transaction, isTx, isMsg),
]),
// Places a copy button if tx is successful, else places a placeholder empty div.
transaction.hash ? h(CopyButton, { value: transaction.hash }) : h('div', {style: { display: 'flex', alignItems: 'center', width: '26px' }}),
2016-06-29 23:12:58 +02:00
isTx ? h(EtherBalance, {
value: txParams.value,
width: '55px',
2016-07-09 02:27:13 +02:00
shorten: true,
style: {fontSize: '15px'},
}) : h('.flex-column'),
])
)
}
2016-06-21 22:18:32 +02:00
function domainField (txParams) {
return h('div', {
style: {
2016-06-23 00:31:02 +02:00
fontSize: 'x-small',
color: '#ABA9AA',
overflow: 'hidden',
textOverflow: 'ellipsis',
width: '100%',
},
2016-06-21 22:18:32 +02:00
}, [
txParams.origin,
])
}
2016-06-21 22:18:32 +02:00
function recipientField (txParams, transaction, isTx, isMsg) {
let message
if (isMsg) {
message = 'Signature Requested'
} else if (txParams.to) {
2016-06-21 22:18:32 +02:00
message = addressSummary(txParams.to)
} else {
message = 'Contract Published'
}
return h('div', {
style: {
2016-06-23 00:31:02 +02:00
fontSize: 'x-small',
color: '#ABA9AA',
},
2016-06-21 22:18:32 +02:00
}, [
message,
failIfFailed(transaction),
])
}
2016-06-21 22:18:32 +02:00
function formatDate (date) {
return vreme.format(new Date(date), 'March 16 2014 14:30')
}
2016-06-21 22:18:32 +02:00
function failIfFailed (transaction) {
if (transaction.status === 'rejected') {
return h('span.error', ' (Rejected)')
}
if (transaction.status === 'failed') {
return h('span.error', ' (Failed)')
}
}