diff options
author | Dan <danjm.com@gmail.com> | 2017-09-14 01:57:15 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-14 05:25:20 +0800 |
commit | ca46bd200b24456d692cf1ede47506be5fdcc76d (patch) | |
tree | d3e24c1d9641c825e3e60960ccfa4c36afade44f /ui/app/send.js | |
parent | a5ab91e572eec05450a760d4a65e3a28df67c0d1 (diff) | |
download | tangerine-wallet-browser-ca46bd200b24456d692cf1ede47506be5fdcc76d.tar tangerine-wallet-browser-ca46bd200b24456d692cf1ede47506be5fdcc76d.tar.gz tangerine-wallet-browser-ca46bd200b24456d692cf1ede47506be5fdcc76d.tar.bz2 tangerine-wallet-browser-ca46bd200b24456d692cf1ede47506be5fdcc76d.tar.lz tangerine-wallet-browser-ca46bd200b24456d692cf1ede47506be5fdcc76d.tar.xz tangerine-wallet-browser-ca46bd200b24456d692cf1ede47506be5fdcc76d.tar.zst tangerine-wallet-browser-ca46bd200b24456d692cf1ede47506be5fdcc76d.zip |
Stop setting 'currentCurrency' and use local state for active currency in send.js
Diffstat (limited to 'ui/app/send.js')
-rw-r--r-- | ui/app/send.js | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/ui/app/send.js b/ui/app/send.js index d223db96f..8969e5fa3 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -10,7 +10,6 @@ const GasFeeDisplay = require('./components/send/gas-fee-display') const { getSelectedIdentity } = require('./selectors') const { - setCurrentCurrency, showAccountsPage, backToAccountDetail, displayWarning, @@ -35,7 +34,6 @@ function mapStateToProps (state) { network, addressBook, conversionRate, - currentCurrency, currentBlockGasLimit: blockGasLimit, } = state.metamask const { warning } = state.appState @@ -49,7 +47,6 @@ function mapStateToProps (state) { network, addressBook, conversionRate, - currentCurrency, blockGasLimit, warning, selectedIdentity, @@ -77,6 +74,7 @@ function SendTransactionScreen () { txData: null, memo: '', }, + activeCurrency: 'USD', tooltipIsOpen: false, } @@ -84,7 +82,7 @@ function SendTransactionScreen () { this.closeTooltip = this.closeTooltip.bind(this) this.onSubmit = this.onSubmit.bind(this) this.recipientDidChange = this.recipientDidChange.bind(this) - this.setCurrentCurrency = this.setCurrentCurrency.bind(this) + this.setActiveCurrency = this.setActiveCurrency.bind(this) this.toggleTooltip = this.toggleTooltip.bind(this) } @@ -98,12 +96,11 @@ SendTransactionScreen.prototype.render = function () { identities, addressBook, conversionRate, - currentCurrency, } = props - const { blockGasLimit, newTx } = this.state + const { blockGasLimit, newTx, activeCurrency } = this.state const { gas, gasPrice } = newTx - + console.log(`activeCurrency`, activeCurrency); console.log({ selectedIdentity, identities }) console.log('SendTransactionScreen state:', this.state) @@ -238,8 +235,8 @@ SendTransactionScreen.prototype.render = function () { h('div.send-screen-amount-labels', {}, [ h('span', {}, ['Amount']), h(CurrencyToggle, { - currentCurrency, - onClick: (newCurrency) => this.setCurrentCurrency(newCurrency), + activeCurrency, + onClick: (newCurrency) => this.setActiveCurrency(newCurrency), }), // holding on icon from design ]), @@ -296,7 +293,7 @@ SendTransactionScreen.prototype.render = function () { // TODO: handle loading time when switching to USD h('div.large-input.send-screen-gas-input', {}, [ h(GasFeeDisplay, { - currentCurrency, + activeCurrency, conversionRate, gas, gasPrice, @@ -356,8 +353,8 @@ SendTransactionScreen.prototype.render = function () { // Buttons underneath card h('section.flex-column.flex-center', [ - h('button.btn-light', { - onClick: this.onSubmit, + h('div.btn-light.send-screen-send-button', { + onClick: (event) => this.onSubmit(event), style: { marginTop: '8px', width: '8em', @@ -603,8 +600,8 @@ SendTransactionScreen.prototype.closeTooltip = function () { this.setState({ tooltipIsOpen: false }) } -SendTransactionScreen.prototype.setCurrentCurrency = function (newCurrency) { - this.props.dispatch(setCurrentCurrency(newCurrency)) +SendTransactionScreen.prototype.setActiveCurrency = function (newCurrency) { + this.setState({ activeCurrency: newCurrency }) } SendTransactionScreen.prototype.navigateToAccounts = function (event) { @@ -624,7 +621,8 @@ SendTransactionScreen.prototype.recipientDidChange = function (recipient, nickna }) } -SendTransactionScreen.prototype.onSubmit = function () { +SendTransactionScreen.prototype.onSubmit = function (event) { + event.preventDefault() const state = this.state || {} // const recipient = state.recipient || document.querySelector('input[name="address"]').value.replace(/^[.\s]+|[.\s]+$/g, '') |