diff options
author | Dan <danjm.com@gmail.com> | 2017-08-29 22:09:07 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-08-31 07:46:24 +0800 |
commit | 5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a (patch) | |
tree | 910fb1457e16523778eb3b83d954820ab3383948 /ui/app/send.js | |
parent | 1485ec7392a03a9b3a63262e0ecf0d90f0713251 (diff) | |
download | tangerine-wallet-browser-5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a.tar tangerine-wallet-browser-5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a.tar.gz tangerine-wallet-browser-5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a.tar.bz2 tangerine-wallet-browser-5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a.tar.lz tangerine-wallet-browser-5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a.tar.xz tangerine-wallet-browser-5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a.tar.zst tangerine-wallet-browser-5a7e4c4e76fd92b9f797fd2088b00ce6dc4fd47a.zip |
Move gas fee to a separate component.
Diffstat (limited to 'ui/app/send.js')
-rw-r--r-- | ui/app/send.js | 32 |
1 files changed, 6 insertions, 26 deletions
diff --git a/ui/app/send.js b/ui/app/send.js index b3a137adb..3f6cd72c9 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -4,11 +4,10 @@ const h = require('react-hyperscript') const connect = require('react-redux').connect const Identicon = require('./components/identicon') const hexToBn = require('../../app/scripts/lib/hex-to-bn') -const EthBalance = require('./components/eth-balance') const EnsInput = require('./components/ens-input') -const FiatValue = require('./components/fiat-value') const GasTooltip = require('./components/send/gas-tooltip') const CurrencyToggle = require('./components/send/currency-toggle') +const GasFeeDisplay = require('./components/send/gas-fee-display') const { getSelectedIdentity } = require('./selectors') const { @@ -24,7 +23,6 @@ const { stripHexPrefix, addHexPrefix, BN } = require('ethereumjs-util') const { addressSummary, bnMultiplyByFraction, - getTxFeeBn, isHex, numericBalance, } = require('./util') @@ -269,30 +267,12 @@ SendTransactionScreen.prototype.render = function () { // TODO: handle loading time when switching to USD h('div.large-input.send-screen-gas-input', {}, [ - currentCurrency === 'USD' - ? h(FiatValue, { - value: getTxFeeBn(gas, gasPrice, blockGasLimit), - conversionRate, + h(GasFeeDisplay, { currentCurrency, - style: { - color: '#5d5d5d', - fontSize: '16px', - fontFamily: 'DIN OT', - lineHeight: '22.4px' - } - }) - : h(EthBalance, { - value: getTxFeeBn(gas, gasPrice, blockGasLimit), - currentCurrency, - conversionRate, - showFiat: false, - hideTooltip: true, - styleOveride: { - color: '#5d5d5d', - fontSize: '16px', - fontFamily: 'DIN OT', - lineHeight: '22.4px' - } + conversionRate, + gas, + gasPrice, + blockGasLimit, }), h('div.send-screen-gas-input-customize', { onClick: this.toggleTooltip, |