mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import { Redirect } from 'react-router-dom';
|
|
import {
|
|
DEFAULT_ROUTE,
|
|
ONBOARDING_COMPLETION_ROUTE,
|
|
ONBOARDING_UNLOCK_ROUTE,
|
|
LOCK_ROUTE,
|
|
ONBOARDING_WELCOME,
|
|
} from '../../../helpers/constants/routes';
|
|
import {
|
|
getCompletedOnboarding,
|
|
getIsInitialized,
|
|
getIsUnlocked,
|
|
getSeedPhraseBackedUp,
|
|
} from '../../../ducks/metamask/metamask';
|
|
|
|
export default function OnboardingFlowSwitch() {
|
|
const completedOnboarding = useSelector(getCompletedOnboarding);
|
|
const isInitialized = useSelector(getIsInitialized);
|
|
const seedPhraseBackedUp = useSelector(getSeedPhraseBackedUp);
|
|
const isUnlocked = useSelector(getIsUnlocked);
|
|
|
|
if (completedOnboarding) {
|
|
return <Redirect to={{ pathname: DEFAULT_ROUTE }} />;
|
|
}
|
|
|
|
if (seedPhraseBackedUp !== null) {
|
|
return <Redirect to={{ pathname: ONBOARDING_COMPLETION_ROUTE }} />;
|
|
}
|
|
|
|
if (isUnlocked) {
|
|
return <Redirect to={{ pathname: LOCK_ROUTE }} />;
|
|
}
|
|
|
|
if (!isInitialized) {
|
|
return <Redirect to={{ pathname: ONBOARDING_WELCOME }} />;
|
|
}
|
|
|
|
return <Redirect to={{ pathname: ONBOARDING_UNLOCK_ROUTE }} />;
|
|
}
|