2017-11-17 14:38:54 +08:00
|
|
|
import * as React 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';
|
2017-06-09 18:37:05 +08:00
|
|
|
import DropdownButton from './dropdown-button';
|
2017-05-11 16:50:22 +08:00
|
|
|
import warning from '../_util/warning';
|
2015-12-02 15:18:15 +08:00
|
|
|
|
2016-08-11 15:38:03 +08:00
|
|
|
export interface DropDownProps {
|
2017-12-31 18:21:06 +08:00
|
|
|
trigger?: ('click' | 'hover'| 'contextMenu')[];
|
2016-08-11 15:38:03 +08:00
|
|
|
overlay: React.ReactNode;
|
2016-12-14 21:33:13 +08:00
|
|
|
onVisibleChange?: (visible?: boolean) => void;
|
2016-08-24 16:09:55 +08:00
|
|
|
visible?: boolean;
|
2017-08-11 23:55:36 +08:00
|
|
|
disabled?: boolean;
|
2016-08-24 16:09:55 +08:00
|
|
|
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-08-29 13:27:38 +08:00
|
|
|
className?: string;
|
2017-02-09 15:44:33 +08:00
|
|
|
placement?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
|
2017-12-03 19:09:39 +08:00
|
|
|
forceRender?: boolean;
|
2016-08-11 15:38:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Dropdown extends React.Component<DropDownProps, any> {
|
2017-06-09 18:37:05 +08:00
|
|
|
static Button: typeof DropdownButton;
|
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';
|
|
|
|
}
|
|
|
|
|
2017-05-11 14:57:29 +08:00
|
|
|
componentDidMount() {
|
|
|
|
const { overlay } = this.props;
|
|
|
|
const overlayProps = (overlay as any).props as any;
|
|
|
|
warning(
|
|
|
|
!overlayProps.mode || overlayProps.mode === 'vertical',
|
|
|
|
`mode="${overlayProps.mode}" is not supported for Dropdown\'s Menu.`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-01-05 14:42:06 +08:00
|
|
|
render() {
|
2017-08-11 23:55:36 +08:00
|
|
|
const { children, prefixCls, overlay, trigger, disabled } = this.props;
|
2017-11-17 14:38:54 +08:00
|
|
|
const dropdownTrigger = React.cloneElement(children as any, {
|
2016-12-03 17:31:04 +08:00
|
|
|
className: classNames((children as any).props.className, `${prefixCls}-trigger`),
|
2017-08-11 23:55:36 +08:00
|
|
|
disabled,
|
2016-12-03 17:31:04 +08:00
|
|
|
});
|
2017-08-29 19:55:09 +08:00
|
|
|
// menu cannot be selectable in dropdown defaultly
|
|
|
|
const overlayProps = overlay && (overlay as any).props;
|
|
|
|
const selectable = (overlayProps && 'selectable' in overlayProps)
|
|
|
|
? overlayProps.selectable : false;
|
2017-11-17 14:38:54 +08:00
|
|
|
const fixedModeOverlay = React.cloneElement(overlay as any, {
|
2017-05-11 14:57:29 +08:00
|
|
|
mode: 'vertical',
|
2017-08-29 19:55:09 +08:00
|
|
|
selectable,
|
2017-05-11 14:57:29 +08:00
|
|
|
});
|
2016-12-03 17:31:04 +08:00
|
|
|
return (
|
2017-05-11 14:57:29 +08:00
|
|
|
<RcDropdown
|
2017-08-16 17:56:07 +08:00
|
|
|
{...this.props}
|
2017-05-11 14:57:29 +08:00
|
|
|
transitionName={this.getTransitionName()}
|
2017-08-11 23:55:36 +08:00
|
|
|
trigger={disabled ? [] : trigger}
|
2017-05-11 14:57:29 +08:00
|
|
|
overlay={fixedModeOverlay}
|
|
|
|
>
|
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
|
|
|
}
|