2017-07-10 19:50:11 +08:00
|
|
|
import React, { Component } from 'react'
|
2017-07-20 19:59:49 +08:00
|
|
|
import { connect } from 'react-redux'
|
|
|
|
import PropTypes from 'prop-types'
|
2017-07-24 11:35:31 +08:00
|
|
|
import { Route, HashRouter } from 'react-router-dom'
|
2017-07-20 20:31:20 +08:00
|
|
|
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'
|
2017-07-25 15:35:23 +08:00
|
|
|
import Loading from './components/Loading/Loading'
|
2017-07-20 19:59:49 +08:00
|
|
|
import { checkLoginState } from './actions/login'
|
2017-07-24 11:35:31 +08:00
|
|
|
import { requireAuthentication } from './components/AuthenticatedComponent';
|
2017-07-20 19:59:49 +08:00
|
|
|
|
2017-07-19 16:24:37 +08:00
|
|
|
const LOADING_STATUS = 0;
|
|
|
|
|
2017-07-24 11:35:31 +08:00
|
|
|
@connect(
|
|
|
|
state => {
|
|
|
|
return{
|
|
|
|
loginState:state.login.loginState
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
checkLoginState
|
|
|
|
}
|
|
|
|
)
|
|
|
|
export default class App extends Component {
|
2017-07-19 16:24:37 +08:00
|
|
|
constructor(props) {
|
2017-07-20 19:59:49 +08:00
|
|
|
super(props);
|
2017-07-19 16:24:37 +08:00
|
|
|
this.state = {
|
|
|
|
login: LOADING_STATUS
|
|
|
|
}
|
|
|
|
}
|
2017-07-20 19:59:49 +08:00
|
|
|
static propTypes = {
|
2017-07-21 12:27:24 +08:00
|
|
|
checkLoginState:PropTypes.func,
|
|
|
|
loginState:PropTypes.number
|
2017-07-20 19:59:49 +08:00
|
|
|
}
|
2017-07-24 11:35:31 +08:00
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.props.checkLoginState();
|
|
|
|
}
|
2017-07-19 16:24:37 +08:00
|
|
|
route = (status) => {
|
|
|
|
let r;
|
|
|
|
if (status === LOADING_STATUS) {
|
2017-07-25 15:35:23 +08:00
|
|
|
return <Loading visible/>
|
2017-07-19 16:24:37 +08:00
|
|
|
} else {
|
|
|
|
r = (
|
|
|
|
<HashRouter>
|
|
|
|
<div className="router-main">
|
|
|
|
<Header />
|
2017-07-20 19:59:49 +08:00
|
|
|
<Route path="/" component={Home} exact />
|
2017-07-25 16:24:46 +08:00
|
|
|
<Route path="/group" component={ requireAuthentication(ProjectGroups) } >
|
2017-07-25 16:18:00 +08:00
|
|
|
<Route exact path="/group/:groupName" component={ ProjectGroups } />
|
2017-07-25 15:53:55 +08:00
|
|
|
</Route>
|
2017-07-24 11:35:31 +08:00
|
|
|
<Route path="/Interface" component={requireAuthentication(Interface)} />
|
|
|
|
<Route path="/user" component={requireAuthentication(User)} />
|
|
|
|
<Route path="/News" component={requireAuthentication(News)} />
|
|
|
|
<Route path="/AddInterface" component={ requireAuthentication(AddInterface) } />
|
2017-07-19 16:24:37 +08:00
|
|
|
</div>
|
|
|
|
</HashRouter>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
return r
|
|
|
|
}
|
2017-07-10 19:50:11 +08:00
|
|
|
render() {
|
2017-07-24 11:35:31 +08:00
|
|
|
return this.route(this.props.loginState);
|
2017-07-10 19:50:11 +08:00
|
|
|
}
|
|
|
|
}
|