You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
175 lines
4.6 KiB
175 lines
4.6 KiB
import React, { useContext } from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import { useHistory } from 'react-router-dom';
|
|
import Typography from '../../../components/ui/typography/typography';
|
|
import {
|
|
TYPOGRAPHY,
|
|
FONT_WEIGHT,
|
|
TEXT_ALIGN,
|
|
COLORS,
|
|
} from '../../../helpers/constants/design-system';
|
|
import Button from '../../../components/ui/button';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { setParticipateInMetaMetrics } from '../../../store/actions';
|
|
import {
|
|
getFirstTimeFlowTypeRoute,
|
|
getFirstTimeFlowType,
|
|
getParticipateInMetaMetrics,
|
|
} from '../../../selectors';
|
|
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics.new';
|
|
|
|
const firstTimeFlowTypeNameMap = {
|
|
create: 'Selected Create New Wallet',
|
|
import: 'Selected Import Wallet',
|
|
};
|
|
|
|
export default function OnboardingMetametrics() {
|
|
const t = useI18nContext();
|
|
const dispatch = useDispatch();
|
|
const history = useHistory();
|
|
|
|
const nextRoute = useSelector(getFirstTimeFlowTypeRoute);
|
|
const firstTimeFlowType = useSelector(getFirstTimeFlowType);
|
|
|
|
const participateInMetaMetrics = useSelector(getParticipateInMetaMetrics);
|
|
const firstTimeSelectionMetaMetricsName =
|
|
firstTimeFlowTypeNameMap[firstTimeFlowType];
|
|
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
|
|
const onConfirm = async () => {
|
|
const [, metaMetricsId] = await dispatch(setParticipateInMetaMetrics(true));
|
|
|
|
try {
|
|
if (!participateInMetaMetrics) {
|
|
trackEvent(
|
|
{
|
|
category: 'Onboarding',
|
|
event: 'Metrics Opt In',
|
|
properties: {
|
|
action: 'Metrics Option',
|
|
legacy_event: true,
|
|
},
|
|
},
|
|
{
|
|
isOptIn: true,
|
|
flushImmediately: true,
|
|
},
|
|
);
|
|
}
|
|
trackEvent(
|
|
{
|
|
category: 'Onboarding',
|
|
event: firstTimeSelectionMetaMetricsName,
|
|
properties: {
|
|
action: 'Import or Create',
|
|
legacy_event: true,
|
|
},
|
|
},
|
|
{
|
|
isOptIn: true,
|
|
metaMetricsId,
|
|
flushImmediately: true,
|
|
},
|
|
);
|
|
} finally {
|
|
history.push(nextRoute);
|
|
}
|
|
};
|
|
|
|
const onCancel = async () => {
|
|
await dispatch(setParticipateInMetaMetrics(false));
|
|
|
|
try {
|
|
if (!participateInMetaMetrics) {
|
|
trackEvent(
|
|
{
|
|
category: 'Onboarding',
|
|
event: 'Metrics Opt Out',
|
|
properties: {
|
|
action: 'Metrics Option',
|
|
legacy_event: true,
|
|
},
|
|
},
|
|
{
|
|
isOptIn: true,
|
|
flushImmediately: true,
|
|
},
|
|
);
|
|
}
|
|
} finally {
|
|
history.push(nextRoute);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="onboarding-metametrics">
|
|
<Typography
|
|
variant={TYPOGRAPHY.H2}
|
|
align={TEXT_ALIGN.CENTER}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('metametricsTitle')}
|
|
</Typography>
|
|
<Typography align={TEXT_ALIGN.CENTER}>
|
|
{t('metametricsOptInDescription2')}
|
|
</Typography>
|
|
<ul>
|
|
<li>
|
|
<i className="fa fa-check" />
|
|
{t('metametricsCommitmentsAllowOptOut2')}
|
|
</li>
|
|
<li>
|
|
<i className="fa fa-check" />
|
|
{t('metametricsCommitmentsSendAnonymizedEvents')}
|
|
</li>
|
|
<li>
|
|
<i className="fa fa-times" />
|
|
{t('metametricsCommitmentsNeverCollect')}
|
|
</li>
|
|
<li>
|
|
<i className="fa fa-times" />
|
|
{t('metametricsCommitmentsNeverIP')}
|
|
</li>
|
|
<li>
|
|
<i className="fa fa-times" />
|
|
{t('metametricsCommitmentsNeverSell')}
|
|
</li>
|
|
</ul>
|
|
<Typography
|
|
color={COLORS.TEXT_ALTERNATIVE}
|
|
align={TEXT_ALIGN.CENTER}
|
|
variant={TYPOGRAPHY.H6}
|
|
className="onboarding-metametrics__terms"
|
|
>
|
|
{t('gdprMessage', [
|
|
<a
|
|
key="metametrics-bottom-text-wrapper"
|
|
href="https://metamask.io/privacy.html"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('gdprMessagePrivacyPolicy')}
|
|
</a>,
|
|
])}
|
|
</Typography>
|
|
<div className="onboarding-metametrics__buttons">
|
|
<Button
|
|
data-testid="metametrics-no-thanks"
|
|
type="secondary"
|
|
onClick={onCancel}
|
|
>
|
|
{t('noThanks')}
|
|
</Button>
|
|
<Button
|
|
data-testid="metametrics-i-agree"
|
|
type="primary"
|
|
onClick={onConfirm}
|
|
>
|
|
{t('affirmAgree')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|