mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
23 lines
660 B
JavaScript
23 lines
660 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Redirect, Route } from 'react-router-dom';
|
|
import { UNLOCK_ROUTE, INITIALIZE_ROUTE } from '../../constants/routes';
|
|
|
|
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,
|
|
};
|