mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
Add pending messages to sign to tx list
This commit is contained in:
parent
d489b31923
commit
d31189b206
46
ui/app/components/transaction-list-item-icon.js
Normal file
46
ui/app/components/transaction-list-item-icon.js
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
const Component = require('react').Component
|
||||||
|
const h = require('react-hyperscript')
|
||||||
|
const inherits = require('util').inherits
|
||||||
|
|
||||||
|
const Identicon = require('./identicon')
|
||||||
|
|
||||||
|
module.exports = TransactionIcon
|
||||||
|
|
||||||
|
|
||||||
|
inherits(TransactionIcon, Component)
|
||||||
|
function TransactionIcon() {
|
||||||
|
Component.call(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
TransactionIcon.prototype.render = function() {
|
||||||
|
const { transaction, txParams, isTx, isMsg } = this.props
|
||||||
|
|
||||||
|
if (transaction.status === 'rejected') {
|
||||||
|
return h('i.fa.fa-exclamation-triangle.fa-lg.error', {
|
||||||
|
style: {
|
||||||
|
width: '24px',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isMsg) {
|
||||||
|
return h('i.fa.fa-certificate.fa-lg', {
|
||||||
|
style: {
|
||||||
|
width: '24px',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (txParams.to) {
|
||||||
|
return h(Identicon, {
|
||||||
|
diameter: 24,
|
||||||
|
address: txParams.to || transaction.hash,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
return h('i.fa.fa-file-text-o.fa-lg', {
|
||||||
|
style: {
|
||||||
|
width: '24px',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@ -2,13 +2,14 @@ const Component = require('react').Component
|
|||||||
const h = require('react-hyperscript')
|
const h = require('react-hyperscript')
|
||||||
const inherits = require('util').inherits
|
const inherits = require('util').inherits
|
||||||
|
|
||||||
const Identicon = require('./identicon')
|
|
||||||
const EtherBalance = require('./eth-balance')
|
const EtherBalance = require('./eth-balance')
|
||||||
const addressSummary = require('../util').addressSummary
|
const addressSummary = require('../util').addressSummary
|
||||||
const explorerLink = require('../../lib/explorer-link')
|
const explorerLink = require('../../lib/explorer-link')
|
||||||
const formatBalance = require('../util').formatBalance
|
const formatBalance = require('../util').formatBalance
|
||||||
const vreme = new (require('vreme'))
|
const vreme = new (require('vreme'))
|
||||||
|
|
||||||
|
const TransactionIcon = require('./transaction-list-item-icon')
|
||||||
|
|
||||||
module.exports = TransactionListItem
|
module.exports = TransactionListItem
|
||||||
|
|
||||||
|
|
||||||
@ -25,7 +26,12 @@ TransactionListItem.prototype.render = function() {
|
|||||||
var isMsg = ('msgParams' in transaction)
|
var isMsg = ('msgParams' in transaction)
|
||||||
var isTx = ('txParams' in transaction)
|
var isTx = ('txParams' in transaction)
|
||||||
|
|
||||||
var txParams = transaction.txParams
|
let txParams
|
||||||
|
if (isTx) {
|
||||||
|
txParams = transaction.txParams
|
||||||
|
} else if (isMsg) {
|
||||||
|
txParams = transaction.msgParams
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
h(`.transaction-list-item.flex-row.flex-space-between${transaction.hash ? '.pointer' : ''}`, {
|
h(`.transaction-list-item.flex-row.flex-space-between${transaction.hash ? '.pointer' : ''}`, {
|
||||||
@ -42,49 +48,55 @@ TransactionListItem.prototype.render = function() {
|
|||||||
|
|
||||||
// large identicon
|
// large identicon
|
||||||
h('.identicon-wrapper.flex-column.flex-center.select-none', [
|
h('.identicon-wrapper.flex-column.flex-center.select-none', [
|
||||||
identicon(txParams, transaction),
|
transaction.status === 'unconfirmed' ? h('.red-dot', ' ') :
|
||||||
|
h(TransactionIcon, { txParams, transaction, isTx, isMsg }),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
h('.flex-column', [
|
h('.flex-column', [
|
||||||
|
domainField(txParams),
|
||||||
h('div', date),
|
h('div', date),
|
||||||
|
recipientField(txParams, transaction, isTx, isMsg),
|
||||||
recipientField(txParams, transaction),
|
|
||||||
|
|
||||||
]),
|
]),
|
||||||
|
|
||||||
h(EtherBalance, {
|
isTx ? h(EtherBalance, {
|
||||||
value: txParams.value,
|
value: txParams.value,
|
||||||
}),
|
}) : h('.flex-column'),
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function domainField(txParams) {
|
||||||
|
return h('div', {
|
||||||
|
style: {
|
||||||
|
fontSize: 'small',
|
||||||
|
color: '#ABA9AA',
|
||||||
|
},
|
||||||
|
},[
|
||||||
|
txParams.origin,
|
||||||
|
])
|
||||||
|
}
|
||||||
|
|
||||||
function recipientField(txParams, transaction) {
|
function recipientField(txParams, transaction, isTx, isMsg) {
|
||||||
if (txParams.to) {
|
let message
|
||||||
return h('div', {
|
|
||||||
style: {
|
|
||||||
fontSize: 'small',
|
|
||||||
color: '#ABA9AA',
|
|
||||||
},
|
|
||||||
}, [
|
|
||||||
addressSummary(txParams.to),
|
|
||||||
failIfFailed(transaction),
|
|
||||||
])
|
|
||||||
|
|
||||||
|
if (isMsg) {
|
||||||
|
message = 'Signature Requested'
|
||||||
|
} else if (txParams.to) {
|
||||||
|
message = addressSummary(txParams.to)
|
||||||
} else {
|
} else {
|
||||||
|
message = 'Contract Published'
|
||||||
return h('div', {
|
|
||||||
style: {
|
|
||||||
fontSize: 'small',
|
|
||||||
color: '#ABA9AA',
|
|
||||||
},
|
|
||||||
},[
|
|
||||||
'Contract Published',
|
|
||||||
failIfFailed(transaction),
|
|
||||||
])
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return h('div', {
|
||||||
|
style: {
|
||||||
|
fontSize: 'small',
|
||||||
|
color: '#ABA9AA',
|
||||||
|
},
|
||||||
|
},[
|
||||||
|
message,
|
||||||
|
failIfFailed(transaction),
|
||||||
|
])
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TransactionListItem.prototype.renderMessage = function() {
|
TransactionListItem.prototype.renderMessage = function() {
|
||||||
@ -96,31 +108,11 @@ function formatDate(date){
|
|||||||
return vreme.format(new Date(date), 'March 16 2014 14:30')
|
return vreme.format(new Date(date), 'March 16 2014 14:30')
|
||||||
}
|
}
|
||||||
|
|
||||||
function identicon(txParams, transaction) {
|
|
||||||
if (transaction.status === 'rejected') {
|
|
||||||
return h('i.fa.fa-exclamation-triangle.fa-lg.error', {
|
|
||||||
style: {
|
|
||||||
width: '24px',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
if (txParams.to) {
|
|
||||||
return h(Identicon, {
|
|
||||||
diameter: 24,
|
|
||||||
address: txParams.to || transaction.hash,
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
return h('i.fa.fa-file-text-o.fa-lg', {
|
|
||||||
style: {
|
|
||||||
width: '24px',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function failIfFailed(transaction) {
|
function failIfFailed(transaction) {
|
||||||
if (transaction.status === 'rejected') {
|
if (transaction.status === 'rejected') {
|
||||||
|
return h('span.error', ' (Rejected)')
|
||||||
|
}
|
||||||
|
if (transaction.status === 'failed') {
|
||||||
return h('span.error', ' (Failed)')
|
return h('span.error', ' (Failed)')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,9 @@ function TransactionList() {
|
|||||||
|
|
||||||
TransactionList.prototype.render = function() {
|
TransactionList.prototype.render = function() {
|
||||||
const { txsToRender, network, unconfTxs, unconfMsgs } = this.props
|
const { txsToRender, network, unconfTxs, unconfMsgs } = this.props
|
||||||
const transactions = txsToRender
|
const transactions = txsToRender.concat(unconfMsgs)
|
||||||
|
.sort((a, b) => b.time - a.time)
|
||||||
|
console.dir(transactions)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
|
@ -167,6 +167,20 @@ hr.horizontal-line {
|
|||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.red-dot {
|
||||||
|
position: inherit;
|
||||||
|
background: red;
|
||||||
|
color: white;
|
||||||
|
border-radius: 10px;
|
||||||
|
height: 12px;
|
||||||
|
min-width: 12px;
|
||||||
|
margin-left: 6px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
.pending-dot {
|
.pending-dot {
|
||||||
background: red;
|
background: red;
|
||||||
left: 57px;
|
left: 57px;
|
||||||
@ -180,3 +194,8 @@ hr.horizontal-line {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ether-balance {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user