mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
e067379f48
The beta build currently has a couple of UI elements (the horizontal logo and the app header) set to "dark mode", even though nothing else in our UI supports dark mode yet. These styles have been removed. We should make the entire UI support dark mode all at once at a later date. Also the horizontal logo used for beta was named incorrectly; the dark and non-dark logos were swapped. They have been switched back so that the logo that ends with `-dark` is for dark mode.
188 lines
6.7 KiB
JavaScript
188 lines
6.7 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import MetaFoxLogo from '../../../components/ui/metafox-logo';
|
|
import PageContainerFooter from '../../../components/ui/page-container/page-container-footer';
|
|
|
|
export default class MetaMetricsOptIn extends Component {
|
|
static propTypes = {
|
|
history: PropTypes.object,
|
|
setParticipateInMetaMetrics: PropTypes.func,
|
|
nextRoute: PropTypes.string,
|
|
firstTimeSelectionMetaMetricsName: PropTypes.string,
|
|
participateInMetaMetrics: PropTypes.bool,
|
|
};
|
|
|
|
static contextTypes = {
|
|
metricsEvent: PropTypes.func,
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
render() {
|
|
const { metricsEvent, t } = this.context;
|
|
const {
|
|
nextRoute,
|
|
history,
|
|
setParticipateInMetaMetrics,
|
|
firstTimeSelectionMetaMetricsName,
|
|
participateInMetaMetrics,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div className="metametrics-opt-in">
|
|
<div className="metametrics-opt-in__main">
|
|
<MetaFoxLogo />
|
|
<div className="metametrics-opt-in__body-graphic">
|
|
<img src="images/metrics-chart.svg" alt="" />
|
|
</div>
|
|
<div className="metametrics-opt-in__title">
|
|
{t('metametricsHelpImproveMetaMask')}
|
|
</div>
|
|
<div className="metametrics-opt-in__body">
|
|
<div className="metametrics-opt-in__description">
|
|
{t('metametricsOptInDescription')}
|
|
</div>
|
|
<div className="metametrics-opt-in__description">
|
|
{t('metametricsCommitmentsIntro')}
|
|
</div>
|
|
|
|
<div className="metametrics-opt-in__committments">
|
|
<div className="metametrics-opt-in__row">
|
|
<i className="fa fa-check" />
|
|
<div className="metametrics-opt-in__row-description">
|
|
{t('metametricsCommitmentsAllowOptOut')}
|
|
</div>
|
|
</div>
|
|
<div className="metametrics-opt-in__row">
|
|
<i className="fa fa-check" />
|
|
<div className="metametrics-opt-in__row-description">
|
|
{t('metametricsCommitmentsSendAnonymizedEvents')}
|
|
</div>
|
|
</div>
|
|
<div className="metametrics-opt-in__row metametrics-opt-in__break-row">
|
|
<i className="fa fa-times" />
|
|
<div className="metametrics-opt-in__row-description">
|
|
{t('metametricsCommitmentsNeverCollectKeysEtc', [
|
|
<span
|
|
className="metametrics-opt-in__bold"
|
|
key="neverCollectKeys"
|
|
>
|
|
{t('metametricsCommitmentsBoldNever')}
|
|
</span>,
|
|
])}
|
|
</div>
|
|
</div>
|
|
<div className="metametrics-opt-in__row">
|
|
<i className="fa fa-times" />
|
|
<div className="metametrics-opt-in__row-description">
|
|
{t('metametricsCommitmentsNeverCollectIP', [
|
|
<span
|
|
className="metametrics-opt-in__bold"
|
|
key="neverCollectIP"
|
|
>
|
|
{t('metametricsCommitmentsBoldNever')}
|
|
</span>,
|
|
])}
|
|
</div>
|
|
</div>
|
|
<div className="metametrics-opt-in__row">
|
|
<i className="fa fa-times" />
|
|
<div className="metametrics-opt-in__row-description">
|
|
{t('metametricsCommitmentsNeverSellDataForProfit', [
|
|
<span
|
|
className="metametrics-opt-in__bold"
|
|
key="neverSellData"
|
|
>
|
|
{t('metametricsCommitmentsBoldNever')}
|
|
</span>,
|
|
])}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="metametrics-opt-in__footer">
|
|
<PageContainerFooter
|
|
onCancel={async () => {
|
|
await setParticipateInMetaMetrics(false);
|
|
|
|
try {
|
|
if (
|
|
participateInMetaMetrics === null ||
|
|
participateInMetaMetrics === true
|
|
) {
|
|
await metricsEvent({
|
|
eventOpts: {
|
|
category: 'Onboarding',
|
|
action: 'Metrics Option',
|
|
name: 'Metrics Opt Out',
|
|
},
|
|
isOptIn: true,
|
|
flushImmediately: true,
|
|
});
|
|
}
|
|
} finally {
|
|
history.push(nextRoute);
|
|
}
|
|
}}
|
|
cancelText={t('noThanks')}
|
|
hideCancel={false}
|
|
onSubmit={async () => {
|
|
const [, metaMetricsId] = await setParticipateInMetaMetrics(
|
|
true,
|
|
);
|
|
try {
|
|
const metrics = [];
|
|
if (
|
|
participateInMetaMetrics === null ||
|
|
participateInMetaMetrics === false
|
|
) {
|
|
metrics.push(
|
|
metricsEvent({
|
|
eventOpts: {
|
|
category: 'Onboarding',
|
|
action: 'Metrics Option',
|
|
name: 'Metrics Opt In',
|
|
},
|
|
isOptIn: true,
|
|
flushImmediately: true,
|
|
}),
|
|
);
|
|
}
|
|
metrics.push(
|
|
metricsEvent({
|
|
eventOpts: {
|
|
category: 'Onboarding',
|
|
action: 'Import or Create',
|
|
name: firstTimeSelectionMetaMetricsName,
|
|
},
|
|
isOptIn: true,
|
|
metaMetricsId,
|
|
flushImmediately: true,
|
|
}),
|
|
);
|
|
await Promise.all(metrics);
|
|
} finally {
|
|
history.push(nextRoute);
|
|
}
|
|
}}
|
|
submitText={t('affirmAgree')}
|
|
disabled={false}
|
|
/>
|
|
<div className="metametrics-opt-in__bottom-text">
|
|
{t('gdprMessage', [
|
|
<a
|
|
key="metametrics-bottom-text-wrapper"
|
|
href="https://metamask.io/privacy.html"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('gdprMessagePrivacyPolicy')}
|
|
</a>,
|
|
])}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|