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.
35 lines
910 B
35 lines
910 B
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Redirect } from 'react-router-dom'
|
|
import {
|
|
DEFAULT_ROUTE,
|
|
LOCK_ROUTE,
|
|
INITIALIZE_WELCOME_ROUTE,
|
|
INITIALIZE_UNLOCK_ROUTE,
|
|
} from '../../../helpers/constants/routes'
|
|
|
|
export default class FirstTimeFlowSwitch extends PureComponent {
|
|
static propTypes = {
|
|
completedOnboarding: PropTypes.bool,
|
|
isInitialized: PropTypes.bool,
|
|
isUnlocked: PropTypes.bool,
|
|
}
|
|
|
|
render() {
|
|
const { completedOnboarding, isInitialized, isUnlocked } = this.props
|
|
|
|
if (completedOnboarding) {
|
|
return <Redirect to={{ pathname: DEFAULT_ROUTE }} />
|
|
}
|
|
|
|
if (isUnlocked) {
|
|
return <Redirect to={{ pathname: LOCK_ROUTE }} />
|
|
}
|
|
|
|
if (!isInitialized) {
|
|
return <Redirect to={{ pathname: INITIALIZE_WELCOME_ROUTE }} />
|
|
}
|
|
|
|
return <Redirect to={{ pathname: INITIALIZE_UNLOCK_ROUTE }} />
|
|
}
|
|
}
|
|
|