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.
37 lines
836 B
37 lines
836 B
import React from 'react';
|
|
import Menu from 'rc-menu';
|
|
import animation from '../common/openAnimation';
|
|
|
|
const AntMenu = React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-menu'
|
|
};
|
|
},
|
|
render() {
|
|
let openAnimation = '';
|
|
switch (this.props.mode) {
|
|
case 'horizontal':
|
|
openAnimation = 'slide-up';
|
|
break;
|
|
case 'vertical':
|
|
openAnimation = 'zoom-big';
|
|
break;
|
|
case 'inline':
|
|
openAnimation = animation;
|
|
break;
|
|
default:
|
|
}
|
|
if (this.props.mode === 'inline') {
|
|
return <Menu {...this.props} openAnimation={openAnimation} />;
|
|
} else {
|
|
return <Menu {...this.props} openTransitionName={openAnimation} />;
|
|
}
|
|
}
|
|
});
|
|
|
|
AntMenu.Divider = Menu.Divider;
|
|
AntMenu.Item = Menu.Item;
|
|
AntMenu.SubMenu = Menu.SubMenu;
|
|
|
|
export default AntMenu;
|
|
|