ant-design/components/dropdown/dropdown.tsx

46 lines
1.3 KiB
TypeScript
Raw Normal View History

import React, { cloneElement } from 'react';
import RcDropdown from 'rc-dropdown';
import classNames from 'classnames';
2015-12-02 15:18:15 +08:00
export interface DropDownProps {
2016-12-19 15:19:15 +08:00
trigger?: ('click' | 'hover')[];
overlay: React.ReactNode;
style?: React.CSSProperties;
onVisibleChange?: (visible?: boolean) => void;
2016-08-24 16:09:55 +08:00
visible?: boolean;
align?: Object;
getPopupContainer?: (triggerNode: Element) => HTMLElement;
prefixCls?: string;
placement?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
}
export default class Dropdown extends React.Component<DropDownProps, any> {
2016-08-24 16:09:55 +08:00
static Button: React.ReactNode;
static defaultProps = {
prefixCls: 'ant-dropdown',
mouseEnterDelay: 0.15,
mouseLeaveDelay: 0.1,
placement: 'bottomLeft',
2016-07-13 11:14:24 +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() {
const { children, prefixCls } = this.props;
const dropdownTrigger = cloneElement(children as any, {
className: classNames((children as any).props.className, `${prefixCls}-trigger`),
});
return (
<RcDropdown transitionName={this.getTransitionName()} {...this.props}>
{dropdownTrigger}
</RcDropdown>
);
2015-12-02 15:18:15 +08:00
}
}