import React, { useState, useContext } from 'react'; import { useHistory } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; import { Carousel } from 'react-responsive-carousel'; import { useI18nContext } from '../../../hooks/useI18nContext'; import Button from '../../../components/ui/button'; import { TextVariant, FontWeight, TextAlign, } from '../../../helpers/constants/design-system'; import { DEFAULT_ROUTE } from '../../../helpers/constants/routes'; import { setCompletedOnboarding } from '../../../store/actions'; import { MetaMetricsEventCategory, MetaMetricsEventName, } from '../../../../shared/constants/metametrics'; import { MetaMetricsContext } from '../../../contexts/metametrics'; import { FIRST_TIME_FLOW_TYPES } from '../../../helpers/constants/onboarding'; import { getFirstTimeFlowType } from '../../../selectors'; import { Text } from '../../../components/component-library'; import OnboardingPinBillboard from './pin-billboard'; export default function OnboardingPinExtension() { const t = useI18nContext(); const [selectedIndex, setSelectedIndex] = useState(0); const history = useHistory(); const dispatch = useDispatch(); const trackEvent = useContext(MetaMetricsContext); const firstTimeFlowType = useSelector(getFirstTimeFlowType); const handleClick = async () => { if (selectedIndex === 0) { setSelectedIndex(1); } else { await dispatch(setCompletedOnboarding()); trackEvent({ category: MetaMetricsEventCategory.Onboarding, event: MetaMetricsEventName.OnboardingWalletSetupComplete, properties: { wallet_setup_type: firstTimeFlowType === FIRST_TIME_FLOW_TYPES.IMPORT ? 'import' : 'new', new_wallet: firstTimeFlowType === FIRST_TIME_FLOW_TYPES.CREATE, }, }); history.push(DEFAULT_ROUTE); } }; return (