import React, { PureComponent } from 'react'; import { Layout, Menu, Icon } from 'antd'; import pathToRegexp from 'path-to-regexp'; import { Link } from 'dva/router'; import styles from './index.less'; import { urlToList } from '../utils/pathTools'; const { Sider } = Layout; const { SubMenu } = Menu; // Allow menu.js config icon as string or ReactNode // icon: 'setting', // icon: 'http://demo.com/icon.png', // icon: , const getIcon = (icon) => { if (typeof icon === 'string' && icon.indexOf('http') === 0) { return icon; } if (typeof icon === 'string') { return ; } return icon; }; export const getMeunMatcheys = (flatMenuKeys, path) => { return flatMenuKeys.filter((item) => { return pathToRegexp(item).test(path); }); }; export default class SiderMenu extends PureComponent { constructor(props) { super(props); this.menus = props.menuData; this.flatMenuKeys = this.getFlatMenuKeys(props.menuData); this.state = { openKeys: this.getDefaultCollapsedSubMenus(props), }; } componentWillReceiveProps(nextProps) { if (nextProps.location.pathname !== this.props.location.pathname) { this.setState({ openKeys: this.getDefaultCollapsedSubMenus(nextProps), }); } } /** * Convert pathname to openKeys * /list/search/articles = > ['list','/list/search'] * @param props */ getDefaultCollapsedSubMenus(props) { const { location: { pathname } } = props || this.props; return urlToList(pathname) .map((item) => { return getMeunMatcheys(this.flatMenuKeys, item)[0]; }) .filter(item => item); } /** * Recursively flatten the data * [{path:string},{path:string}] => {path,path2} * @param menus */ getFlatMenuKeys(menus) { let keys = []; menus.forEach((item) => { if (item.children) { keys = keys.concat(this.getFlatMenuKeys(item.children)); } keys.push(item.path); }); return keys; } /** * 判断是否是http链接.返回 Link 或 a * Judge whether it is http link.return a or Link * @memberof SiderMenu */ getMenuItemPath = (item) => { 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 ( {icon} {name} ); } return ( { this.props.onCollapse(true); } : undefined } > {icon} {name} ); }; /** * get SubMenu or Item */ getSubMenuOrItem = (item) => { if (item.children && item.children.some(child => child.name)) { return ( {getIcon(item.icon)} {item.name} ) : ( item.name ) } key={item.path} > {this.getNavMenuItems(item.children)} ); } else { return ( {this.getMenuItemPath(item)} ); } }; /** * 获得菜单子节点 * @memberof SiderMenu */ getNavMenuItems = (menusData) => { if (!menusData) { return []; } return menusData .filter(item => item.name && !item.hideInMenu) .map((item) => { // make dom const ItemDom = this.getSubMenuOrItem(item); return this.checkPermissionItem(item.authority, ItemDom); }) .filter(item => item); }; // Get the currently selected menu getSelectedMenuKeys = () => { const { location: { pathname } } = this.props; return urlToList(pathname).map(itemPath => getMeunMatcheys(this.flatMenuKeys, itemPath).pop(), ); }; // conversion Path // 转化路径 conversionPath = (path) => { if (path && path.indexOf('http') === 0) { return path; } else { return `/${path || ''}`.replace(/\/+/g, '/'); } }; // permission to check checkPermissionItem = (authority, ItemDom) => { if (this.props.Authorized && this.props.Authorized.check) { const { check } = this.props.Authorized; return check(authority, ItemDom); } return ItemDom; }; handleOpenChange = (openKeys) => { const lastOpenKey = openKeys[openKeys.length - 1]; const isMainMenu = this.menus.some( item => lastOpenKey && (item.key === lastOpenKey || item.path === lastOpenKey), ); this.setState({ openKeys: isMainMenu ? [lastOpenKey] : [...openKeys], }); }; render() { const { logo, collapsed, onCollapse } = this.props; const { openKeys } = this.state; // Don't show popup menu when it is been collapsed const menuProps = collapsed ? {} : { openKeys, }; // if pathname can't match, use the nearest parent's key let selectedKeys = this.getSelectedMenuKeys(); if (!selectedKeys.length) { selectedKeys = [openKeys[openKeys.length - 1]]; } return (
logo

Ant Design Pro

{this.getNavMenuItems(this.menus)}
); } }