forked from FullstackAcademy/boilermaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.js
66 lines (59 loc) · 1.59 KB
/
routes.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import React, {Component} from 'react'
import {connect} from 'react-redux'
import {withRouter, Route, Switch} from 'react-router-dom'
import PropTypes from 'prop-types'
import {Login, Signup, UserHome} from './components'
import {me} from './store'
/**
* COMPONENT
*/
class Routes extends Component {
componentDidMount() {
this.props.loadInitialData()
}
render() {
const {isLoggedIn} = this.props
return (
<Switch>
{/* Routes placed here are available to all visitors */}
<Route path="/login" component={Login} />
<Route path="/signup" component={Signup} />
{isLoggedIn && (
<Switch>
{/* Routes placed here are only available after logging in */}
<Route path="/home" component={UserHome} />
</Switch>
)}
{/* Displays our Login component as a fallback */}
<Route component={Login} />
</Switch>
)
}
}
/**
* CONTAINER
*/
const mapState = state => {
return {
// Being 'logged in' for our purposes will be defined has having a state.user that has a truthy id.
// Otherwise, state.user will be an empty object, and state.user.id will be falsey
isLoggedIn: !!state.user.id
}
}
const mapDispatch = dispatch => {
return {
loadInitialData() {
dispatch(me())
}
}
}
// The `withRouter` wrapper makes sure that updates are not blocked
// when the url changes
export default withRouter(connect(mapState, mapDispatch)(Routes))
/**
* PROP TYPES
*/
Routes.propTypes = {
loadInitialData: PropTypes.func.isRequired,
isLoggedIn: PropTypes.bool.isRequired
}