nifty-wallet/ui/app/components/transaction-list-item.js

129 lines
3.4 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-tx-history')
const addressSummary = require('../util').addressSummary
const explorerLink = require('../../lib/explorer-link')
2016-06-29 14:12:58 -07:00
const CopyButton = require('./copyButton')
const vreme = new (require('vreme'))
const TransactionIcon = require('./transaction-list-item-icon')
module.exports = TransactionListItem
inherits(TransactionListItem, Component)
2016-06-21 13:18:32 -07:00
function TransactionListItem () {
Component.call(this)
}
2016-06-21 13:18:32 -07:00
TransactionListItem.prototype.render = function () {
2016-05-26 14:50:01 -07:00
const { transaction, i, network } = this.props
var date = formatDate(transaction.time)
let isLinkable = false
2016-05-26 15:00:37 -07: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' : ''}`, {
key: `tx-${transaction.id + i}`,
onClick: (event) => {
if (isPending) {
this.props.showTx(transaction.id)
}
if (!transaction.hash || !isLinkable) return
var url = explorerLink(transaction.hash, parseInt(network))
chrome.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 13:56:04 -07: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 14:12:58 -07:00
isTx ? h(EtherBalance, {
value: txParams.value,
}) : h('.flex-column'),
])
)
}
2016-06-21 13:18:32 -07:00
function domainField (txParams) {
return h('div', {
style: {
2016-06-22 15:31:02 -07:00
fontSize: 'x-small',
color: '#ABA9AA',
overflow: 'hidden',
textOverflow: 'ellipsis',
width: '100%',
},
2016-06-21 13:18:32 -07:00
}, [
txParams.origin,
])
}
2016-06-21 13:18:32 -07:00
function recipientField (txParams, transaction, isTx, isMsg) {
let message
if (isMsg) {
message = 'Signature Requested'
} else if (txParams.to) {
2016-06-21 13:18:32 -07:00
message = addressSummary(txParams.to)
} else {
message = 'Contract Published'
}
return h('div', {
style: {
2016-06-22 15:31:02 -07:00
fontSize: 'x-small',
color: '#ABA9AA',
},
2016-06-21 13:18:32 -07:00
}, [
message,
failIfFailed(transaction),
])
}
2016-06-21 13:18:32 -07:00
function formatDate (date) {
return vreme.format(new Date(date), 'March 16 2014 14:30')
}
2016-06-21 13:18:32 -07:00
function failIfFailed (transaction) {
if (transaction.status === 'rejected') {
return h('span.error', ' (Rejected)')
}
if (transaction.status === 'failed') {
return h('span.error', ' (Failed)')
}
}