|
|
@@ -1,14 +1,12 @@
|
|
|
import React, { PureComponent } from 'react';
|
|
|
-import { Layout, Menu, Icon } from 'antd';
|
|
|
+import { Layout } from 'antd';
|
|
|
import pathToRegexp from 'path-to-regexp';
|
|
|
import { Link } from 'dva/router';
|
|
|
-import { FormattedMessage } from 'umi/locale';
|
|
|
import styles from './index.less';
|
|
|
import BaseMenu, { getMenuMatches } from './BaseMenu';
|
|
|
import { urlToList } from '../_utils/pathTools';
|
|
|
|
|
|
const { Sider } = Layout;
|
|
|
-const { SubMenu } = Menu;
|
|
|
|
|
|
/**
|
|
|
* 获得菜单子节点
|
|
|
@@ -26,20 +24,6 @@ const getDefaultCollapsedSubMenus = props => {
|
|
|
.filter(item => item);
|
|
|
};
|
|
|
|
|
|
-// Allow menu.js config icon as string or ReactNode
|
|
|
-// icon: 'setting',
|
|
|
-// icon: 'http://demo.com/icon.png',
|
|
|
-// icon: <Icon type="setting" />,
|
|
|
-const getIcon = icon => {
|
|
|
- if (typeof icon === 'string' && icon.indexOf('http') === 0) {
|
|
|
- return <img src={icon} alt="icon" className={`${styles.icon} sider-menu-item-img`} />;
|
|
|
- }
|
|
|
- if (typeof icon === 'string') {
|
|
|
- return <Icon type={icon} />;
|
|
|
- }
|
|
|
- return icon;
|
|
|
-};
|
|
|
-
|
|
|
/**
|
|
|
* Recursively flatten the data
|
|
|
* [{path:string},{path:string}] => {path,path2}
|
|
|
@@ -85,140 +69,6 @@ export default class SiderMenu extends PureComponent {
|
|
|
}
|
|
|
return null;
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * Convert pathname to openKeys
|
|
|
- * /list/search/articles = > ['list','/list/search']
|
|
|
- * @param props
|
|
|
- */
|
|
|
- getDefaultCollapsedSubMenus(props) {
|
|
|
- const {
|
|
|
- location: { pathname },
|
|
|
- } =
|
|
|
- props || this.props;
|
|
|
- return getMenuMatchKeys(this.flatMenuKeys, urlToList(pathname));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 判断是否是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, locale } = item;
|
|
|
- // Is it a http link
|
|
|
- if (/^https?:\/\//.test(itemPath)) {
|
|
|
- return (
|
|
|
- <a href={itemPath} target={target}>
|
|
|
- {icon}
|
|
|
- <span>
|
|
|
- <FormattedMessage id={locale} defaultMessage={name} />
|
|
|
- </span>
|
|
|
- </a>
|
|
|
- );
|
|
|
- }
|
|
|
- const { pathname, isMobile, onCollapse } = this.props;
|
|
|
- return (
|
|
|
- <Link
|
|
|
- to={itemPath}
|
|
|
- target={target}
|
|
|
- replace={itemPath === pathname}
|
|
|
- onClick={
|
|
|
- isMobile
|
|
|
- ? () => {
|
|
|
- onCollapse(true);
|
|
|
- }
|
|
|
- : undefined
|
|
|
- }
|
|
|
- >
|
|
|
- {icon}
|
|
|
- <span>
|
|
|
- <FormattedMessage id={locale} defaultMessage={name} />
|
|
|
- </span>
|
|
|
- </Link>
|
|
|
- );
|
|
|
- };
|
|
|
-
|
|
|
- /**
|
|
|
- * get SubMenu or Item
|
|
|
- */
|
|
|
- getSubMenuOrItem = item => {
|
|
|
- if (item.children && item.children.some(child => child.name)) {
|
|
|
- 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>
|
|
|
- ) : (
|
|
|
- <FormattedMessage id={item.locale} defaultMessage={item.name} />
|
|
|
- )
|
|
|
- }
|
|
|
- key={item.path}
|
|
|
- >
|
|
|
- {childrenItems}
|
|
|
- </SubMenu>
|
|
|
- );
|
|
|
- }
|
|
|
- return null;
|
|
|
- } else {
|
|
|
- return <Menu.Item key={item.path}>{this.getMenuItemPath(item)}</Menu.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 getMenuMatchKeys(this.flatMenuKeys, urlToList(pathname));
|
|
|
- };
|
|
|
-
|
|
|
- // conversion Path
|
|
|
- // 转化路径
|
|
|
- conversionPath = path => {
|
|
|
- if (path && path.indexOf('http') === 0) {
|
|
|
- return path;
|
|
|
- } else {
|
|
|
- return `/${path || ''}`.replace(/\/+/g, '/');
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- // permission to check
|
|
|
- checkPermissionItem = (authority, ItemDom) => {
|
|
|
- const { Authorized } = this.props;
|
|
|
- if (Authorized && Authorized.check) {
|
|
|
- const { check } = Authorized;
|
|
|
- return check(authority, ItemDom);
|
|
|
- }
|
|
|
- return ItemDom;
|
|
|
- };
|
|
|
-
|
|
|
isMainMenu = key => {
|
|
|
const { menuData } = this.props;
|
|
|
return menuData.some(item => {
|
|
|
@@ -228,14 +78,12 @@ export default class SiderMenu extends PureComponent {
|
|
|
return false;
|
|
|
});
|
|
|
};
|
|
|
-
|
|
|
handleOpenChange = openKeys => {
|
|
|
const moreThanOne = openKeys.filter(openKey => this.isMainMenu(openKey)).length > 1;
|
|
|
this.setState({
|
|
|
openKeys: moreThanOne ? [openKeys.pop()] : [...openKeys],
|
|
|
});
|
|
|
};
|
|
|
-
|
|
|
render() {
|
|
|
const { logo, collapsed, onCollapse, fixSiderbar, theme } = this.props;
|
|
|
const { openKeys } = this.state;
|