aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/authenticated.js
blob: 78f3a4225eb60b9614c8fe925e7769b372e9fad8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const { connect } = require('react-redux')
const PropTypes = require('prop-types')
const { Redirect, Route } = require('react-router-dom')
const h = require('react-hyperscript')
const { UNLOCK_ROUTE, INITIALIZE_MENU_ROUTE } = require('../../routes')

const Authenticated = ({ component: Component, isUnlocked, isInitialized, ...props }) => {

  const render = props => {
    switch (true) {
      case isUnlocked:
        return h(Component, { ...props })
      case !isInitialized:
        return h(Redirect, { to: { pathname: INITIALIZE_MENU_ROUTE } })
      default:
        return h(Redirect, { to: { pathname: UNLOCK_ROUTE } })
    }
  }

  return (
    h(Route, {
      ...props,
      render,
    })
  )
}

Authenticated.propTypes = {
  component: PropTypes.func,
  isUnlocked: PropTypes.bool,
  isInitialized: PropTypes.bool,
}

const mapStateToProps = state => {
  const { metamask: { isUnlocked, isInitialized } } = state
  return {
    isUnlocked,
    isInitialized,
  }
}

module.exports = connect(mapStateToProps)(Authenticated)