ant-design/components/menu/index.tsx

143 lines
3.7 KiB
TypeScript
Raw Normal View History

2016-07-07 20:25:03 +08:00
import * as React from 'react';
import RcMenu, { Item, Divider, SubMenu, ItemGroup } from 'rc-menu';
2016-06-01 12:08:08 +08:00
import animation from '../_util/openAnimation';
2015-08-06 16:49:54 +08:00
2015-11-05 14:18:46 +08:00
function noop() {
}
2016-09-13 15:31:29 +08:00
export interface SelectParam {
key: string;
keyPath: Array<string>;
item: any;
domEvent: any;
selectedKeys: Array<string>;
}
2016-09-13 15:31:29 +08:00
export interface ClickParam {
key: string;
keyPath: Array<string>;
item: any;
domEvent: any;
}
export interface MenuProps {
id?: string;
/** 主题颜色*/
theme?: 'light' | 'dark';
/** 菜单类型 enum: `vertical` `horizontal` `inline`*/
mode?: 'vertical' | 'horizontal' | 'inline';
/** 当前选中的菜单项 key 数组*/
selectedKeys?: Array<string>;
/** 初始选中的菜单项 key 数组*/
defaultSelectedKeys?: Array<string>;
/** 当前展开的菜单项 key 数组*/
openKeys?: Array<string>;
/** 初始展开的菜单项 key 数组*/
defaultOpenKeys?: Array<string>;
onOpenChange?: (openKeys: string[]) => void;
/**
*
*
* @type {(item: any, key: string, selectedKeys: Array<string>) => 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<MenuProps, any> {
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
2016-07-13 11:14:24 +08:00
};
switchModeFromInline: boolean;
constructor(props) {
super(props);
this.state = {
2016-05-07 16:06:02 +08:00
openKeys: [],
2015-08-06 16:49:54 +08:00
};
}
componentWillReceiveProps(nextProps) {
if (this.props.mode === 'inline' &&
nextProps.mode !== 'inline') {
this.switchModeFromInline = true;
}
2016-05-06 18:07:23 +08:00
if ('openKeys' in nextProps) {
2016-05-07 16:06:02 +08:00
this.setOpenKeys(nextProps.openKeys);
2016-05-06 18:07:23 +08:00
}
2016-04-27 17:44:25 +08:00
}
handleClick = (e) => {
2016-05-07 16:06:02 +08:00
this.setOpenKeys([]);
2015-11-05 19:09:33 +08:00
this.props.onClick(e);
}
handleOpenChange = (openKeys: string[]) => {
2016-05-07 16:06:02 +08:00
this.setOpenKeys(openKeys);
this.props.onOpenChange(openKeys);
2016-05-07 16:06:02 +08:00
}
setOpenKeys(openKeys) {
2016-05-06 18:07:23 +08:00
if (!('openKeys' in this.props)) {
this.setState({ openKeys });
}
}
2015-08-24 18:18:46 +08:00
render() {
let openAnimation = this.props.openAnimation || this.props.openTransitionName;
if (!openAnimation) {
switch (this.props.mode) {
2016-01-21 22:45:21 +08:00
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';
}
2016-01-21 22:45:21 +08:00
break;
case 'inline':
openAnimation = animation;
break;
default:
}
2015-08-24 18:18:46 +08:00
}
2015-11-12 14:57:54 +08:00
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,
};
2015-08-24 18:18:46 +08:00
} else {
props = {
openAnimation,
className,
};
2015-08-24 18:18:46 +08:00
}
return <RcMenu {...this.props} {...props} />;
2015-08-06 16:49:54 +08:00
}
}