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.
153 lines
4.1 KiB
153 lines
4.1 KiB
3 years ago
|
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';
|
||
|
|
||
|
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 metricsEvent = useContext(MetaMetricsContext);
|
||
|
|
||
|
const onConfirm = async () => {
|
||
|
const [, metaMetricsId] = await dispatch(setParticipateInMetaMetrics(true));
|
||
|
|
||
|
try {
|
||
|
if (!participateInMetaMetrics) {
|
||
|
metricsEvent({
|
||
|
eventOpts: {
|
||
|
category: 'Onboarding',
|
||
|
action: 'Metrics Option',
|
||
|
name: 'Metrics Opt In',
|
||
|
},
|
||
|
isOptIn: true,
|
||
|
flushImmediately: true,
|
||
|
});
|
||
|
}
|
||
|
metricsEvent({
|
||
|
eventOpts: {
|
||
|
category: 'Onboarding',
|
||
|
action: 'Import or Create',
|
||
|
name: firstTimeSelectionMetaMetricsName,
|
||
|
},
|
||
|
isOptIn: true,
|
||
|
metaMetricsId,
|
||
|
flushImmediately: true,
|
||
|
});
|
||
|
} finally {
|
||
|
history.push(nextRoute);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const onCancel = async () => {
|
||
|
await dispatch(setParticipateInMetaMetrics(false));
|
||
|
|
||
|
try {
|
||
|
if (!participateInMetaMetrics) {
|
||
|
metricsEvent({
|
||
|
eventOpts: {
|
||
|
category: 'Onboarding',
|
||
|
action: 'Metrics Option',
|
||
|
name: 'Metrics Opt Out',
|
||
|
},
|
||
|
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.UI4}
|
||
|
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 type="secondary" onClick={onCancel}>
|
||
|
{t('noThanks')}
|
||
|
</Button>
|
||
|
<Button type="primary" onClick={onConfirm}>
|
||
|
{t('affirmAgree')}
|
||
|
</Button>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|