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.
45 lines
1.1 KiB
45 lines
1.1 KiB
import {
|
|
INITIALIZE_CREATE_PASSWORD_ROUTE,
|
|
INITIALIZE_IMPORT_WITH_SEED_PHRASE_ROUTE,
|
|
DEFAULT_ROUTE,
|
|
ONBOARDING_CREATE_PASSWORD_ROUTE,
|
|
ONBOARDING_IMPORT_WITH_SRP_ROUTE,
|
|
} from '../helpers/constants/routes';
|
|
|
|
export function getFirstTimeFlowTypeRoute(state) {
|
|
const { firstTimeFlowType } = state.metamask;
|
|
|
|
let nextRoute;
|
|
if (firstTimeFlowType === 'create') {
|
|
nextRoute = process.env.ONBOARDING_V2
|
|
? ONBOARDING_CREATE_PASSWORD_ROUTE
|
|
: INITIALIZE_CREATE_PASSWORD_ROUTE;
|
|
} else if (firstTimeFlowType === 'import') {
|
|
nextRoute = process.env.ONBOARDING_V2
|
|
? ONBOARDING_IMPORT_WITH_SRP_ROUTE
|
|
: INITIALIZE_IMPORT_WITH_SEED_PHRASE_ROUTE;
|
|
} else {
|
|
nextRoute = DEFAULT_ROUTE;
|
|
}
|
|
|
|
return nextRoute;
|
|
}
|
|
|
|
export const getFirstTimeFlowType = (state) => {
|
|
return state.metamask.firstTimeFlowType;
|
|
};
|
|
|
|
export const getOnboardingInitiator = (state) => {
|
|
const { onboardingTabs } = state.metamask;
|
|
|
|
if (!onboardingTabs || Object.keys(onboardingTabs).length !== 1) {
|
|
return null;
|
|
}
|
|
|
|
const location = Object.keys(onboardingTabs)[0];
|
|
const tabId = onboardingTabs[location];
|
|
return {
|
|
location,
|
|
tabId,
|
|
};
|
|
};
|
|
|