import React from 'react'; import { useHistory } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; import Box from '../../../components/ui/box'; import Typography from '../../../components/ui/typography'; import Button from '../../../components/ui/button'; import { FONT_WEIGHT, TEXT_ALIGN, TYPOGRAPHY, } from '../../../helpers/constants/design-system'; import { useI18nContext } from '../../../hooks/useI18nContext'; import { ONBOARDING_PIN_EXTENSION_ROUTE, ONBOARDING_PRIVACY_SETTINGS_ROUTE, } from '../../../helpers/constants/routes'; import { setCompletedOnboarding } from '../../../store/actions'; import { useMetricEvent } from '../../../hooks/useMetricEvent'; import { getFirstTimeFlowType } from '../../../selectors'; export default function CreationSuccessful() { const firstTimeFlowTypeNameMap = { create: 'New Wallet Created', import: 'New Wallet Imported', }; const history = useHistory(); const t = useI18nContext(); const dispatch = useDispatch(); const firstTimeFlowType = useSelector(getFirstTimeFlowType); const onboardingCompletedEvent = useMetricEvent({ category: 'Onboarding', action: 'Onboarding Complete', name: firstTimeFlowTypeNameMap[firstTimeFlowType], }); const onComplete = async () => { await dispatch(setCompletedOnboarding()); onboardingCompletedEvent(); history.push(ONBOARDING_PIN_EXTENSION_ROUTE); }; return (
{t('walletCreationSuccessTitle')} {t('walletCreationSuccessDetail')} {t('remember')}
); }