nifty-wallet/ui/app/components/pending-msg.js

74 lines
1.7 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
const inherits = require('util').inherits
2016-06-24 17:22:27 -07:00
const PendingTxDetails = require('./pending-msg-details')
const connect = require('react-redux').connect
PendingMsg.contextTypes = {
t: PropTypes.func,
}
module.exports = connect()(PendingMsg)
inherits(PendingMsg, Component)
2016-06-21 13:18:32 -07:00
function PendingMsg () {
Component.call(this)
}
2016-06-21 13:18:32 -07:00
PendingMsg.prototype.render = function () {
var state = this.props
var msgData = state.txData
return (
2016-06-24 17:22:27 -07:00
h('div', {
key: msgData.id,
2017-08-17 15:35:17 -07:00
style: {
maxWidth: '350px',
},
}, [
2016-06-24 17:22:27 -07:00
// header
2016-05-03 14:44:36 -07:00
h('h3', {
style: {
fontWeight: 'bold',
textAlign: 'center',
2016-06-21 13:18:32 -07:00
},
}, this.context.t('signMessage')),
2016-05-03 14:44:36 -07:00
2017-02-09 17:31:44 -08:00
h('.error', {
style: {
margin: '10px',
},
}, [
this.context.t('signNotice'),
h('a', {
href: 'https://medium.com/metamask/the-new-secure-way-to-sign-data-in-your-browser-6af9dd2a1527',
style: { color: 'rgb(247, 134, 28)' },
onClick: (event) => {
event.preventDefault()
const url = 'https://medium.com/metamask/the-new-secure-way-to-sign-data-in-your-browser-6af9dd2a1527'
global.platform.openWindow({ url })
},
}, this.context.t('readMore')),
]),
2017-02-09 17:31:44 -08:00
2016-06-24 17:22:27 -07:00
// message details
h(PendingTxDetails, state),
2016-06-24 17:22:27 -07:00
// sign + cancel
h('.flex-row.flex-space-around', [
h('button', {
onClick: state.cancelMessage,
}, this.context.t('cancel')),
h('button', {
onClick: state.signMessage,
}, this.context.t('sign')),
]),
])
2016-06-24 17:27:42 -07:00
)
}