// 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 { Link } from 'react-router-dom'; import { inject, observer } from 'mobx-react'; import { toJS } from 'mobx'; import classnames from 'classnames'; import logoSmall from 'asset/image/logo-small.svg'; import logoExtend from 'asset/image/logo-extend.svg'; import styles from './index.less'; const { SubMenu } = Menu; export class LayoutMenu extends Component { constructor(props) { super(props); this.state = { collapsed: false, hover: false, openKeys: [], }; } get menu() { return this.props.menu || []; } get isAdminPage() { return this.props.isAdminPage || false; } getUrl(path, adminStr) { return this.isAdminPage ? `${path}${adminStr || '-admin'}` : path; } get rootStore() { return this.props.rootStore; } onCollapse = (collapsed) => { this.setState({ collapsed }); }; getImage(isExtend) { return !isExtend ? logoSmall : logoExtend; } 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 (className.indexOf('trigger') < 0) { this.setState({ hover: true, }); } } }; onMouseLeave = () => { const { hover } = this.state; if (hover) { this.setState({ hover: false, }); } }; renderMenuItem = (item) => { const { collapsed, hover } = this.state; if (collapsed && !hover) { return (