aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-msg.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-06-25 08:22:27 +0800
committerkumavis <aaron@kumavis.me>2016-06-25 08:22:27 +0800
commitd7d440b2c22eb29744dbd59d6a0d83c27e60c9bd (patch)
treeacb5391bc84adac60e3aa27e8b916808eceff469 /ui/app/components/pending-msg.js
parent86fdcca2ec810c7a002ec984f267920da0a85f9a (diff)
downloadtangerine-wallet-browser-d7d440b2c22eb29744dbd59d6a0d83c27e60c9bd.tar.gz
tangerine-wallet-browser-d7d440b2c22eb29744dbd59d6a0d83c27e60c9bd.tar.zst
tangerine-wallet-browser-d7d440b2c22eb29744dbd59d6a0d83c27e60c9bd.zip
svg notif now work for msg signatures
Diffstat (limited to 'ui/app/components/pending-msg.js')
-rw-r--r--ui/app/components/pending-msg.js32
1 files changed, 8 insertions, 24 deletions
diff --git a/ui/app/components/pending-msg.js b/ui/app/components/pending-msg.js
index 7f3914d56..a45b828b7 100644
--- a/ui/app/components/pending-msg.js
+++ b/ui/app/components/pending-msg.js
@@ -1,9 +1,7 @@
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
+const PendingTxDetails = require('./pending-msg-details')
module.exports = PendingMsg
@@ -22,10 +20,12 @@ PendingMsg.prototype.render = function () {
var account = state.accounts[address] || { address: address }
return (
- h('.transaction', {
+
+ h('div', {
key: msgData.id,
}, [
+ // header
h('h3', {
style: {
fontWeight: 'bold',
@@ -33,27 +33,10 @@ PendingMsg.prototype.render = function () {
},
}, 'Sign Message'),
- // 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),
- ]),
- ]),
+ // message details
+ h(PendingTxDetails, state),
- // send + cancel
+ // sign + cancel
h('.flex-row.flex-space-around', [
h('button', {
onClick: state.cancelMessage,
@@ -63,6 +46,7 @@ PendingMsg.prototype.render = function () {
}, 'Sign'),
]),
])
+
)
}