You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.0 KiB
88 lines
2.0 KiB
import React from 'react';
|
|
import Menu from 'rc-menu';
|
|
import animation from '../common/openAnimation';
|
|
|
|
function noop() {
|
|
}
|
|
|
|
const AntMenu = React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-menu',
|
|
onClick: noop,
|
|
onOpen: noop,
|
|
onClose: noop,
|
|
className: '',
|
|
theme: 'light', // or dark
|
|
};
|
|
},
|
|
getInitialState() {
|
|
return {
|
|
openKeys: []
|
|
};
|
|
},
|
|
handleClick(e) {
|
|
this.setState({
|
|
openKeys: []
|
|
});
|
|
this.props.onClick(e);
|
|
},
|
|
handleOpenKeys(e) {
|
|
this.setState({
|
|
openKeys: e.openKeys
|
|
});
|
|
this.props.onOpen(e);
|
|
},
|
|
handleCloseKeys(e) {
|
|
this.setState({
|
|
openKeys: e.openKeys
|
|
});
|
|
this.props.onClose(e);
|
|
},
|
|
render() {
|
|
let openAnimation = this.props.openAnimation || this.props.openTransitionName;
|
|
if (!openAnimation) {
|
|
switch (this.props.mode) {
|
|
case 'horizontal':
|
|
openAnimation = 'slide-up';
|
|
break;
|
|
case 'vertical':
|
|
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,
|
|
onOpen: this.handleOpenKeys,
|
|
onClose: this.handleCloseKeys,
|
|
openTransitionName: openAnimation,
|
|
className,
|
|
};
|
|
} else {
|
|
props = {
|
|
openAnimation,
|
|
className,
|
|
};
|
|
}
|
|
return <Menu {...this.props} {...props} />;
|
|
}
|
|
});
|
|
|
|
AntMenu.Divider = Menu.Divider;
|
|
AntMenu.Item = Menu.Item;
|
|
AntMenu.SubMenu = Menu.SubMenu;
|
|
AntMenu.ItemGroup = Menu.ItemGroup;
|
|
|
|
export default AntMenu;
|
|
|