SiderMenu.js 6.38 KB
Newer Older
jiang's avatar
jiang committed
1 2
import React, { PureComponent } from 'react';
import { Layout, Menu, Icon } from 'antd';
3
import pathToRegexp from 'path-to-regexp';
jiang's avatar
jiang committed
4 5
import { Link } from 'dva/router';
import styles from './index.less';
jim's avatar
jim committed
6
import { urlToList } from '../_utils/pathTools';
jiang's avatar
jiang committed
7 8 9 10

const { Sider } = Layout;
const { SubMenu } = Menu;

11 12 13 14
// Allow menu.js config icon as string or ReactNode
//   icon: 'setting',
//   icon: 'http://demo.com/icon.png',
//   icon: <Icon type="setting" />,
jim's avatar
jim committed
15
const getIcon = icon => {
16
  if (typeof icon === 'string' && icon.indexOf('http') === 0) {
17
    return <img src={icon} alt="icon" className={`${styles.icon} sider-menu-item-img`} />;
18 19 20 21 22 23 24
  }
  if (typeof icon === 'string') {
    return <Icon type={icon} />;
  }
  return icon;
};

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
/**
 * Recursively flatten the data
 * [{path:string},{path:string}] => {path,path2}
 * @param  menu
 */
export const getFlatMenuKeys = menu =>
  menu.reduce((keys, item) => {
    keys.push(item.path);
    if (item.children) {
      return keys.concat(getFlatMenuKeys(item.children));
    }
    return keys;
  }, []);

/**
 * Find all matched menu keys based on paths
 * @param  flatMenuKeys: [/abc, /abc/:id, /abc/:id/info]
 * @param  paths: [/abc, /abc/11, /abc/11/info]
 */
export const getMeunMatchKeys = (flatMenuKeys, paths) =>
  paths.reduce(
    (matchKeys, path) =>
      matchKeys.concat(flatMenuKeys.filter(item => pathToRegexp(item).test(path))),
    []
  );
50

