import React, { Component } from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
import GasPriceChart from '../../gas-price-chart'
export default class AdvancedTabContent extends Component {
static contextTypes = {
t: PropTypes.func,
}
static propTypes = {
updateCustomGasPrice: PropTypes.func,
updateCustomGasLimit: PropTypes.func,
customGasPrice: PropTypes.number,
customGasLimit: PropTypes.number,
millisecondsRemaining: PropTypes.number,
totalFee: PropTypes.string,
timeRemaining: PropTypes.string,
gasChartProps: PropTypes.object,
insufficientBalance: PropTypes.bool,
}
gasInput (value, onChange, min, insufficientBalance, precision, showGWEI) {
return (
onChange(Number(event.target.value))}
/>
onChange(value + 1)} />
onChange(value - 1)} />
{insufficientBalance &&
Insufficient Balance
}
)
}
infoButton (onClick) {
return
}
renderDataSummary (totalFee, timeRemaining) {
return (
{ this.context.t('newTransactionFee') }
~{ this.context.t('transactionTime') }
{totalFee}
{timeRemaining}
)
}
renderGasEditRow (labelKey, ...gasInputArgs) {
return (
{ this.context.t(labelKey) }
{ this.infoButton(() => {}) }
{ this.gasInput(...gasInputArgs) }
)
}
renderGasEditRows (customGasPrice, updateCustomGasPrice, customGasLimit, updateCustomGasLimit, insufficientBalance) {
return (
{ this.renderGasEditRow('gasPrice', customGasPrice, updateCustomGasPrice, customGasPrice, insufficientBalance, 9, true) }
{ this.renderGasEditRow('gasLimit', customGasLimit, updateCustomGasLimit, customGasLimit, insufficientBalance, 0) }
)
}
render () {
const {
updateCustomGasPrice,
updateCustomGasLimit,
timeRemaining,
customGasPrice,
customGasLimit,
insufficientBalance,
totalFee,
gasChartProps,
} = this.props
return (
{ this.renderDataSummary(totalFee, timeRemaining) }
{ this.renderGasEditRows(
customGasPrice,
updateCustomGasPrice,
customGasLimit,
updateCustomGasLimit,
insufficientBalance
) }
Live Gas Price Predictions
Slower
Faster
)
}
}