yapi/client/components/Header/Header.js

137 lines
3.5 KiB
JavaScript
Raw Normal View History

2017-07-10 11:50:56 +08:00
import './Header.scss'
2017-07-07 17:26:31 +08:00
import React, { Component } from 'react'
2017-07-12 16:27:06 +08:00
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
2017-07-10 21:29:03 +08:00
import { Link } from 'react-router-dom'
2017-07-17 21:11:58 +08:00
import { Icon, Layout, Menu} from 'antd'
import { checkLoginState, logoutActions, loginTypeAction} from '../../actions/login'
import { withRouter } from 'react-router';
2017-07-12 16:27:06 +08:00
2017-07-17 21:11:58 +08:00
const { Header } = Layout;
2017-07-12 16:27:06 +08:00
const ToolUser = (props)=> (
<ul>
2017-07-18 18:25:53 +08:00
<li><Link to="/user" onClick={props.relieveLink}><Icon type="user" />{ props.user }</Link></li>
<li><Link to="/News" onClick={props.relieveLink}><Icon type="mail" />{ props.msg }</Link></li>
2017-07-19 10:38:29 +08:00
<li onClick={props.logout}>退出</li>
2017-07-12 16:27:06 +08:00
</ul>
);
ToolUser.propTypes={
user:PropTypes.string,
2017-07-18 18:25:53 +08:00
msg:PropTypes.string,
2017-07-19 10:38:29 +08:00
relieveLink:PropTypes.func,
logout:PropTypes.func
2017-07-12 16:27:06 +08:00
};
2017-07-19 14:08:24 +08:00
@withRouter
2017-07-17 21:11:58 +08:00
class HeaderCom extends Component {
2017-07-07 17:26:31 +08:00
constructor(props) {
2017-07-12 16:27:06 +08:00
super(props);
2017-07-18 18:25:53 +08:00
this.state = {
current : window.location.hash.split("#")[1]
}
}
2017-07-19 10:38:29 +08:00
static propTypes ={
router: PropTypes.object,
2017-07-19 10:38:29 +08:00
user: PropTypes.string,
msg: PropTypes.string,
login:PropTypes.bool,
relieveLink:PropTypes.func,
logoutActions:PropTypes.func,
checkLoginState:PropTypes.func,
loginTypeAction:PropTypes.func,
history: PropTypes.object,
location: PropTypes.object
2017-07-19 10:38:29 +08:00
}
2017-07-19 14:08:24 +08:00
componentDidMount() {
const { router } = this.props;
console.log(router);
}
2017-07-18 18:25:53 +08:00
linkTo = (e) =>{
this.setState({
current : e.key
})
}
2017-07-19 10:38:29 +08:00
relieveLink = () => {
2017-07-18 18:25:53 +08:00
this.setState({
current : ""
})
}
2017-07-19 10:38:29 +08:00
logout = (e) => {
e.preventDefault();
this.props.logoutActions();
}
handleLogin = (e) => {
e.preventDefault();
this.props.loginTypeAction("1");
}
handleReg = (e)=>{
e.preventDefault();
this.props.loginTypeAction("2");
2017-07-07 17:26:31 +08:00
}
checkLoginState = () => {
this.props.checkLoginState().then((res) => {
if (res.payload.data.errcode !== 0) {
this.props.history.push('/');
}
}).catch((err) => {
console.log(err);
})
}
2017-07-07 17:26:31 +08:00
render () {
this.checkLoginState();
2017-07-12 16:27:06 +08:00
const { login, user, msg } = this.props;
2017-07-07 17:26:31 +08:00
return (
<acticle className="header-box">
2017-07-17 21:11:58 +08:00
<Layout className="'layout">
<Header>
<div className="content">
<div className="logo">
YAPI
</div>
<Menu
mode="horizontal"
className="nav-toolbar"
theme="dark"
style={{ lineHeight : '.64rem'}}
2017-07-18 18:25:53 +08:00
onClick={this.linkTo}
selectedKeys={[this.state.current]}
2017-07-17 21:11:58 +08:00
>
2017-07-18 18:25:53 +08:00
<Menu.Item key="/">
<Link to="/">首页</Link>
2017-07-17 21:11:58 +08:00
</Menu.Item>
2017-07-18 18:25:53 +08:00
<Menu.Item key="/ProjectGroups">
<Link to="/ProjectGroups">分组</Link>
2017-07-17 21:11:58 +08:00
</Menu.Item>
2017-07-18 18:25:53 +08:00
<Menu.Item key="/Interface">
<Link to="/Interface">接口</Link>
2017-07-17 21:11:58 +08:00
</Menu.Item>
2017-07-19 14:08:24 +08:00
<Menu.Item key="/doc">
<a>文档</a>
</Menu.Item>
2017-07-17 21:11:58 +08:00
</Menu>
<div className="user-toolbar">
2017-07-19 14:08:24 +08:00
{login?<ToolUser user={user} msg={msg} relieveLink={this.relieveLink} logout={this.logout}/>:""}
2017-07-17 21:11:58 +08:00
</div>
</div>
</Header>
</Layout>
2017-07-07 17:26:31 +08:00
</acticle>
)
}
2017-07-06 01:09:33 +08:00
}
2017-07-07 17:26:31 +08:00
2017-07-12 16:27:06 +08:00
export default connect(
(state) => {
return{
user: state.login.userName,
2017-07-18 18:25:53 +08:00
msg: null,
login:state.login.isLogin
}
},
2017-07-19 10:38:29 +08:00
{
loginTypeAction,
logoutActions,
checkLoginState
2017-07-19 10:38:29 +08:00
}
2017-07-17 21:11:58 +08:00
)(HeaderCom)