2019-01-23 16:25:34 +01:00
|
|
|
import React from 'react'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import { Redirect, Route } from 'react-router-dom'
|
2019-03-22 00:03:30 +01:00
|
|
|
import { UNLOCK_ROUTE, INITIALIZE_ROUTE } from '../../constants/routes'
|
2019-01-23 16:25:34 +01:00
|
|
|
|
|
|
|
export default function Authenticated (props) {
|
|
|
|
const { isUnlocked, completedOnboarding } = props
|
|
|
|
|
|
|
|
switch (true) {
|
|
|
|
case isUnlocked && completedOnboarding:
|
|
|
|
return <Route { ...props } />
|
|
|
|
case !completedOnboarding:
|
|
|
|
return <Redirect to={{ pathname: INITIALIZE_ROUTE }} />
|
|
|
|
default:
|
|
|
|
return <Redirect to={{ pathname: UNLOCK_ROUTE }} />
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Authenticated.propTypes = {
|
|
|
|
isUnlocked: PropTypes.bool,
|
|
|
|
completedOnboarding: PropTypes.bool,
|
|
|
|
}
|