import * as React from 'react'; import RcMenu, { Item, Divider, SubMenu, ItemGroup } from 'rc-menu'; import animation from '../_util/openAnimation'; import warning from 'warning'; function noop() { } export interface SelectParam { key: string; keyPath: Array; item: any; domEvent: any; selectedKeys: Array; } export interface ClickParam { key: string; keyPath: Array; item: any; domEvent: any; } export interface MenuProps { id?: string; /** 主题颜色*/ theme?: 'light' | 'dark'; /** 菜单类型 enum: `vertical` `horizontal` `inline`*/ mode?: 'vertical' | 'horizontal' | 'inline'; /** 当前选中的菜单项 key 数组*/ selectedKeys?: Array; /** 初始选中的菜单项 key 数组*/ defaultSelectedKeys?: Array; /** 当前展开的菜单项 key 数组*/ openKeys?: Array; /** 初始展开的菜单项 key 数组*/ defaultOpenKeys?: Array; onOpenChange?: (openKeys: string[]) => void; /** * 被选中时调用 * * @type {(item: any, key: string, selectedKeys: Array) => void} */ onSelect?: (param: SelectParam) => void; /** 取消选中时调用*/ onDeselect?: (param: SelectParam) => void; /** 点击 menuitem 调用此函数*/ onClick?: (param: ClickParam) => void; /** 根节点样式*/ style?: React.CSSProperties; openAnimation?: string | Object; openTransitionName?: string | Object; className?: string; prefixCls?: string; } export default class Menu extends React.Component { static Divider = Divider; static Item = Item; static SubMenu = SubMenu; static ItemGroup = ItemGroup; static defaultProps = { prefixCls: 'ant-menu', onClick: noop, onOpenChange: noop, className: '', theme: 'light', // or dark }; switchModeFromInline: boolean; constructor(props) { super(props); warning( !('onOpen' in props || 'onClose' in props), '`onOpen` and `onClose` are removed, please use `onOpenChange` instead.' ); this.state = { openKeys: [], }; } componentWillReceiveProps(nextProps) { if (this.props.mode === 'inline' && nextProps.mode !== 'inline') { this.switchModeFromInline = true; } if ('openKeys' in nextProps) { this.setOpenKeys(nextProps.openKeys); } } handleClick = (e) => { this.setOpenKeys([]); this.props.onClick(e); } handleOpenChange = (openKeys: string[]) => { this.setOpenKeys(openKeys); this.props.onOpenChange(openKeys); } setOpenKeys(openKeys) { if (!('openKeys' in this.props)) { this.setState({ openKeys }); } } render() { let openAnimation = this.props.openAnimation || this.props.openTransitionName; if (!openAnimation) { switch (this.props.mode) { case 'horizontal': openAnimation = 'slide-up'; break; case 'vertical': // When mode switch from inline // submenu should hide without animation if (this.switchModeFromInline) { openAnimation = ''; this.switchModeFromInline = false; } else { openAnimation = 'zoom-big'; } break; case 'inline': openAnimation = animation; break; default: } } let props = {}; const className = `${this.props.className} ${this.props.prefixCls}-${this.props.theme}`; if (this.props.mode !== 'inline') { // 这组属性的目的是 // 弹出型的菜单需要点击后立即关闭 // 另外,弹出型的菜单的受控模式没有使用场景 props = { openKeys: this.state.openKeys, onClick: this.handleClick, onOpenChange: this.handleOpenChange, openTransitionName: openAnimation, className, }; } else { props = { openAnimation, className, }; } return ; } }