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