import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import ToggleButton from '../../../components/ui/toggle-button'; export default class ExperimentalTab extends PureComponent { static contextTypes = { t: PropTypes.func, metricsEvent: PropTypes.func, }; static propTypes = { useTokenDetection: PropTypes.bool, setUseTokenDetection: PropTypes.func, }; renderTokenDetectionToggle() { const { t } = this.context; const { useTokenDetection, setUseTokenDetection } = this.props; return (
{t('useTokenDetection')}
{t('useTokenDetectionDescription')}
{ this.context.metricsEvent({ eventOpts: { category: 'Settings', action: 'Token Detection', name: 'Token Detection', }, }); setUseTokenDetection(!value); }} offLabel={t('off')} onLabel={t('on')} />
); } render() { return (
{this.renderTokenDetectionToggle()}
); } }