2016-05-03 23:32:22 +02:00
|
|
|
const Component = require('react').Component
|
|
|
|
const h = require('react-hyperscript')
|
|
|
|
const inherits = require('util').inherits
|
|
|
|
|
|
|
|
const AccountPanel = require('./account-panel')
|
|
|
|
const readableDate = require('../util').readableDate
|
|
|
|
|
|
|
|
module.exports = PendingMsg
|
|
|
|
|
|
|
|
inherits(PendingMsg, Component)
|
2016-06-21 22:18:32 +02:00
|
|
|
function PendingMsg () {
|
2016-05-03 23:32:22 +02:00
|
|
|
Component.call(this)
|
|
|
|
}
|
|
|
|
|
2016-06-21 22:18:32 +02:00
|
|
|
PendingMsg.prototype.render = function () {
|
2016-05-03 23:32:22 +02:00
|
|
|
var state = this.props
|
|
|
|
var msgData = state.txData
|
|
|
|
|
|
|
|
var msgParams = msgData.msgParams || {}
|
2016-06-21 22:18:32 +02:00
|
|
|
var address = msgParams.from || state.selectedAddress
|
2016-05-03 23:32:22 +02:00
|
|
|
var identity = state.identities[address] || { address: address }
|
|
|
|
var account = state.accounts[address] || { address: address }
|
|
|
|
|
|
|
|
return (
|
|
|
|
h('.transaction', {
|
|
|
|
key: msgData.id,
|
|
|
|
}, [
|
|
|
|
|
2016-05-03 23:44:36 +02:00
|
|
|
h('h3', {
|
|
|
|
style: {
|
|
|
|
fontWeight: 'bold',
|
|
|
|
textAlign: 'center',
|
2016-06-21 22:18:32 +02:00
|
|
|
},
|
2016-05-03 23:44:36 +02:00
|
|
|
}, 'Sign Message'),
|
|
|
|
|
2016-05-03 23:32:22 +02:00
|
|
|
// account that will sign
|
|
|
|
h(AccountPanel, {
|
|
|
|
showFullAddress: true,
|
|
|
|
identity: identity,
|
|
|
|
account: account,
|
|
|
|
}),
|
|
|
|
|
|
|
|
// tx data
|
|
|
|
h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [
|
|
|
|
h('.flex-row.flex-space-between', [
|
|
|
|
h('label.font-small', 'DATE'),
|
|
|
|
h('span.font-small', readableDate(msgData.time)),
|
|
|
|
]),
|
|
|
|
|
|
|
|
h('.flex-row.flex-space-between', [
|
|
|
|
h('label.font-small', 'MESSAGE'),
|
|
|
|
h('span.font-small', msgParams.data),
|
|
|
|
]),
|
|
|
|
]),
|
|
|
|
|
|
|
|
// send + cancel
|
|
|
|
h('.flex-row.flex-space-around', [
|
|
|
|
h('button', {
|
|
|
|
onClick: state.cancelMessage,
|
|
|
|
}, 'Cancel'),
|
|
|
|
h('button', {
|
|
|
|
onClick: state.signMessage,
|
|
|
|
}, 'Sign'),
|
|
|
|
]),
|
|
|
|
])
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|