import React, { Component } from 'react' import PropTypes from 'prop-types' import classnames from 'classnames' import Loading from '../../../loading-screen' import GasPriceChart from '../../gas-price-chart' import debounce from 'lodash.debounce' 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, gasEstimatesLoading: PropTypes.bool, millisecondsRemaining: PropTypes.number, transactionFee: PropTypes.string, timeRemaining: PropTypes.string, gasChartProps: PropTypes.object, insufficientBalance: PropTypes.bool, customPriceIsSafe: PropTypes.bool, isSpeedUp: PropTypes.bool, } constructor (props) { super(props) this.debouncedGasLimitReset = debounce((dVal) => { if (dVal < 21000) { props.updateCustomGasLimit(21000) } }, 1000, { trailing: true }) this.onChangeGasLimit = (val) => { props.updateCustomGasLimit(val) this.debouncedGasLimitReset(val) } } gasInputError ({ labelKey, insufficientBalance, customPriceIsSafe, isSpeedUp, value }) { const { t } = this.context let errorText let errorType let isInError = true if (insufficientBalance) { errorText = t('insufficientBalance') errorType = 'error' } else if (labelKey === 'gasPrice' && isSpeedUp && value === 0) { errorText = t('zeroGasPriceOnSpeedUpError') errorType = 'error' } else if (labelKey === 'gasPrice' && !customPriceIsSafe) { errorText = t('gasPriceExtremelyLow') errorType = 'warning' } else { isInError = false } return { isInError, errorText, errorType, } } gasInput ({ labelKey, value, onChange, insufficientBalance, showGWEI, customPriceIsSafe, isSpeedUp }) { const { isInError, errorText, errorType, } = this.gasInputError({ labelKey, insufficientBalance, customPriceIsSafe, isSpeedUp, value }) return (