Info.js 3.23 KB
Newer Older
jim's avatar
jim committed
1
import React, { Component } from 'react';
陈帅's avatar
陈帅 committed
2
import { connect } from 'dva';
zinkey's avatar
zinkey committed
3
import router from 'umi/router';
陈帅's avatar
陈帅 committed
4
import { FormattedMessage } from 'umi/locale';
陈帅's avatar
陈帅 committed
5 6
import { Menu } from 'antd';
import styles from './Info.less';
7
import GridContent from '@/layouts/GridContent';
陈帅's avatar
陈帅 committed
8 9 10 11 12 13

const { Item } = Menu;

@connect(({ user }) => ({
  currentUser: user.currentUser,
}))
jim's avatar
jim committed
14
export default class Info extends Component {
陈帅's avatar
陈帅 committed
15 16 17 18
  constructor(props) {
    super(props);
    const { match, location } = props;
    this.state = {
jim's avatar
jim committed
19
      mode: 'inline',
张秀玲's avatar
张秀玲 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
      menuMap: {
        base: <FormattedMessage id="app.settings.menuMap.basic" defaultMessage="Basic Settings" />,
        security: (
          <FormattedMessage id="app.settings.menuMap.security" defaultMessage="Security Settings" />
        ),
        binding: (
          <FormattedMessage id="app.settings.menuMap.binding" defaultMessage="Account Binding" />
        ),
        notification: (
          <FormattedMessage
            id="app.settings.menuMap.notification"
            defaultMessage="New Message Notification"
          />
        ),
      },
陈帅's avatar
陈帅 committed
35
    };
张秀玲's avatar
张秀玲 committed
36 37 38 39 40 41
    let key = location.pathname.replace(`${match.path}/`, '');
    const { menuMap } = this.state;
    key = menuMap[key] ? key : 'base';
    this.setState({
      selectKey: key,
    });
陈帅's avatar
陈帅 committed
42
  }
陈帅's avatar
陈帅 committed
43

qixian.cs@outlook.com's avatar
qixian.cs@outlook.com committed
44 45 46
  static getDerivedStateFromProps(props, state) {
    const { match, location } = props;
    let selectKey = location.pathname.replace(`${match.path}/`, '');
张秀玲's avatar
张秀玲 committed
47
    selectKey = state.menuMap[selectKey] ? selectKey : 'base';
qixian.cs@outlook.com's avatar
qixian.cs@outlook.com committed
48 49 50 51 52
    if (selectKey !== state.selectKey) {
      return { selectKey };
    }
    return null;
  }
陈帅's avatar
陈帅 committed
53

54 55 56 57 58 59 60 61 62
  componentDidMount() {
    window.addEventListener('resize', this.resize);
    this.resize();
  }

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

陈帅's avatar
陈帅 committed
63
  getmenu = () => {
张秀玲's avatar
张秀玲 committed
64
    const { menuMap } = this.state;
jim's avatar
jim committed
65
    return Object.keys(menuMap).map(item => <Item key={item}>{menuMap[item]}</Item>);
陈帅's avatar
陈帅 committed
66
  };
陈帅's avatar
陈帅 committed
67

陈帅's avatar
陈帅 committed
68
  getRightTitle = () => {
张秀玲's avatar
张秀玲 committed
69
    const { selectKey, menuMap } = this.state;
陈帅's avatar
陈帅 committed
70
    return menuMap[selectKey];
陈帅's avatar
陈帅 committed
71
  };
陈帅's avatar
陈帅 committed
72

陈帅's avatar
陈帅 committed
73
  selectKey = ({ key }) => {
zinkey's avatar
zinkey committed
74
    router.push(`/account/settings/${key}`);
陈帅's avatar
陈帅 committed
75 76 77 78
    this.setState({
      selectKey: key,
    });
  };
陈帅's avatar
陈帅 committed
79

jim's avatar
jim committed
80 81 82 83
  resize = () => {
    if (!this.main) {
      return;
    }
jim's avatar
jim committed
84 85 86 87 88 89 90 91 92 93 94 95
    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,
      });
jim's avatar
jim committed
96 97
    });
  };
陈帅's avatar
陈帅 committed
98

陈帅's avatar
陈帅 committed
99
  render() {
愚道's avatar
愚道 committed
100
    const { children, currentUser } = this.props;
陈帅's avatar
陈帅 committed
101 102 103
    if (!currentUser.userid) {
      return '';
    }
陈帅's avatar
陈帅 committed
104
    const { mode, selectKey } = this.state;
陈帅's avatar
陈帅 committed
105
    return (
jim's avatar
jim committed
106
      <GridContent>
jim's avatar
jim committed
107 108
        <div
          className={styles.main}
jim's avatar
jim committed
109
          ref={ref => {
jim's avatar
jim committed
110 111 112
            this.main = ref;
          }}
        >
jim's avatar
jim committed
113
          <div className={styles.leftmenu}>
陈帅's avatar
陈帅 committed
114
            <Menu mode={mode} selectedKeys={[selectKey]} onClick={this.selectKey}>
jim's avatar
jim committed
115 116 117 118 119
              {this.getmenu()}
            </Menu>
          </div>
          <div className={styles.right}>
            <div className={styles.title}>{this.getRightTitle()}</div>
愚道's avatar
愚道 committed
120
            {children}
jim's avatar
jim committed
121
          </div>
陈帅's avatar
陈帅 committed
122
        </div>
jim's avatar
jim committed
123
      </GridContent>
陈帅's avatar
陈帅 committed
124 125 126
    );
  }
}