// Copyright 2021 99cloud // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import React, { Component } from 'react'; import { Menu, Tooltip } from 'antd'; import { MenuFoldOutlined, MenuUnfoldOutlined } from '@ant-design/icons'; import { inject, observer } from 'mobx-react'; import { toJS } from 'mobx'; import { isString, isEqual } from 'lodash'; import classnames from 'classnames'; import { getPath } from 'utils/route-map'; import i18n from 'core/i18n'; import styles from './index.less'; const { SubMenu } = Menu; const { getLocaleShortName } = i18n; export class LayoutMenu extends Component { constructor(props) { super(props); this.state = { collapsed: false, hover: false, openKeys: [], }; const shortName = getLocaleShortName(); this.maxTitleLength = shortName === 'zh' ? 9 : 17; } componentDidMount() { this.init(); } componentDidUpdate(prevProps) { const { pathname } = this.props; const { pathname: prevPathname } = prevProps; if (prevPathname && pathname !== prevPathname) { this.updateOpenKeysByRoute(); } } get menu() { return this.props.menu || []; } get isAdminPage() { return this.props.isAdminPage || false; } getRouteName(routeName) { return this.isAdminPage ? `${routeName}Admin` : routeName; } getRoutePath(routeName, params = {}, query = {}) { const realName = this.getRouteName(routeName); return getPath({ key: realName, params, query }); } getOpenKeysByRoute() { const { currentRoutes } = this.props; const selectedKeys = this.getSelectedKeys(currentRoutes); const currentOpenKeys = this.getCurrentOpenKeys(selectedKeys); return currentOpenKeys; } get rootStore() { return this.props.rootStore; } get routing() { return this.props.rootStore.routing; } onCollapse = (collapsed) => { this.setState({ collapsed }); }; changeCollapse = () => { const { collapsed } = this.state; this.setState({ collapsed: !collapsed, hover: false, }); const { onCollapseChange } = this.props; onCollapseChange && onCollapseChange(!collapsed); }; onMouseEnter = (e) => { const { collapsed } = this.state; if (collapsed) { const target = (e && e.target) || null; const className = target ? target.className || '' : ''; if (isString(className) && !className.includes('trigger')) { this.setState({ hover: true, }); } } }; onMouseLeave = () => { const { hover } = this.state; if (hover) { this.setState({ hover: false, }); } }; onClickMenuItem = ({ key }) => { const path = getPath({ key }); const { pathname } = this.props; if (pathname !== path) { this.routing.push(path); } }; // eslint-disable-next-line no-unused-vars renderMenuItemIcon = ({ item, collapsed, isSubMenu }) => { return item.icon; }; renderMenuItem = (item, isSubMenu) => { const { collapsed, hover } = this.state; if (collapsed && !hover) { return (