mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
4fae461a67
* Allow entering amount, but disable validation of amount, opening of gas customizer or clicking of next, when gas loading in send. * Fix variable name.
45 lines
946 B
JavaScript
45 lines
946 B
JavaScript
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
const CurrencyDisplay = require('./currency-display')
|
|
|
|
module.exports = GasFeeDisplay
|
|
|
|
inherits(GasFeeDisplay, Component)
|
|
function GasFeeDisplay () {
|
|
Component.call(this)
|
|
}
|
|
|
|
GasFeeDisplay.prototype.render = function () {
|
|
const {
|
|
conversionRate,
|
|
gasTotal,
|
|
onClick,
|
|
primaryCurrency = 'ETH',
|
|
convertedCurrency,
|
|
} = this.props
|
|
|
|
return h('div.send-v2__gas-fee-display', [
|
|
|
|
gasTotal
|
|
? h(CurrencyDisplay, {
|
|
primaryCurrency,
|
|
convertedCurrency,
|
|
value: gasTotal,
|
|
conversionRate,
|
|
convertedPrefix: '$',
|
|
readOnly: true,
|
|
})
|
|
: h('div.currency-display', 'Loading...'),
|
|
|
|
h('button.send-v2__sliders-icon-container', {
|
|
onClick,
|
|
disabled: !gasTotal,
|
|
}, [
|
|
h('i.fa.fa-sliders.send-v2__sliders-icon'),
|
|
]),
|
|
|
|
])
|
|
}
|
|
|