ant-design/components/dropdown/dropdown.tsx

25 lines
583 B
TypeScript
Raw Normal View History

2016-07-07 20:25:03 +08:00
import * as React from 'react';
import RcDropdown from 'rc-dropdown';
2016-06-22 13:18:43 +08:00
import splitObject from '../_util/splitObject';
2015-12-02 15:18:15 +08:00
export default class Dropdown extends React.Component {
static defaultProps = {
transitionName: 'slide-up',
prefixCls: 'ant-dropdown',
mouseEnterDelay: 0.15,
mouseLeaveDelay: 0.1,
}
2016-01-05 14:42:06 +08:00
render() {
2016-06-22 13:18:43 +08:00
const [{overlay}, others] = splitObject(this.props,
['overlay']);
const menu = React.cloneElement(overlay, {
openTransitionName: 'zoom-big',
});
2015-12-02 15:18:15 +08:00
return (
2016-06-22 13:18:43 +08:00
<RcDropdown {...others} overlay={menu} />
2015-12-02 15:18:15 +08:00
);
}
}