2016-12-03 17:31:04 +08:00
|
|
|
import React, { cloneElement } from 'react';
|
2016-03-18 10:31:25 +08:00
|
|
|
import RcDropdown from 'rc-dropdown';
|
2016-12-03 17:31:04 +08:00
|
|
|
import classNames from 'classnames';
|
2015-12-02 15:18:15 +08:00
|
|
|
|
2016-08-11 15:38:03 +08:00
|
|
|
export interface DropDownProps {
|
2016-12-19 15:19:15 +08:00
|
|
|
trigger?: ('click' | 'hover')[];
|
2016-08-11 15:38:03 +08:00
|
|
|
overlay: React.ReactNode;
|
2016-08-19 16:43:32 +08:00
|
|
|
style?: React.CSSProperties;
|
2016-12-14 21:33:13 +08:00
|
|
|
onVisibleChange?: (visible?: boolean) => void;
|
2016-08-24 16:09:55 +08:00
|
|
|
visible?: boolean;
|
|
|
|
align?: Object;
|
2017-03-28 13:20:05 +08:00
|
|
|
getPopupContainer?: (triggerNode: Element) => HTMLElement;
|
2016-12-03 17:31:04 +08:00
|
|
|
prefixCls?: string;
|
2017-02-09 15:44:33 +08:00
|
|
|
placement?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
|
2016-08-11 15:38:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Dropdown extends React.Component<DropDownProps, any> {
|
2016-08-24 16:09:55 +08:00
|
|
|
static Button: React.ReactNode;
|
2016-03-29 14:01:10 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-dropdown',
|
|
|
|
mouseEnterDelay: 0.15,
|
|
|
|
mouseLeaveDelay: 0.1,
|
2017-02-09 15:44:33 +08:00
|
|
|
placement: 'bottomLeft',
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2017-02-09 15:44:33 +08:00
|
|
|
getTransitionName() {
|
|
|
|
const { placement = '' } = this.props;
|
|
|
|
if (placement.indexOf('top') >= 0) {
|
|
|
|
return 'slide-down';
|
|
|
|
}
|
|
|
|
return 'slide-up';
|
|
|
|
}
|
|
|
|
|
2016-01-05 14:42:06 +08:00
|
|
|
render() {
|
2016-12-03 17:31:04 +08:00
|
|
|
const { children, prefixCls } = this.props;
|
|
|
|
const dropdownTrigger = cloneElement(children as any, {
|
|
|
|
className: classNames((children as any).props.className, `${prefixCls}-trigger`),
|
|
|
|
});
|
|
|
|
return (
|
2017-02-09 15:44:33 +08:00
|
|
|
<RcDropdown transitionName={this.getTransitionName()} {...this.props}>
|
2016-12-03 17:31:04 +08:00
|
|
|
{dropdownTrigger}
|
|
|
|
</RcDropdown>
|
|
|
|
);
|
2015-12-02 15:18:15 +08:00
|
|
|
}
|
2016-03-18 10:31:25 +08:00
|
|
|
}
|