jiang's avatar
jiang committed
51 52 53
export default class SiderMenu extends PureComponent {
  constructor(props) {
    super(props);
ddcat1115's avatar
ddcat1115 committed
54
    this.menus = props.menuData;
55
    this.flatMenuKeys = getFlatMenuKeys(props.menuData);
jiang's avatar
jiang committed
56 57 58 59
    this.state = {
      openKeys: this.getDefaultCollapsedSubMenus(props),
    };
  }
60 61 62 63 64 65 66
  componentWillReceiveProps(nextProps) {
    if (nextProps.location.pathname !== this.props.location.pathname) {
      this.setState({
        openKeys: this.getDefaultCollapsedSubMenus(nextProps),
      });
    }
  }
67 68 69 70 71
  /**
   * Convert pathname to openKeys
   * /list/search/articles = > ['list','/list/search']
   * @param  props
   */
jiang's avatar
jiang committed
72 73
  getDefaultCollapsedSubMenus(props) {
    const { location: { pathname } } = props || this.props;
74
    return getMeunMatchKeys(this.flatMenuKeys, urlToList(pathname));
jiang's avatar
jiang committed
75
  }
76
  /**
77 78 79
   * εˆ€ζ–­ζ˜―ε¦ζ˜―httpι“ΎζŽ₯.θΏ”ε›ž Link ζˆ– a
   * Judge whether it is http link.return a or Link
   * @memberof SiderMenu
80
   */
jim's avatar
jim committed
81
  getMenuItemPath = item => {
ddcat1115's avatar
ddcat1115 committed
82 83 84 85 86 87 88
    const itemPath = this.conversionPath(item.path);
    const icon = getIcon(item.icon);
    const { target, name } = item;
    // Is it a http link
    if (/^https?:\/\//.test(itemPath)) {
      return (
        <a href={itemPath} target={target}>
89 90
          {icon}
          <span>{name}</span>
ddcat1115's avatar
ddcat1115 committed
91 92 93 94 95 96 97 98
        </a>
      );
    }
    return (
      <Link
        to={itemPath}
        target={target}
        replace={itemPath === this.props.location.pathname}
99 100 101 102 103 104 105
        onClick={
          this.props.isMobile
            ? () => {
                this.props.onCollapse(true);
              }
            : undefined
        }
ddcat1115's avatar
ddcat1115 committed
106
      >
107 108
        {icon}
        <span>{name}</span>
ddcat1115's avatar
ddcat1115 committed
109 110
      </Link>
    );
111
  };
ddcat1115's avatar
ddcat1115 committed
112 113 114
  /**
   * get SubMenu or Item
   */
jim's avatar
jim committed
115
  getSubMenuOrItem = item => {
ddcat1115's avatar
ddcat1115 committed
116
    if (item.children && item.children.some(child => child.name)) {
hzq's avatar
hzq committed
117 118 119 120 121 122 123 124 125 126 127 128
      const childrenItems = this.getNavMenuItems(item.children);
      // ε½“ζ— ε­θœε•ζ—Άε°±δΈε±•η€Ίθœε•
      if (childrenItems && childrenItems.length > 0) {
        return (
          <SubMenu
            title={
              item.icon ? (
                <span>
                  {getIcon(item.icon)}
                  <span>{item.name}</span>
                </span>
              ) : (
jim's avatar
jim committed
129 130
                item.name
              )
hzq's avatar
hzq committed
131 132 133 134 135
            }
            key={item.path}
          >
            {childrenItems}
          </SubMenu>
hzq's avatar
hzq committed
136
        );
hzq's avatar
hzq committed
137
      }
hzq's avatar
hzq committed
138
      return null;
ddcat1115's avatar
ddcat1115 committed
139
    } else {
jim's avatar
jim committed
140
      return <Menu.Item key={item.path}>{this.getMenuItemPath(item)}</Menu.Item>;
ddcat1115's avatar
ddcat1115 committed
141
    }
142
  };
ddcat1115's avatar
ddcat1115 committed
143
  /**
144 145 146
   * θŽ·εΎ—θœε•ε­θŠ‚η‚Ή
   * @memberof SiderMenu
   */
jim's avatar
jim committed
147
  getNavMenuItems = menusData => {
jiang's avatar
jiang committed
148 149 150
    if (!menusData) {
      return [];
    }
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
151 152
    return menusData
      .filter(item => item.name && !item.hideInMenu)
jim's avatar
jim committed
153
      .map(item => {
154
        // make dom
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
155 156 157
        const ItemDom = this.getSubMenuOrItem(item);
        return this.checkPermissionItem(item.authority, ItemDom);
      })
158 159 160 161 162
      .filter(item => item);
  };
  // Get the currently selected menu
  getSelectedMenuKeys = () => {
    const { location: { pathname } } = this.props;
163
    return getMeunMatchKeys(this.flatMenuKeys, urlToList(pathname));
164
  };
ddcat1115's avatar
ddcat1115 committed
165 166
  // conversion Path
  // θ½¬εŒ–θ·―εΎ„
jim's avatar
jim committed
167
  conversionPath = path => {
ddcat1115's avatar
ddcat1115 committed
168 169 170 171 172
    if (path && path.indexOf('http') === 0) {
      return path;
    } else {
      return `/${path || ''}`.replace(/\/+/g, '/');
    }
173
  };
ddcat1115's avatar
ddcat1115 committed
174 175 176 177
  // permission to check
  checkPermissionItem = (authority, ItemDom) => {
    if (this.props.Authorized && this.props.Authorized.check) {
      const { check } = this.props.Authorized;
178
      return check(authority, ItemDom);
ddcat1115's avatar
ddcat1115 committed
179 180
    }
    return ItemDom;
181
  };
jim's avatar
jim committed
182 183 184 185
  isMainMenu = key => {
    return this.menus.some(item => key && (item.key === key || item.path === key));
  };
  handleOpenChange = openKeys => {
ddcat1115's avatar
ddcat1115 committed
186 187
    const lastOpenKey = openKeys[openKeys.length - 1];
    const moreThanOne = openKeys.filter(openKey => this.isMainMenu(openKey)).length > 1;
jiang's avatar
jiang committed
188
    this.setState({
ddcat1115's avatar
ddcat1115 committed
189
      openKeys: moreThanOne ? [lastOpenKey] : [...openKeys],
jiang's avatar
jiang committed
190
    });
191
  };
jiang's avatar
jiang committed
192
  render() {
193
    const { logo, collapsed, onCollapse } = this.props;
194
    const { openKeys } = this.state;
jiang's avatar
jiang committed
195
    // Don't show popup menu when it is been collapsed
196 197 198
    const menuProps = collapsed
      ? {}
      : {
jim's avatar
jim committed
199 200
          openKeys,
        };
201
    // if pathname can't match, use the nearest parent's key
202
    let selectedKeys = this.getSelectedMenuKeys();
203 204 205
    if (!selectedKeys.length) {
      selectedKeys = [openKeys[openKeys.length - 1]];
    }
jiang's avatar
jiang committed
206 207 208 209 210
    return (
      <Sider
        trigger={null}
        collapsible
        collapsed={collapsed}
211
        breakpoint="lg"
jiang's avatar
jiang committed
212 213 214 215
        onCollapse={onCollapse}
        width={256}
        className={styles.sider}
      >
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
216
        <div className={styles.logo} key="logo">
jiang's avatar
jiang committed
217 218 219 220 221 222
          <Link to="/">
            <img src={logo} alt="logo" />
            <h1>Ant Design Pro</h1>
          </Link>
        </div>
        <Menu
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
223
          key="Menu"
jiang's avatar
jiang committed
224 225 226 227
          theme="dark"
          mode="inline"
          {...menuProps}
          onOpenChange={this.handleOpenChange}
228
          selectedKeys={selectedKeys}
jiang's avatar
jiang committed
229 230 231 232 233 234 235 236
          style={{ padding: '16px 0', width: '100%' }}
        >
          {this.getNavMenuItems(this.menus)}
        </Menu>
      </Sider>
    );
  }
}