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.
36 lines
840 B
36 lines
840 B
6 years ago
|
import {
|
||
|
INITIALIZE_CREATE_PASSWORD_ROUTE,
|
||
|
INITIALIZE_IMPORT_WITH_SEED_PHRASE_ROUTE,
|
||
|
DEFAULT_ROUTE,
|
||
5 years ago
|
} from '../helpers/constants/routes'
|
||
6 years ago
|
|
||
5 years ago
|
export function getFirstTimeFlowTypeRoute (state) {
|
||
6 years ago
|
const { firstTimeFlowType } = state.metamask
|
||
|
|
||
|
let nextRoute
|
||
|
if (firstTimeFlowType === 'create') {
|
||
|
nextRoute = INITIALIZE_CREATE_PASSWORD_ROUTE
|
||
|
} else if (firstTimeFlowType === 'import') {
|
||
|
nextRoute = INITIALIZE_IMPORT_WITH_SEED_PHRASE_ROUTE
|
||
|
} else {
|
||
|
nextRoute = DEFAULT_ROUTE
|
||
|
}
|
||
|
|
||
|
return nextRoute
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
export const getOnboardingInitiator = (state) => {
|
||
5 years ago
|
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,
|
||
|
}
|
||
|
}
|