import React, { PureComponent } from 'react' import PropTypes from 'prop-types' import { exportAsFile } from '../../../helpers/utils/util' import ToggleButton from '../../../components/ui/toggle-button' import TextField from '../../../components/ui/text-field' import Button from '../../../components/ui/button' import { MOBILE_SYNC_ROUTE } from '../../../helpers/constants/routes' export default class AdvancedTab extends PureComponent { static contextTypes = { t: PropTypes.func, metricsEvent: PropTypes.func, } static propTypes = { setHexDataFeatureFlag: PropTypes.func, setRpcTarget: PropTypes.func, displayWarning: PropTypes.func, showResetAccountConfirmationModal: PropTypes.func, warning: PropTypes.string, history: PropTypes.object, sendHexData: PropTypes.bool, setAdvancedInlineGasFeatureFlag: PropTypes.func, advancedInlineGas: PropTypes.bool, showFiatInTestnets: PropTypes.bool, autoLogoutTimeLimit: PropTypes.number, setAutoLogoutTimeLimit: PropTypes.func.isRequired, setShowFiatConversionOnTestnetsPreference: PropTypes.func.isRequired, } state = { autoLogoutTimeLimit: this.props.autoLogoutTimeLimit } renderMobileSync () { const { t } = this.context const { history } = this.props // return (
{ t('syncWithMobile') }
) } renderStateLogs () { const { t } = this.context const { displayWarning } = this.props return (
{ t('stateLogs') } { t('stateLogsDescription') }
) } renderResetAccount () { const { t } = this.context const { showResetAccountConfirmationModal } = this.props return (
{ t('resetAccount') }
) } renderHexDataOptIn () { const { t } = this.context const { sendHexData, setHexDataFeatureFlag } = this.props return (
{ t('showHexData') }
{ t('showHexDataDescription') }
setHexDataFeatureFlag(!value)} offLabel={t('off')} onLabel={t('on')} />
) } renderAdvancedGasInputInline () { const { t } = this.context const { advancedInlineGas, setAdvancedInlineGasFeatureFlag } = this.props return (
{ t('showAdvancedGasInline') }
{ t('showAdvancedGasInlineDescription') }
setAdvancedInlineGasFeatureFlag(!value)} offLabel={t('off')} onLabel={t('on')} />
) } renderShowConversionInTestnets () { const { t } = this.context const { showFiatInTestnets, setShowFiatConversionOnTestnetsPreference, } = this.props return (
{ t('showFiatConversionInTestnets') }
{ t('showFiatConversionInTestnetsDescription') }
setShowFiatConversionOnTestnetsPreference(!value)} offLabel={t('off')} onLabel={t('on')} />
) } renderAutoLogoutTimeLimit () { const { t } = this.context const { autoLogoutTimeLimit, setAutoLogoutTimeLimit, } = this.props return (
{ t('autoLogoutTimeLimit') }
{ t('autoLogoutTimeLimitDescription') }
this.setState({ autoLogoutTimeLimit: Math.max(Number(e.target.value), 0) })} fullWidth margin="dense" min={0} />
) } renderContent () { const { warning } = this.props return (
{ warning &&
{ warning }
} { this.renderStateLogs() } { this.renderMobileSync() } { this.renderResetAccount() } { this.renderAdvancedGasInputInline() } { this.renderHexDataOptIn() } { this.renderShowConversionInTestnets() } { this.renderAutoLogoutTimeLimit() }
) } render () { return this.renderContent() } }