From eb1b9d027fad9cf63bf5fea75b4e40b17d0cd7ee Mon Sep 17 00:00:00 2001 From: kumavis Date: Fri, 24 Jun 2016 12:48:52 -0700 Subject: breakout pending-tx-details --- ui/app/components/account-panel.js | 2 +- ui/app/components/pending-tx-details.js | 65 +++++++++++++++++++++++++++++++++ ui/app/components/pending-tx.js | 34 +++-------------- ui/app/conf-tx.js | 4 +- 4 files changed, 74 insertions(+), 31 deletions(-) create mode 100644 ui/app/components/pending-tx-details.js (limited to 'ui/app') diff --git a/ui/app/components/account-panel.js b/ui/app/components/account-panel.js index b98a8cb45..c69557d62 100644 --- a/ui/app/components/account-panel.js +++ b/ui/app/components/account-panel.js @@ -46,7 +46,7 @@ AccountPanel.prototype.render = function () { h('.identicon-wrapper.flex-column.select-none', [ h(Identicon, { address: panelState.identiconKey, - imageify: !state.inlineIdenticons, + imageify: state.imageifyIdenticons, }), h('span.font-small', panelState.identiconLabel), ]), diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js new file mode 100644 index 000000000..2ba613f20 --- /dev/null +++ b/ui/app/components/pending-tx-details.js @@ -0,0 +1,65 @@ +const Component = require('react').Component +const h = require('react-hyperscript') +const inherits = require('util').inherits + +const AccountPanel = require('./account-panel') +const addressSummary = require('../util').addressSummary +const readableDate = require('../util').readableDate +const formatBalance = require('../util').formatBalance + +module.exports = PendingTxDetails + +inherits(PendingTxDetails, Component) +function PendingTxDetails () { + Component.call(this) +} + +PendingTxDetails.prototype.render = function () { + var state = this.props + return this.renderGeneric(h, state) +} + +PendingTxDetails.prototype.renderGeneric = function (h, state) { + var txData = state.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 } + + return ( + + h('div', [ + + // account that will sign + h(AccountPanel, { + showFullAddress: true, + identity: identity, + account: account, + imageifyIdenticons: state.imageifyIdenticons, + }), + + // 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('.flex-row.flex-space-between', [ + h('label.font-small', 'DATE'), + h('span.font-small', readableDate(txData.time)), + ]), + + h('.flex-row.flex-space-between', [ + h('label.font-small', 'AMOUNT'), + h('span.font-small', formatBalance(txParams.value)), + ]), + ]), + + ]) + + ) + +} diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index 484046827..f889877c9 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -3,6 +3,7 @@ const h = require('react-hyperscript') const inherits = require('util').inherits const AccountPanel = require('./account-panel') +const PendingTxDetails = require('./pending-tx-details') const addressSummary = require('../util').addressSummary const readableDate = require('../util').readableDate const formatBalance = require('../util').formatBalance @@ -29,10 +30,11 @@ PendingTx.prototype.renderGeneric = function (h, state) { return ( - h('.transaction', { + h('div', { key: txData.id, }, [ + // header h('h3', { style: { fontWeight: 'bold', @@ -40,35 +42,11 @@ PendingTx.prototype.renderGeneric = function (h, state) { }, }, 'Submit Transaction'), - // account that will sign - h(AccountPanel, { - showFullAddress: true, - identity: identity, - account: account, - inlineIdenticons: state.inlineIdenticons, - }), - - // 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('.flex-row.flex-space-between', [ - h('label.font-small', 'DATE'), - h('span.font-small', readableDate(txData.time)), - ]), - - h('.flex-row.flex-space-between', [ - h('label.font-small', 'AMOUNT'), - h('span.font-small', formatBalance(txParams.value)), - ]), - ]), + // tx info + h(PendingTxDetails, state), // send + cancel - state.nonInteractive ? null : actionButtons(state), + actionButtons(state), ]) diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js index 5c80939b9..8455826b8 100644 --- a/ui/app/conf-tx.js +++ b/ui/app/conf-tx.js @@ -6,7 +6,7 @@ const connect = require('react-redux').connect const actions = require('./actions') const txHelper = require('../lib/tx-helper') -const ConfirmTx = require('./components/pending-tx') +const PendingTx = require('./components/pending-tx') const PendingMsg = require('./components/pending-msg') module.exports = connect(mapStateToProps)(ConfirmTxScreen) @@ -101,7 +101,7 @@ ConfirmTxScreen.prototype.render = function () { function currentTxView (opts) { if ('txParams' in opts.txData) { // This is a pending transaction - return h(ConfirmTx, opts) + return h(PendingTx, opts) } else if ('msgParams' in opts.txData) { // This is a pending message to sign return h(PendingMsg, opts) -- cgit