aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-07-07 12:32:36 +0800
committerDan Finlay <dan@danfinlay.com>2016-07-07 12:32:36 +0800
commit7481f7c3df72f5616615fcd74537d1f091b1bc4b (patch)
treee347c008ac35c463a7b07f36d5cf994f87aef723 /ui
parent689bd58d815ae91970953a08ef2e94c0eeb1335b (diff)
downloadtangerine-wallet-browser-7481f7c3df72f5616615fcd74537d1f091b1bc4b.tar.gz
tangerine-wallet-browser-7481f7c3df72f5616615fcd74537d1f091b1bc4b.tar.zst
tangerine-wallet-browser-7481f7c3df72f5616615fcd74537d1f091b1bc4b.zip
Fleshed out pending tx view
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/mini-account-panel.js2
-rw-r--r--ui/app/components/pending-tx-details.js106
-rw-r--r--ui/app/components/pending-tx.js6
-rw-r--r--ui/app/util.js3
4 files changed, 86 insertions, 31 deletions
diff --git a/ui/app/components/mini-account-panel.js b/ui/app/components/mini-account-panel.js
index 745ff2077..e8d0debad 100644
--- a/ui/app/components/mini-account-panel.js
+++ b/ui/app/components/mini-account-panel.js
@@ -43,7 +43,7 @@ AccountPanel.prototype.render = function () {
return h('span.font-small', {
key: `mini-${attr}`,
style: {
- fontFamily: 'Montserrat UltraLight, Montserrat Light, Montserrat',
+ fontFamily: 'Montserrat Light, Montserrat, sans-serif',
},
}, attr)
}),
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js
index 0d972ea05..04e9cd2cd 100644
--- a/ui/app/components/pending-tx-details.js
+++ b/ui/app/components/pending-tx-details.js
@@ -7,6 +7,7 @@ const addressSummary = require('../util').addressSummary
const readableDate = require('../util').readableDate
const formatBalance = require('../util').formatBalance
const nameForAddress = require('../../lib/contract-namer')
+const BN = require('ethereumjs-util').BN
module.exports = PendingTxDetails
@@ -18,16 +19,18 @@ function PendingTxDetails () {
const PTXP = PendingTxDetails.prototype
PTXP.render = function () {
- var state = this.props
- var txData = state.txData
+ var props = this.props
+ var txData = props.txData
var txParams = txData.txParams || {}
- var address = txParams.from || state.selectedAddress
- var identity = state.identities[address] || { address: address }
- var account = state.accounts[address] || { address: address }
+ var address = txParams.from || props.selectedAddress
+ var identity = props.identities[address] || { address: address }
+ var account = props.accounts[address] || { address: address }
var isContractDeploy = !('to' in txParams)
+ var maxCost = (new BN(txParams.value, 16) + new BN(txParams.gas, 16)).toString(16)
+
return (
h('div', [
@@ -41,10 +44,10 @@ PTXP.render = function () {
attrs: [
identity.name,
addressSummary(address, 6, 4, false),
- formatBalance(identity.balance),
+ formatBalance(identity.balance).formatted,
],
imageSeed: address,
- imageifyIdenticons: state.imageifyIdenticons,
+ imageifyIdenticons: props.imageifyIdenticons,
picOrder: 'right',
}),
@@ -57,40 +60,70 @@ PTXP.render = function () {
}),
this.miniAccountPanelForRecipient(),
-
]),
- // tx data
- h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [
-
- h('.flex-row.flex-space-between', [
- h('label.font-small', 'TO ADDRESS'),
- h('span.font-small', addressSummary(txParams.to)),
+ h('style', `
+ .table-box {
+ margin: 7px 6px 0px 6px;
+ }
+ .table-box .row {
+ margin: 0px;
+ background: rgb(236,236,236);
+ display: flex;
+ justify-content: space-between;
+ font-family: Montserrat Light, sans-serif;
+ font-size: 13px;
+ padding: 5px 15px;
+ }
+ `),
+
+ h('.table-box', [
+
+ h('.row', [
+ h('.cell.label', 'Amount'),
+ h('.cell.value', formatBalance(txParams.value).formatted),
]),
- h('.flex-row.flex-space-between', [
- h('label.font-small', 'DATE'),
- h('span.font-small', readableDate(txData.time)),
+ h('.cell.row', [
+ h('.cell.label', 'Max Transaction Fee'),
+ h('.cell.value', formatBalance(txParams.gas).formatted),
]),
- h('.flex-row.flex-space-between', [
- h('label.font-small', 'AMOUNT'),
- h('span.font-small', formatBalance(txParams.value)),
+ h('.cell.row', {
+ style: {
+ fontFamily: 'Montserrat Regular',
+ background: 'rgb(216,216,216)',
+ },
+ }, [
+ h('.cell.label', 'Max Total'),
+ h('.cell.value', formatBalance(maxCost).formatted),
]),
- ]),
+
+ h('.cell.row', {
+ style: {
+ background: '#f7f7f7',
+ paddingBottom: '0px',
+ }
+ }, [
+ h('.cell.label'),
+ h('.cell.value', `Data included: ${txParams.data.length - 2} bytes`)
+ ])
+ ]), // End of Table
+
+ this.warnIfNeeded(),
])
)
}
PTXP.miniAccountPanelForRecipient = function() {
- var state = this.props
- var txData = state.txData
+ var props = this.props
+ var txData = props.txData
var txParams = txData.txParams || {}
- var address = txParams.from || state.selectedAddress
- var identity = state.identities[address] || { address: address }
- var account = state.accounts[address] || { address: address }
+ var address = txParams.from || props.selectedAddress
+ var identity = props.identities[address] || { address: address }
+ var account = props.accounts[address] || { address: address }
var isContractDeploy = !('to' in txParams)
@@ -102,7 +135,7 @@ PTXP.miniAccountPanelForRecipient = function() {
addressSummary(txParams.to, 6, 4, false),
],
imageSeed: address,
- imageifyIdenticons: state.imageifyIdenticons,
+ imageifyIdenticons: props.imageifyIdenticons,
picOrder: 'left',
})
} else {
@@ -110,9 +143,26 @@ PTXP.miniAccountPanelForRecipient = function() {
attrs: [
'New Contract'
],
- imageifyIdenticons: state.imageifyIdenticons,
+ imageifyIdenticons: props.imageifyIdenticons,
picOrder: 'left',
})
}
}
+// Should analyze if there is a DELEGATECALL opcode
+// in the recipient contract, and show a warning if so.
+PTXP.warnIfNeeded = function() {
+ return null
+
+ return h('span.error', {
+ style: {
+ fontFamily: 'Montserrat Light',
+ fontSize: '13px',
+ display: 'flex',
+ justifyContent: 'center',
+ }
+ }, [
+ h('i.fa.fa-lg.fa-info-circle', { style: { margin: '5px' } }),
+ h('span', ' Your identity may be used in other contracts!'),
+ ])
+}
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index 5d1fd4c16..01225f646 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -33,7 +33,11 @@ PendingTx.prototype.render = function () {
h(PendingTxDetails, state),
// send + cancel
- h('.flex-row.flex-space-around', [
+ h('.flex-row.flex-space-around', {
+ style: {
+ marginTop: '14px',
+ }
+ }, [
h('button', {
onClick: state.cancelTransaction,
}, 'Reject'),
diff --git a/ui/app/util.js b/ui/app/util.js
index 86bf03667..1e92f0ea2 100644
--- a/ui/app/util.js
+++ b/ui/app/util.js
@@ -104,7 +104,8 @@ function parseBalance (balance) {
return [beforeDecimal, afterDecimal]
}
-// Takes wei hex, returns "None" or "${formattedAmount} ETH"
+// Takes wei hex, returns an object with three properties.
+// Its "formatted" property is what we generally use to render values.
function formatBalance (balance, decimalsToKeep) {
var parsed = parseBalance(balance)
var beforeDecimal = parsed[0]