ant-design/components/menu/index.tsx

202 lines
5.6 KiB
TypeScript
Raw Normal View History

2016-09-21 11:54:53 +08:00
import React from 'react';
2017-06-30 21:07:01 +08:00
import RcMenu, { Divider, SubMenu, ItemGroup } from 'rc-menu';
import PropTypes from 'prop-types';
2017-06-30 18:08:30 +08:00
import classNames from 'classnames';
2016-06-01 12:08:08 +08:00
import animation from '../_util/openAnimation';
import warning from '../_util/warning';
2017-06-30 21:07:01 +08:00
import Item from './MenuItem';
2015-08-06 16:49:54 +08:00
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;
/** `light` `dark` */
theme?: 'light' | 'dark';
/** enum: `vertical` `horizontal` `inline` */
mode?: 'vertical' | 'horizontal' | 'inline';
selectedKeys?: Array<string>;
defaultSelectedKeys?: Array<string>;
openKeys?: Array<string>;
defaultOpenKeys?: Array<string>;
onOpenChange?: (openKeys: string[]) => void;
onSelect?: (param: SelectParam) => void;
onDeselect?: (param: SelectParam) => void;
onClick?: (param: ClickParam) => void;
style?: React.CSSProperties;
openAnimation?: string | Object;
openTransitionName?: string | Object;
className?: string;
prefixCls?: string;
multiple?: boolean;
inlineIndent?: number;
2017-06-30 18:08:30 +08:00
inlineCollapsed?: boolean;
}
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',
className: '',
theme: 'light', // or dark
2016-07-13 11:14:24 +08:00
};
2017-06-30 21:07:01 +08:00
static childContextTypes = {
inlineCollapsed: PropTypes.bool,
};
static contextTypes = {
siderCollapsed: PropTypes.bool,
};
switchModeFromInline: boolean;
2017-06-30 18:08:30 +08:00
inlineOpenKeys = [];
constructor(props) {
super(props);
warning(
!('onOpen' in props || 'onClose' in props),
'`onOpen` and `onClose` are removed, please use `onOpenChange` instead, ' +
'see: https://u.ant.design/menu-on-open-change.',
);
warning(
!('inlineCollapsed' in props && props.mode !== 'inline'),
2017-06-30 22:05:53 +08:00
'`inlineCollapsed` should only be used when Menu\'s `mode` is inline.',
);
let openKeys;
if ('defaultOpenKeys' in props) {
openKeys = props.defaultOpenKeys;
} else if ('openKeys' in props) {
openKeys = props.openKeys;
}
this.state = {
openKeys: openKeys || [],
2015-08-06 16:49:54 +08:00
};
}
2017-06-30 21:07:01 +08:00
getChildContext() {
return {
inlineCollapsed: this.getInlineCollapsed(),
2017-06-30 21:07:01 +08:00
};
}
2017-06-30 22:00:04 +08:00
componentWillReceiveProps(nextProps, nextContext) {
if (this.props.mode === 'inline' &&
nextProps.mode !== 'inline') {
this.switchModeFromInline = true;
}
2017-06-30 22:00:04 +08:00
if ((nextProps.inlineCollapsed && !this.props.inlineCollapsed) ||
(nextContext.siderCollapsed && !this.context.siderCollapsed)) {
2017-06-30 18:08:30 +08:00
this.switchModeFromInline = true;
this.inlineOpenKeys = this.state.openKeys;
this.setOpenKeys([]);
2017-06-30 18:08:30 +08:00
}
2017-06-30 22:00:04 +08:00
if ((!nextProps.inlineCollapsed && this.props.inlineCollapsed) ||
(!nextContext.siderCollapsed && this.context.siderCollapsed)) {
this.setOpenKeys(this.inlineOpenKeys);
2017-06-30 18:08:30 +08:00
this.inlineOpenKeys = [];
}
2016-05-06 18:07:23 +08:00
if ('openKeys' in nextProps) {
this.setState({ openKeys: 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([]);
2016-10-24 12:04:26 +08:00
const { onClick } = this.props;
2016-10-24 12:04:26 +08:00
if (onClick) {
onClick(e);
}
}
handleOpenChange = (openKeys: string[]) => {
2016-05-07 16:06:02 +08:00
this.setOpenKeys(openKeys);
2016-10-24 12:04:26 +08:00
const { onOpenChange } = this.props;
2016-10-24 12:04:26 +08:00
if (onOpenChange) {
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 });
}
}
2017-06-30 18:08:30 +08:00
getRealMenuMode() {
const { mode } = this.props;
return this.getInlineCollapsed() ? 'vertical' : mode;
}
getInlineCollapsed() {
const { inlineCollapsed } = this.props;
2017-06-30 23:08:11 +08:00
if (this.context.siderCollapsed !== undefined) {
return this.context.siderCollapsed;
}
return inlineCollapsed;
2017-06-30 18:08:30 +08:00
}
getMenuOpenAnimation() {
const { openAnimation, openTransitionName } = this.props;
const menuMode = this.getRealMenuMode();
let menuOpenAnimation = openAnimation || openTransitionName;
if (openAnimation === undefined && openTransitionName === undefined) {
switch (menuMode) {
2016-01-21 22:45:21 +08:00
case 'horizontal':
2017-06-30 18:08:30 +08:00
menuOpenAnimation = 'slide-up';
2016-01-21 22:45:21 +08:00
break;
case 'vertical':
// When mode switch from inline
// submenu should hide without animation
if (this.switchModeFromInline) {
2017-06-30 18:08:30 +08:00
menuOpenAnimation = '';
this.switchModeFromInline = false;
} else {
2017-06-30 18:08:30 +08:00
menuOpenAnimation = 'zoom-big';
}
2016-01-21 22:45:21 +08:00
break;
case 'inline':
2017-06-30 18:08:30 +08:00
menuOpenAnimation = animation;
2016-01-21 22:45:21 +08:00
break;
default:
}
2015-08-24 18:18:46 +08:00
}
2017-06-30 18:08:30 +08:00
return menuOpenAnimation;
}
render() {
const { prefixCls, className, theme } = this.props;
2017-06-30 18:08:30 +08:00
const menuMode = this.getRealMenuMode();
const menuOpenAnimation = this.getMenuOpenAnimation();
const menuClassName = classNames(className, `${prefixCls}-${theme}`, {
[`${prefixCls}-inline-collapsed`]: this.getInlineCollapsed(),
2017-06-30 18:08:30 +08:00
});
2015-11-12 14:57:54 +08:00
2017-06-30 18:08:30 +08:00
const menuProps: MenuProps = {
openKeys: this.state.openKeys,
onOpenChange: this.handleOpenChange,
className: menuClassName,
mode: menuMode,
};
if (menuMode !== 'inline') {
// closing vertical popup submenu after click it
2017-06-30 18:08:30 +08:00
menuProps.onClick = this.handleClick;
menuProps.openTransitionName = menuOpenAnimation;
2015-08-24 18:18:46 +08:00
} else {
2017-06-30 18:08:30 +08:00
menuProps.openAnimation = menuOpenAnimation;
2015-08-24 18:18:46 +08:00
}
2017-06-30 18:08:30 +08:00
return <RcMenu {...this.props} {...menuProps} />;
2015-08-06 16:49:54 +08:00
}
}