mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-15 05:10:47 +08:00
77 lines
2.1 KiB
JavaScript
Executable File
77 lines
2.1 KiB
JavaScript
Executable File
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import { Route, BrowserRouter as Router } from 'react-router-dom';
|
|
import { Home, Group, Project, Follows, AddProject, Login } from './containers/index';
|
|
import User from './containers/User/User.js';
|
|
import Header from './components/Header/Header';
|
|
import Footer from './components/Footer/Footer';
|
|
import Loading from './components/Loading/Loading';
|
|
import { checkLoginState } from './reducer/modules/user';
|
|
import { requireAuthentication } from './components/AuthenticatedComponent';
|
|
|
|
|
|
const LOADING_STATUS = 0;
|
|
|
|
@connect(
|
|
state => {
|
|
return {
|
|
loginState: state.user.loginState
|
|
};
|
|
},
|
|
{
|
|
checkLoginState
|
|
}
|
|
)
|
|
export default class App extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
login: LOADING_STATUS
|
|
};
|
|
}
|
|
|
|
static propTypes = {
|
|
checkLoginState: PropTypes.func,
|
|
loginState: PropTypes.number
|
|
};
|
|
|
|
|
|
componentDidMount() {
|
|
this.props.checkLoginState();
|
|
}
|
|
|
|
route = (status) => {
|
|
let r;
|
|
if (status === LOADING_STATUS) {
|
|
return <Loading visible />;
|
|
} else {
|
|
r = (
|
|
<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>
|
|
</div>
|
|
<Footer />
|
|
</div>
|
|
</Router>
|
|
|
|
)
|
|
}
|
|
return r;
|
|
}
|
|
|
|
render() {
|
|
return this.route(this.props.loginState);
|
|
}
|
|
}
|