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/transaction-list.js

88 lines
2.3 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-19 02:48:50 +02:00
module.exports = TransactionList
inherits(TransactionList, Component)
2016-06-21 22:18:32 +02:00
function TransactionList () {
Component.call(this)
}
2016-06-21 22:18:32 +02:00
TransactionList.prototype.render = function () {
const { transactions, network, unapprovedMsgs, conversionRate } = this.props
2016-08-18 19:40:35 +02:00
var shapeShiftTxList
2016-08-23 02:21:54 +02:00
if (network === '1') {
2016-08-18 19:40:35 +02:00
shapeShiftTxList = this.props.shapeShiftTxList
}
const txsToRender = !shapeShiftTxList ? transactions.concat(unapprovedMsgs) : transactions.concat(unapprovedMsgs, shapeShiftTxList)
.sort((a, b) => b.time - a.time)
return (
h('section.transaction-list.full-flex-height', {
2017-07-25 02:04:13 +02:00
style: {
justifyContent: 'center',
2017-07-25 02:04:13 +02:00
},
}, [
2016-05-19 02:48:50 +02: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('.tx-list', {
style: {
overflowY: 'auto',
2017-07-25 02:04:13 +02:00
height: '100%',
padding: '0 20px',
textAlign: 'center',
},
}, [
txsToRender.length
? txsToRender.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,
conversionRate,
2016-06-21 22:18:32 +02:00
showTx: (txId) => {
this.props.viewPendingTx(txId)
},
})
})
: h('.flex-center.full-flex-height', {
2016-06-21 22:56:04 +02:00
style: {
flexDirection: 'column',
justifyContent: 'center',
2016-06-21 22:56:04 +02:00
},
}, [
h('p', {
2017-07-26 23:36:22 +02:00
style: {
marginTop: '50px',
},
}, 'No transaction history.'),
]),
]),
])
)
}
2016-12-16 19:04:57 +01:00