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/pending-msg-details.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

2016-06-25 02:22:27 +02:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
2018-03-16 01:29:45 +01:00
const t = require('../../i18n-helper').getMessage
2016-06-25 02:22:27 +02:00
const AccountPanel = require('./account-panel')
module.exports = PendingMsgDetails
inherits(PendingMsgDetails, Component)
function PendingMsgDetails () {
Component.call(this)
}
PendingMsgDetails.prototype.render = function () {
var state = this.props
var msgData = state.txData
var msgParams = msgData.msgParams || {}
var address = msgParams.from || state.selectedAddress
2016-06-25 02:22:27 +02:00
var identity = state.identities[address] || { address: address }
var account = state.accounts[address] || { address: address }
return (
h('div', {
key: msgData.id,
2016-08-25 00:43:00 +02:00
style: {
margin: '10px 20px',
},
2016-06-25 02:22:27 +02:00
}, [
// account that will sign
h(AccountPanel, {
showFullAddress: true,
identity: identity,
account: account,
imageifyIdenticons: state.imageifyIdenticons,
}),
// message data
h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [
2017-08-18 00:35:17 +02:00
h('.flex-column.flex-space-between', [
2018-03-16 01:29:45 +01:00
h('label.font-small.allcaps', t(this.props.localeMessages, 'message')),
2016-06-25 02:22:27 +02:00
h('span.font-small', msgParams.data),
]),
]),
])
)
}