You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.0 KiB
93 lines
2.0 KiB
7 years ago
|
const Component = require('react').Component
|
||
|
const h = require('react-hyperscript')
|
||
|
const inherits = require('util').inherits
|
||
|
const Identicon = require('./identicon')
|
||
|
|
||
|
module.exports = TxListItem
|
||
|
|
||
|
inherits(TxListItem, Component)
|
||
|
function TxListItem () {
|
||
|
Component.call(this)
|
||
|
}
|
||
|
|
||
|
TxListItem.prototype.getAddressText = function (address) {
|
||
|
return address
|
||
|
? `${address.slice(0, 10)}...${address.slice(-4)}`
|
||
|
: 'Contract Published'
|
||
|
}
|
||
|
|
||
|
TxListItem.prototype.render = function () {
|
||
|
const {
|
||
|
transactionStatus,
|
||
|
onClick,
|
||
|
transActionId,
|
||
|
dateString,
|
||
|
address,
|
||
|
transactionAmount,
|
||
|
className
|
||
|
} = this.props
|
||
|
|
||
|
return h(`div${className || ''}`, {
|
||
|
key: transActionId,
|
||
|
onClick: () => onClick && onClick(transActionId),
|
||
|
}, [
|
||
|
h(`div.flex-column.tx-list-item-wrapper`, {}, [
|
||
|
|
||
|
h('div.tx-list-date-wrapper', {
|
||
|
style: {},
|
||
|
}, [
|
||
|
h('span.tx-list-date', {}, [
|
||
|
dateString,
|
||
|
]),
|
||
|
]),
|
||
|
|
||
|
h('div.flex-row.tx-list-content-wrapper', {
|
||
|
style: {},
|
||
|
}, [
|
||
|
|
||
|
h('div.tx-list-identicon-wrapper', {
|
||
|
style: {},
|
||
|
}, [
|
||
|
h(Identicon, {
|
||
|
address,
|
||
|
diameter: 28,
|
||
|
}),
|
||
|
]),
|
||
|
|
||
|
h('div.tx-list-account-and-status-wrapper', {}, [
|
||
|
h('div.tx-list-account-wrapper', {
|
||
|
style: {},
|
||
|
}, [
|
||
|
h('span.tx-list-account', {}, [
|
||
|
this.getAddressText(address),
|
||
|
]),
|
||
|
]),
|
||
|
|
||
|
h('div.tx-list-status-wrapper', {
|
||
|
style: {},
|
||
|
}, [
|
||
|
h('span.tx-list-status', {}, [
|
||
|
transactionStatus,
|
||
|
]),
|
||
|
]),
|
||
|
]),
|
||
|
|
||
|
h('div.flex-column.tx-list-details-wrapper', {
|
||
|
style: {},
|
||
|
}, [
|
||
|
|
||
|
h('span.tx-list-value', {}, [
|
||
|
transactionAmount,
|
||
|
]),
|
||
|
|
||
|
h('span.tx-list-fiat-value', {}, [
|
||
|
'+ $300 USD',
|
||
|
]),
|
||
|
|
||
|
]),
|
||
|
]),
|
||
|
]) // holding on icon from design
|
||
|
])
|
||
|
}
|
||
|
|