import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import ToggleButton from '../../../components/ui/toggle-button'; import { getNumberOfSettingsInSection, handleSettingsRefs, } from '../../../helpers/utils/settings-search'; import { MetaMetricsEventCategory } from '../../../../shared/constants/metametrics'; import { Text, Box } from '../../../components/component-library'; import { TextColor, TextVariant, FontWeight, ///: BEGIN:ONLY_INCLUDE_IN(desktop) Display, FlexDirection, JustifyContent, ///: END:ONLY_INCLUDE_IN } from '../../../helpers/constants/design-system'; ///: BEGIN:ONLY_INCLUDE_IN(desktop) import DesktopEnableButton from '../../../components/app/desktop-enable-button'; ///: END:ONLY_INCLUDE_IN export default class ExperimentalTab extends PureComponent { static contextTypes = { t: PropTypes.func, trackEvent: PropTypes.func, }; static propTypes = { transactionSecurityCheckEnabled: PropTypes.bool, setTransactionSecurityCheckEnabled: PropTypes.func, ///: BEGIN:ONLY_INCLUDE_IN(blockaid) securityAlertsEnabled: PropTypes.bool, setSecurityAlertsEnabled: PropTypes.func, ///: END:ONLY_INCLUDE_IN }; settingsRefs = Array( getNumberOfSettingsInSection( this.context.t, this.context.t('experimental'), ), ) .fill(undefined) .map(() => { return React.createRef(); }); componentDidUpdate() { const { t } = this.context; handleSettingsRefs(t, t('experimental'), this.settingsRefs); } componentDidMount() { const { t } = this.context; handleSettingsRefs(t, t('experimental'), this.settingsRefs); } ///: BEGIN:ONLY_INCLUDE_IN(blockaid) renderSecurityAlertsToggle() { const { t } = this.context; const { securityAlertsEnabled, setSecurityAlertsEnabled } = this.props; return ( <> {t('security')}
{t('securityAlerts')}
{t('securityAlertsDescription1')} {t('securityAlertsDescription2')} {t('selectProvider')}
{t('blockaid')} { this.context.trackEvent({ category: MetaMetricsEventCategory.Settings, event: 'Enabled/Disable security_alerts_enabled', properties: { action: 'Enabled/Disable security_alerts_enabled', legacy_event: true, }, }); setSecurityAlertsEnabled(!value || false); }} />
{t('moreComingSoon')}
); } ///: END:ONLY_INCLUDE_IN renderTransactionSecurityCheckToggle() { const { t } = this.context; const { transactionSecurityCheckEnabled, setTransactionSecurityCheckEnabled, } = this.props; return ( <> {t('privacy')}
{t('transactionSecurityCheck')}
{t('transactionSecurityCheckDescription')} {t('selectProvider')}
{t('openSea')} { this.context.trackEvent({ category: MetaMetricsEventCategory.Settings, event: 'Enabled/Disable TransactionSecurityCheck', properties: { action: 'Enabled/Disable TransactionSecurityCheck', legacy_event: true, }, }); setTransactionSecurityCheckEnabled(!value); }} />
{t('thisServiceIsExperimental', [ {t('termsOfUse')} , ])} {t('moreComingSoon')}
); } ///: BEGIN:ONLY_INCLUDE_IN(desktop) renderDesktopEnableButton() { const { t } = this.context; return (
{t('desktopEnableButtonDescription')}
); } ///: END:ONLY_INCLUDE_IN render() { return (
{ ///: BEGIN:ONLY_INCLUDE_IN(blockaid) this.renderSecurityAlertsToggle() ///: END:ONLY_INCLUDE_IN } {this.renderTransactionSecurityCheckToggle()} { ///: BEGIN:ONLY_INCLUDE_IN(desktop) this.renderDesktopEnableButton() ///: END:ONLY_INCLUDE_IN }
); } }