import React, { PureComponent } from 'react'; import { Layout, Menu, Icon } from 'antd'; import { Link } from 'dva/router'; import logo from '../../assets/logo.svg'; import styles from './index.less'; const { Sider } = Layout; const { SubMenu } = Menu; export default class SiderMenu extends PureComponent { constructor(props) { super(props); // 把一级 Layout 的 children 作为菜单项 this.menus = props.navData.reduce((arr, current) => arr.concat(current.children), []); this.state = { openKeys: this.getDefaultCollapsedSubMenus(props), }; } onCollapse = (collapsed) => { this.props.dispatch({ type: 'global/changeLayoutCollapsed', payload: collapsed, }); } getDefaultCollapsedSubMenus(props) { const currentMenuSelectedKeys = [...this.getCurrentMenuSelectedKeys(props)]; currentMenuSelectedKeys.splice(-1, 1); if (currentMenuSelectedKeys.length === 0) { return ['dashboard']; } return currentMenuSelectedKeys; } getCurrentMenuSelectedKeys(props) { const { location: { pathname } } = props || this.props; const keys = pathname.split('/').slice(1); if (keys.length === 1 && keys[0] === '') { return [this.menus[0].key]; } return keys; } getNavMenuItems(menusData, parentPath = '') { if (!menusData) { return []; } return menusData.map((item) => { if (!item.name) { return null; } let itemPath; if (item.path.indexOf('http') === 0) { itemPath = item.path; } else { itemPath = `${parentPath}/${item.path || ''}`.replace(/\/+/g, '/'); } if (item.children && item.children.some(child => child.name)) { return ( {item.name} ) : item.name } key={item.key || item.path} > {this.getNavMenuItems(item.children, itemPath)} ); } const icon = item.icon && ; return ( { /^https?:\/\//.test(itemPath) ? ( {icon}{item.name} ) : ( {icon}{item.name} ) } ); }); } 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 { collapsed } = this.props; // Don't show popup menu when it is been collapsed const menuProps = collapsed ? {} : { openKeys: this.state.openKeys, }; return (
logo

Ant Design Pro

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