yapi/client/Application.js

76 lines
2.1 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
2017-08-11 11:26:49 +08:00
import { Route, BrowserRouter as Router } from 'react-router-dom';
2017-08-20 18:56:31 +08:00
import { Home, Group, Project, Follows, AddProject, Login } from './containers/index';
import User from './containers/User/User.js';
import Header from './components/Header/Header';
2017-09-19 16:27:52 +08:00
// import Footer from './components/Footer/Footer';
import Loading from './components/Loading/Loading';
2017-08-10 20:08:23 +08:00
import { checkLoginState } from './reducer/modules/user';
import { requireAuthentication } from './components/AuthenticatedComponent';
2017-09-13 17:09:06 +08:00
2017-07-19 16:24:37 +08:00
const LOADING_STATUS = 0;
@connect(
state => {
return {
2017-08-10 20:08:23 +08:00
loginState: state.user.loginState
};
},
{
checkLoginState
}
)
export default 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
};
2017-07-19 16:24:37 +08:00
}
static propTypes = {
checkLoginState: PropTypes.func,
loginState: PropTypes.number
};
2017-08-10 20:08:23 +08:00
componentDidMount() {
this.props.checkLoginState();
}
2017-07-19 16:24:37 +08:00
route = (status) => {
let r;
if (status === LOADING_STATUS) {
return <Loading visible />;
2017-07-19 16:24:37 +08:00
} else {
r = (
2017-08-21 15:13:52 +08:00
<Router >
<div className="g-main">
<div className="router-main">
{this.props.loginState !== 1 ? <Header /> : null}
<div className="router-container">
<Route exact path="/" component={Home} />
<Route path="/group" component={requireAuthentication(Group)} />
<Route path="/project/:id" component={requireAuthentication(Project)} />
<Route path="/user" component={requireAuthentication(User)} />
<Route path="/follow" component={requireAuthentication(Follows)} />
<Route path="/add-project" component={requireAuthentication(AddProject)} />
<Route path="/login" component={Login} />
</div>
2017-07-26 16:20:20 +08:00
</div>
2017-07-19 16:24:37 +08:00
</div>
</Router>
2017-09-19 16:27:52 +08:00
2017-07-19 16:24:37 +08:00
)
}
return r;
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
}
}