yapi/client/Application.js

83 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-07-10 19:50:11 +08:00
import React, { Component } from 'react'
import { connect } from 'react-redux'
import PropTypes from 'prop-types'
import { Route, HashRouter, Redirect, Switch } from 'react-router-dom'
import { Home, ProjectGroups, Interface, News, AddInterface } from './containers/index'
2017-07-19 16:24:37 +08:00
import User from './containers/User/User.js'
import Header from './components/Header/Header'
import { checkLoginState } from './actions/login'
2017-07-19 16:24:37 +08:00
const LOADING_STATUS = 0;
const GUEST_STATUS = 1;
// const MEMBER_STATUS = 2;
2017-07-10 19:50:11 +08:00
2017-07-10 19:50:11 +08:00
class App extends Component {
2017-07-19 16:24:37 +08:00
constructor(props) {
super(props);
2017-07-19 16:24:37 +08:00
this.state = {
login: LOADING_STATUS
}
}
static propTypes = {
checkLoginState:PropTypes.func,
loginState:PropTypes.number
}
2017-07-19 16:24:37 +08:00
route = (status) => {
let r;
if (status === LOADING_STATUS) {
return <span>loading...</span>
} else if (status === GUEST_STATUS) {
r = (
<HashRouter>
<div className="router-main">
<Header />
<Switch>
<Route
path="/"
component={Home}/>
<Redirect from="(/:str)" to="/" />
</Switch>
2017-07-19 16:24:37 +08:00
</div>
</HashRouter>
)
} else {
r = (
<HashRouter>
<div className="router-main">
<Header />
<Route path="/" component={Home} exact />
2017-07-19 16:24:37 +08:00
<Route path="/ProjectGroups" component={ProjectGroups} />
<Route path="/Interface" component={Interface} />
<Route path="/user" component={User} />
<Route path="/News" component={News} />
2017-07-20 15:38:25 +08:00
<Route path="/AddInterface" component={ AddInterface } />
2017-07-19 16:24:37 +08:00
</div>
</HashRouter>
)
}
return r
}
componentDidMount() {
this.props.checkLoginState();
2017-07-19 16:24:37 +08:00
}
2017-07-10 19:50:11 +08:00
render() {
return this.route(this.props.loginState)
2017-07-10 19:50:11 +08:00
}
}
export default connect(
state => {
return{
loginState:state.login.loginState
}
},
{
checkLoginState
}
)(App)