Info.js 3.24 KB
Newer Older
jim's avatar
jim committed
1
import React, { Component } from 'react';
陈帅's avatar
陈帅 committed
2 3 4 5
import { connect } from 'dva';
import { Route, routerRedux, Switch, Redirect } from 'dva/router';
import { Menu } from 'antd';
import styles from './Info.less';
jim's avatar
jim committed
6 7
import { getRoutes } from '../../../utils/utils';
import GridContent from '../../../layouts/GridContent';
陈帅's avatar
陈帅 committed
8 9 10 11 12

const { Item } = Menu;

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

@connect(({ user }) => ({
  currentUser: user.currentUser,
}))
jim's avatar
jim committed
21
export default class Info extends Component {
陈帅's avatar
陈帅 committed
22 23 24 25 26 27 28
  constructor(props) {
    super(props);
    const { match, location } = props;
    let key = location.pathname.replace(`${match.path}/`, '');
    key = menuMap[key] ? key : 'base';
    this.state = {
      selectKey: key,
jim's avatar
jim committed
29
      mode: 'inline',
陈帅's avatar
陈帅 committed
30 31
    };
  }
qixian.cs@outlook.com's avatar
qixian.cs@outlook.com committed
32 33 34 35 36 37 38 39 40
  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;
  }
jim's avatar
jim committed
41 42 43 44 45 46 47
  componentDidMount() {
    window.addEventListener('resize', this.resize);
    this.resize();
  }
  componentWillUnmount() {
    window.removeEventListener('resize', this.resize);
  }
陈帅's avatar
陈帅 committed
48
  getmenu = () => {
jim's avatar
jim committed
49
    return Object.keys(menuMap).map(item => <Item key={item}>{menuMap[item]}</Item>);
陈帅's avatar
陈帅 committed
50 51 52 53 54
  };
  getRightTitle = () => {
    return menuMap[this.state.selectKey];
  };
  selectKey = ({ key }) => {
ddcat1115's avatar
ddcat1115 committed
55
    this.props.dispatch(routerRedux.push(`/account/settings/${key}`));
陈帅's avatar
陈帅 committed
56 57 58 59
    this.setState({
      selectKey: key,
    });
  };
jim's avatar
jim committed
60 61 62 63
  resize = () => {
    if (!this.main) {
      return;
    }
jim's avatar
jim committed
64 65 66 67 68 69 70 71 72 73 74 75
    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
76 77
    });
  };
陈帅's avatar
陈帅 committed
78 79 80 81 82 83
  render() {
    const { match, routerData, currentUser } = this.props;
    if (!currentUser.userid) {
      return '';
    }
    return (
jim's avatar
jim committed
84
      <GridContent>
jim's avatar
jim committed
85 86
        <div
          className={styles.main}
jim's avatar
jim committed
87
          ref={ref => {
jim's avatar
jim committed
88 89 90
            this.main = ref;
          }}
        >
jim's avatar
jim committed
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
          <div className={styles.leftmenu}>
            <Menu
              mode={this.state.mode}
              selectedKeys={[this.state.selectKey]}
              onClick={this.selectKey}
            >
              {this.getmenu()}
            </Menu>
          </div>
          <div className={styles.right}>
            <div className={styles.title}>{this.getRightTitle()}</div>
            <Switch>
              {getRoutes(match.path, routerData).map(item => (
                <Route
                  key={item.key}
                  path={item.path}
jim's avatar
jim committed
107
                  render={props => <item.component {...props} currentUser={currentUser} />}
jim's avatar
jim committed
108 109 110
                  exact={item.exact}
                />
              ))}
jim's avatar
jim committed
111
              <Redirect exact from="/account/settings" to="/account/settings/base" />
jim's avatar
jim committed
112 113 114
              <Redirect to="/exception/404" />
            </Switch>
          </div>
陈帅's avatar
陈帅 committed
115
        </div>
jim's avatar
jim committed
116
      </GridContent>
陈帅's avatar
陈帅 committed
117 118 119
    );
  }
}