import React, { PureComponent } from 'react';
import { Layout, Menu, Icon } from 'antd';
import { Link } from 'dva/router';
import styles from './index.less';
import BaseMenu, { getMenuMatches } from './BaseMenu';
import { urlToList } from '../_utils/pathTools';
const { Sider } = Layout;
const { SubMenu } = Menu;
/**
* 获得菜单子节点
* @memberof SiderMenu
*/
const getDefaultCollapsedSubMenus = props => {
const { location: { pathname } } = props;
return urlToList(pathname)
.map(item => {
return getMenuMatches(props.flatMenuKeys, item)[0];
})
.filter(item => item);
};
// 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 ;
}
if (typeof icon === 'string') {
return ;
}
return icon;
};
export default class SiderMenu extends PureComponent {
static getDerivedStateFromProps(nextProps) {
return {
openKeys: getDefaultCollapsedSubMenus(nextProps),
};
}
constructor(props) {
super(props);
this.state = {
openKeys: getDefaultCollapsedSubMenus(props),
};
}
/**
* Convert pathname to openKeys
* /list/search/articles = > ['list','/list/search']
* @param props
* 判断是否是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)) {
const childrenItems = this.getNavMenuItems(item.children);
// 当无子菜单时就不展示菜单
if (childrenItems && childrenItems.length > 0) {
return (
{getIcon(item.icon)}
{item.name}
) : (
item.name
)
}
key={item.path}
>
{childrenItems}
);
}
return null;
} else {
return
{this.getMenuItemPath(item)};
}
};
isMainMenu = key => {
return this.props.menuData.some(item => key && (item.key === key || item.path === key));
};
handleOpenChange = openKeys => {
const lastOpenKey = openKeys[openKeys.length - 1];
const moreThanOne = openKeys.filter(openKey => this.isMainMenu(openKey)).length > 1;
this.setState({
openKeys: moreThanOne ? [lastOpenKey] : [...openKeys],
});
};
render() {
const { logo, collapsed, onCollapse, theme } = this.props;
const { openKeys } = this.state;
const defaultProps = collapsed ? {} : { openKeys };
return (
Ant Design Pro
);
}
}