2017-11-16 10:27:54 +08:00
|
|
|
import React, { PureComponent as Component } from 'react';
|
2017-09-29 13:53:53 +08:00
|
|
|
import ReactDOM from 'react-dom';
|
2017-07-26 22:03:18 +08:00
|
|
|
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';
|
2017-10-12 17:01:58 +08:00
|
|
|
import { Alert } from 'antd';
|
2017-07-26 22:03:18 +08:00
|
|
|
import User from './containers/User/User.js';
|
|
|
|
import Header from './components/Header/Header';
|
2017-09-21 14:15:42 +08:00
|
|
|
import Footer from './components/Footer/Footer';
|
2017-07-26 22:03:18 +08:00
|
|
|
import Loading from './components/Loading/Loading';
|
2017-09-29 13:53:53 +08:00
|
|
|
import MyPopConfirm from './components/MyPopConfirm/MyPopConfirm';
|
2017-08-10 20:08:23 +08:00
|
|
|
import { checkLoginState } from './reducer/modules/user';
|
2017-07-24 11:35:31 +08:00
|
|
|
import { requireAuthentication } from './components/AuthenticatedComponent';
|
2018-07-09 15:08:56 +08:00
|
|
|
import Notify from './components/Notify/Notify';
|
2018-02-22 12:26:08 +08:00
|
|
|
|
2017-10-27 12:13:59 +08:00
|
|
|
const plugin = require('client/plugin.js');
|
2017-07-20 19:59:49 +08:00
|
|
|
|
2017-07-19 16:24:37 +08:00
|
|
|
const LOADING_STATUS = 0;
|
|
|
|
|
2017-10-12 17:01:58 +08:00
|
|
|
const alertContent = () => {
|
|
|
|
const ua = window.navigator.userAgent,
|
2018-07-09 16:19:54 +08:00
|
|
|
isChrome = ua.indexOf('Chrome') && window.chrome;
|
2017-10-12 17:01:58 +08:00
|
|
|
if (!isChrome) {
|
2018-07-09 16:19:54 +08:00
|
|
|
return (
|
|
|
|
<Alert
|
|
|
|
style={{ zIndex: 99 }}
|
|
|
|
message={'YApi 的接口测试等功能仅支持 Chrome 浏览器,请使用 Chrome 浏览器获得完整功能。'}
|
|
|
|
banner
|
|
|
|
closable
|
|
|
|
/>
|
|
|
|
);
|
2017-10-12 17:01:58 +08:00
|
|
|
}
|
2018-07-09 16:19:54 +08:00
|
|
|
};
|
2017-10-12 17:01:58 +08:00
|
|
|
|
2017-10-27 12:13:59 +08:00
|
|
|
let AppRoute = {
|
|
|
|
home: {
|
|
|
|
path: '/',
|
|
|
|
component: Home
|
|
|
|
},
|
|
|
|
group: {
|
|
|
|
path: '/group',
|
|
|
|
component: Group
|
|
|
|
},
|
|
|
|
project: {
|
|
|
|
path: '/project/:id',
|
|
|
|
component: Project
|
|
|
|
},
|
|
|
|
user: {
|
|
|
|
path: '/user',
|
|
|
|
component: User
|
|
|
|
},
|
|
|
|
follow: {
|
|
|
|
path: '/follow',
|
|
|
|
component: Follows
|
|
|
|
},
|
|
|
|
addProject: {
|
|
|
|
path: '/add-project',
|
|
|
|
component: AddProject
|
|
|
|
},
|
|
|
|
login: {
|
|
|
|
path: '/login',
|
|
|
|
component: Login
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// 增加路由钩子
|
|
|
|
plugin.emitHook('app_route', AppRoute);
|
|
|
|
|
2017-07-24 11:35:31 +08:00
|
|
|
@connect(
|
|
|
|
state => {
|
2017-07-26 22:03:18 +08:00
|
|
|
return {
|
2017-09-29 15:22:39 +08:00
|
|
|
loginState: state.user.loginState
|
2017-07-26 22:03:18 +08:00
|
|
|
};
|
2017-07-24 11:35:31 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
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-26 22:03:18 +08:00
|
|
|
};
|
2017-07-19 16:24:37 +08:00
|
|
|
}
|
2017-07-26 22:03:18 +08:00
|
|
|
|
2017-07-20 19:59:49 +08:00
|
|
|
static propTypes = {
|
2017-07-26 22:03:18 +08:00
|
|
|
checkLoginState: PropTypes.func,
|
2017-09-29 15:22:39 +08:00
|
|
|
loginState: PropTypes.number
|
2017-07-26 22:03:18 +08:00
|
|
|
};
|
2017-07-24 11:35:31 +08:00
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.props.checkLoginState();
|
|
|
|
}
|
2017-07-26 22:03:18 +08:00
|
|
|
|
2018-01-16 15:40:49 +08:00
|
|
|
showConfirm = (msg, callback) => {
|
|
|
|
// 自定义 window.confirm
|
|
|
|
// http://reacttraining.cn/web/api/BrowserRouter/getUserConfirmation-func
|
|
|
|
let container = document.createElement('div');
|
|
|
|
document.body.appendChild(container);
|
2018-07-09 16:19:54 +08:00
|
|
|
ReactDOM.render(<MyPopConfirm msg={msg} callback={callback} />, container);
|
|
|
|
};
|
2018-01-16 15:40:49 +08:00
|
|
|
|
2018-07-09 16:19:54 +08:00
|
|
|
route = status => {
|
2017-07-19 16:24:37 +08:00
|
|
|
let r;
|
|
|
|
if (status === LOADING_STATUS) {
|
2017-07-26 22:03:18 +08:00
|
|
|
return <Loading visible />;
|
2017-07-19 16:24:37 +08:00
|
|
|
} else {
|
|
|
|
r = (
|
2018-01-16 15:40:49 +08:00
|
|
|
<Router getUserConfirmation={this.showConfirm}>
|
2017-08-21 15:13:52 +08:00
|
|
|
<div className="g-main">
|
|
|
|
<div className="router-main">
|
2018-07-11 15:01:07 +08:00
|
|
|
{process.env.versionNotify && <Notify />}
|
2017-10-12 17:01:58 +08:00
|
|
|
{alertContent()}
|
2017-08-21 15:13:52 +08:00
|
|
|
{this.props.loginState !== 1 ? <Header /> : null}
|
|
|
|
<div className="router-container">
|
2017-10-27 12:13:59 +08:00
|
|
|
{Object.keys(AppRoute).map(key => {
|
|
|
|
let item = AppRoute[key];
|
2018-07-09 16:19:54 +08:00
|
|
|
return key === 'login' ? (
|
|
|
|
<Route key={key} path={item.path} component={item.component} />
|
|
|
|
) : key === 'home' ? (
|
|
|
|
<Route key={key} exact path={item.path} component={item.component} />
|
|
|
|
) : (
|
|
|
|
<Route
|
|
|
|
key={key}
|
|
|
|
path={item.path}
|
|
|
|
component={requireAuthentication(item.component)}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
})}
|
2017-10-27 12:13:59 +08:00
|
|
|
</div>
|
|
|
|
{/* <div className="router-container">
|
2017-08-21 15:13:52 +08:00
|
|
|
<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} />
|
2017-10-27 12:13:59 +08:00
|
|
|
{/* <Route path="/statistic" component={statisticsPage} /> */}
|
|
|
|
{/* </div> */}
|
2017-07-26 16:20:20 +08:00
|
|
|
</div>
|
2017-10-27 12:13:59 +08:00
|
|
|
<Footer />
|
2017-07-19 16:24:37 +08:00
|
|
|
</div>
|
2018-07-09 16:19:54 +08:00
|
|
|
</Router>
|
|
|
|
);
|
2017-07-19 16:24:37 +08:00
|
|
|
}
|
2017-07-26 22:03:18 +08:00
|
|
|
return r;
|
2018-07-09 16:19:54 +08:00
|
|
|
};
|
2017-07-26 22:03:18 +08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|