mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
fba17d77de
* Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state * Fix linting and tests * Fix translations, initialization notice routing * Fix drizzle tests * Fix e2e tests * Fix integration tests * Fix styling * Fix migration naming from 030 to 031 * Open extension in browser when user has not completed onboarding
23 lines
644 B
JavaScript
23 lines
644 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Redirect, Route } from 'react-router-dom'
|
|
import { UNLOCK_ROUTE, INITIALIZE_ROUTE } from '../../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,
|
|
}
|