You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
984 B
36 lines
984 B
import React, { cloneElement } from 'react';
|
|
import RcDropdown from 'rc-dropdown';
|
|
import classNames from 'classnames';
|
|
|
|
export interface DropDownProps {
|
|
trigger?: ('click' | 'hover')[];
|
|
overlay: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
onVisibleChange?: (visible?: boolean) => void;
|
|
visible?: boolean;
|
|
align?: Object;
|
|
getPopupContainer?: () => HTMLElement;
|
|
prefixCls?: string;
|
|
}
|
|
|
|
export default class Dropdown extends React.Component<DropDownProps, any> {
|
|
static Button: React.ReactNode;
|
|
static defaultProps = {
|
|
transitionName: 'slide-up',
|
|
prefixCls: 'ant-dropdown',
|
|
mouseEnterDelay: 0.15,
|
|
mouseLeaveDelay: 0.1,
|
|
};
|
|
|
|
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>
|
|
);
|
|
}
|
|
}
|
|
|