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.
119 lines
3.6 KiB
119 lines
3.6 KiB
import EventEmitter from 'events';
|
|
import React, { useState } from 'react';
|
|
import { useDispatch } from 'react-redux';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { Carousel } from 'react-responsive-carousel';
|
|
import Mascot from '../../../components/ui/mascot';
|
|
import Button from '../../../components/ui/button';
|
|
import Typography from '../../../components/ui/typography/typography';
|
|
import {
|
|
TYPOGRAPHY,
|
|
FONT_WEIGHT,
|
|
TEXT_ALIGN,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { setFirstTimeFlowType } from '../../../store/actions';
|
|
import { ONBOARDING_METAMETRICS } from '../../../helpers/constants/routes';
|
|
|
|
export default function OnboardingWelcome() {
|
|
const t = useI18nContext();
|
|
const dispatch = useDispatch();
|
|
const history = useHistory();
|
|
const [eventEmitter] = useState(new EventEmitter());
|
|
|
|
const onCreateClick = () => {
|
|
dispatch(setFirstTimeFlowType('create'));
|
|
history.push(ONBOARDING_METAMETRICS);
|
|
};
|
|
|
|
const onImportClick = () => {
|
|
dispatch(setFirstTimeFlowType('import'));
|
|
history.push(ONBOARDING_METAMETRICS);
|
|
};
|
|
|
|
return (
|
|
<div className="onboarding-welcome" data-testid="onboarding-welcome">
|
|
<Carousel showThumbs={false} showStatus={false} showArrows>
|
|
<div>
|
|
<Typography
|
|
variant={TYPOGRAPHY.H2}
|
|
align={TEXT_ALIGN.CENTER}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('welcomeToMetaMask')}
|
|
</Typography>
|
|
<Typography align={TEXT_ALIGN.CENTER} marginLeft={6} marginRight={6}>
|
|
{t('welcomeToMetaMaskIntro')}
|
|
</Typography>
|
|
<div className="onboarding-welcome__mascot">
|
|
<Mascot
|
|
animationEventEmitter={eventEmitter}
|
|
width="250"
|
|
height="250"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<Typography
|
|
variant={TYPOGRAPHY.H2}
|
|
align={TEXT_ALIGN.CENTER}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('welcomeExploreTitle')}
|
|
</Typography>
|
|
<Typography align={TEXT_ALIGN.CENTER}>
|
|
{t('welcomeExploreDescription')}
|
|
</Typography>
|
|
<div className="onboarding-welcome__image">
|
|
<img
|
|
src="/images/onboarding-welcome-say-hello.svg"
|
|
width="169"
|
|
height="237"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<Typography
|
|
variant={TYPOGRAPHY.H2}
|
|
align={TEXT_ALIGN.CENTER}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('welcomeLoginTitle')}
|
|
</Typography>
|
|
<Typography align={TEXT_ALIGN.CENTER}>
|
|
{t('welcomeLoginDescription')}
|
|
</Typography>
|
|
<div className="onboarding-welcome__image">
|
|
<img
|
|
src="/images/onboarding-welcome-decentralised-apps.svg"
|
|
width="327"
|
|
height="256"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Carousel>
|
|
<ul className="onboarding-welcome__buttons">
|
|
<li>
|
|
<Button
|
|
data-testid="onboarding-create-wallet"
|
|
type="primary"
|
|
onClick={onCreateClick}
|
|
>
|
|
{t('onboardingCreateWallet')}
|
|
</Button>
|
|
</li>
|
|
<li>
|
|
<Button
|
|
data-testid="onboarding-import-wallet"
|
|
type="secondary"
|
|
onClick={onImportClick}
|
|
>
|
|
{t('onboardingImportWallet')}
|
|
</Button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|
|
|