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

89 lines
2.2 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const TransactionListItem = require('./transaction-list-item')
2016-05-18 17:48:50 -07:00
module.exports = TransactionList
inherits(TransactionList, Component)
2016-06-21 13:18:32 -07:00
function TransactionList () {
Component.call(this)
}
2016-06-21 13:18:32 -07:00
TransactionList.prototype.render = function () {
2016-08-22 17:37:16 -07:00
const { txsToRender, network, unconfMsgs } = this.props
2016-08-18 10:40:35 -07:00
var shapeShiftTxList
2016-08-22 17:21:54 -07:00
if (network === '1') {
2016-08-18 10:40:35 -07:00
shapeShiftTxList = this.props.shapeShiftTxList
}
const transactions = !shapeShiftTxList ? txsToRender.concat(unconfMsgs) : txsToRender.concat(unconfMsgs, shapeShiftTxList)
.sort((a, b) => b.time - a.time)
return (
h('section.transaction-list', [
2016-05-18 17:48:50 -07:00
h('style', `
.transaction-list .transaction-list-item:not(:last-of-type) {
border-bottom: 1px solid #D4D4D4;
}
.transaction-list .transaction-list-item .ether-balance-label {
display: block !important;
font-size: small;
}
`),
h('h3.flex-center.text-transform-uppercase', {
style: {
background: '#EBEBEB',
2016-05-13 17:02:33 -07:00
color: '#AEAEAE',
2016-06-30 12:43:28 -07:00
paddingTop: '4px',
paddingBottom: '4px',
},
}, [
'History',
]),
h('.tx-list', {
style: {
overflowY: 'auto',
height: '300px',
padding: '0 20px',
textAlign: 'center',
},
}, [
2016-06-21 13:56:04 -07:00
transactions.length
? transactions.map((transaction, i) => {
let key
switch (transaction.key) {
case 'shapeshift':
const { depositAddress, time } = transaction
key = `shift-tx-${depositAddress}-${time}-${i}`
break
default:
key = `tx-${transaction.id}-${i}`
}
return h(TransactionListItem, {
transaction, i, network, key,
2016-06-21 13:18:32 -07:00
showTx: (txId) => {
this.props.viewPendingTx(txId)
},
})
})
: h('.flex-center', {
2016-06-21 13:56:04 -07:00
style: {
flexDirection: 'column',
2016-06-21 13:56:04 -07:00
height: '100%',
},
}, [
'No transaction history.',
]),
]),
])
)
}