mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
7760f4d658
* Remove ONBOARDING_V2 flag for release * Remove new usage * Update e2e tests * Update incremental-security.spec.js * Fix lint Co-authored-by: PeterYinusa <peter.yinusa@consensys.net>
28 lines
718 B
JavaScript
28 lines
718 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Redirect, Route } from 'react-router-dom';
|
|
import { UNLOCK_ROUTE, ONBOARDING_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: ONBOARDING_ROUTE,
|
|
}}
|
|
/>
|
|
);
|
|
default:
|
|
return <Redirect to={{ pathname: UNLOCK_ROUTE }} />;
|
|
}
|
|
}
|
|
|
|
Authenticated.propTypes = {
|
|
isUnlocked: PropTypes.bool,
|
|
completedOnboarding: PropTypes.bool,
|
|
};
|