SiderMenu.js 6.41 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
/**
 * Recursively flatten the data
 * [{path:string},{path:string}] => {path,path2}
 * @param  menu
 */
export const getFlatMenuKeys = menu =>
31 32 33 34 35 36 37 38
  menu
    .reduce((keys, item) => {
      keys.push(item.path);
      if (item.children) {
        return keys.concat(getFlatMenuKeys(item.children));
      }
      return keys;
    }, []);
39 40 41 42 43 44

/**
 * Find all matched menu keys based on paths
 * @param  flatMenuKeys: [/abc, /abc/:id, /abc/:id/info]
 * @param  paths: [/abc, /abc/11, /abc/11/info]
 */
歀去's avatar
歀去 committed
45
export const getMenuMatchKeys = (flatMenuKeys, paths) =>
46 47 48 49 50
  paths
    .reduce((matchKeys, path) => (
      matchKeys.concat(
        flatMenuKeys.filter(item => pathToRegexp(item).test(path))
    )), []);
51

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