Info.js 2.7 KB
Newer Older
J
jim 已提交
1
import React, { Component } from 'react';
陈帅 已提交
2
import { connect } from 'dva';
愚道 已提交
3
import { routerRedux } from 'dva/router';
陈帅 已提交
4 5
import { Menu } from 'antd';
import styles from './Info.less';
愚道 已提交
6
import GridContent from '../../layouts/GridContent';
陈帅 已提交
7 8 9 10 11

const { Item } = Menu;

const menuMap = {
  base: '基本设置',
D
ddcat1115 已提交
12 13 14
  security: '安全设置',
  binding: '账号绑定',
  notification: '新消息通知',
陈帅 已提交
15 16 17 18 19
};

@connect(({ user }) => ({
  currentUser: user.currentUser,
}))
J
jim 已提交
20
export default class Info extends Component {
陈帅 已提交
21 22 23 24 25 26 27
  constructor(props) {
    super(props);
    const { match, location } = props;
    let key = location.pathname.replace(`${match.path}/`, '');
    key = menuMap[key] ? key : 'base';
    this.state = {
      selectKey: key,
J
jim 已提交
28
      mode: 'inline',
陈帅 已提交
29 30
    };
  }
陈帅 已提交
31 32 33 34 35 36 37 38 39 40

  componentDidMount() {
    window.addEventListener('resize', this.resize);
    this.resize();
  }

  componentWillUnmount() {
    window.removeEventListener('resize', this.resize);
  }

Q
qixian.cs@outlook.com 已提交
41 42 43 44 45 46 47 48 49
  static getDerivedStateFromProps(props, state) {
    const { match, location } = props;
    let selectKey = location.pathname.replace(`${match.path}/`, '');
    selectKey = menuMap[selectKey] ? selectKey : 'base';
    if (selectKey !== state.selectKey) {
      return { selectKey };
    }
    return null;
  }
陈帅 已提交
50

陈帅 已提交
51
  getmenu = () => {
J
jim 已提交
52
    return Object.keys(menuMap).map(item => <Item key={item}>{menuMap[item]}</Item>);
陈帅 已提交
53
  };
陈帅 已提交
54

陈帅 已提交
55
  getRightTitle = () => {
陈帅 已提交
56 57
    const { selectKey } = this.state;
    return menuMap[selectKey];
陈帅 已提交
58
  };
陈帅 已提交
59

陈帅 已提交
60
  selectKey = ({ key }) => {
陈帅 已提交
61 62
    const { dispatch } = this.props;
    dispatch(routerRedux.push(`/account/settings/${key}`));
陈帅 已提交
63 64 65 66
    this.setState({
      selectKey: key,
    });
  };
陈帅 已提交
67

J
jim 已提交
68 69 70 71
  resize = () => {
    if (!this.main) {
      return;
    }
J
jim 已提交
72 73 74 75 76 77 78 79 80 81 82 83
    requestAnimationFrame(() => {
      let mode = 'inline';
      const { offsetWidth } = this.main;
      if (this.main.offsetWidth < 641 && offsetWidth > 400) {
        mode = 'horizontal';
      }
      if (window.innerWidth < 768 && offsetWidth > 400) {
        mode = 'horizontal';
      }
      this.setState({
        mode,
      });
J
jim 已提交
84 85
    });
  };
陈帅 已提交
86

陈帅 已提交
87
  render() {
愚道 已提交
88
    const { children, currentUser } = this.props;
陈帅 已提交
89 90 91
    if (!currentUser.userid) {
      return '';
    }
陈帅 已提交
92
    const { mode, selectKey } = this.state;
陈帅 已提交
93
    return (
J
jim 已提交
94
      <GridContent>
J
jim 已提交
95 96
        <div
          className={styles.main}
J
jim 已提交
97
          ref={ref => {
J
jim 已提交
98 99 100
            this.main = ref;
          }}
        >
J
jim 已提交
101
          <div className={styles.leftmenu}>
陈帅 已提交
102
            <Menu mode={mode} selectedKeys={[selectKey]} onClick={this.selectKey}>
J
jim 已提交
103 104 105 106 107
              {this.getmenu()}
            </Menu>
          </div>
          <div className={styles.right}>
            <div className={styles.title}>{this.getRightTitle()}</div>
愚道 已提交
108
            {children}
J
jim 已提交
109
          </div>
陈帅 已提交
110
        </div>
J
jim 已提交
111
      </GridContent>
陈帅 已提交
112 113 114
    );
  }
}