ant-design/components/dropdown/dropdown.tsx

37 lines
984 B
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?: () => HTMLElement;
prefixCls?: string;
}
export default class Dropdown extends React.Component<DropDownProps, any> {
2016-08-24 16:09:55 +08:00
static Button: React.ReactNode;
static defaultProps = {
transitionName: 'slide-up',
prefixCls: 'ant-dropdown',
mouseEnterDelay: 0.15,
mouseLeaveDelay: 0.1,
2016-07-13 11:14:24 +08:00
};
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 {...this.props}>
{dropdownTrigger}
</RcDropdown>
);
2015-12-02 15:18:15 +08:00
}
}