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

146 lines
4.0 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 14:12:58 -07: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 10:40:35 -07:00
const ShiftListItem = require('./shift-list-item')
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-08-22 17:21:54 -07:00
const { transaction, network } = this.props
2016-08-18 10:40:35 -07:00
if (transaction.key === 'shapeshift') {
if (network === '1') return h(ShiftListItem, transaction)
}
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' : ''}`, {
onClick: (event) => {
if (isPending) {
this.props.showTx(transaction.id)
}
event.stopPropagation()
if (!transaction.hash || !isLinkable) return
var url = explorerLink(transaction.hash, parseInt(network))
extension.tabs.create({ url })
},
style: {
padding: '20px 0',
},
}, [
h('.identicon-wrapper.flex-column.flex-center.select-none', [
2016-09-15 18:13:13 -07:00
transaction.status === 'unconfirmed' ? h('i.fa.fa-ellipsis-h', {
style: {
2016-09-15 18:25:05 -07:00
fontSize: '27px',
},
}) : h( '.pop-hover', {
onClick: (event) => {
event.stopPropagation()
2016-09-15 18:25:05 -07:00
if (!isTx || isPending) return
var url = `https://metamask.github.io/eth-tx-viz/?tx=${transaction.hash}`
extension.tabs.create({ url })
},
}, [
2016-09-15 18:13:13 -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,
width: '55px',
2016-07-08 17:27:13 -07:00
shorten: true,
showFiat: false,
style: {fontSize: '15px'},
}) : 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)')
}
}