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';
|
2018-12-05 19:12:18 +08:00
|
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
2017-05-11 16:50:22 +08:00
|
|
|
import warning from '../_util/warning';
|
2018-08-24 11:51:52 +08:00
|
|
|
import Icon from '../icon';
|
2018-12-22 21:21:42 +08:00
|
|
|
import { tuple } from '../_util/type';
|
2015-12-02 15:18:15 +08:00
|
|
|
|
2018-12-22 21:21:42 +08:00
|
|
|
const Placements = tuple(
|
|
|
|
'topLeft',
|
|
|
|
'topCenter',
|
|
|
|
'topRight',
|
|
|
|
'bottomLeft',
|
|
|
|
'bottomCenter',
|
|
|
|
'bottomRight',
|
|
|
|
);
|
|
|
|
type Placement = (typeof Placements)[number];
|
2018-12-28 20:27:42 +08:00
|
|
|
|
|
|
|
type OverlayFunc = () => React.ReactNode;
|
|
|
|
|
2019-02-27 14:44:24 +08:00
|
|
|
type Align = {
|
|
|
|
points?: [string, string];
|
|
|
|
offset?: [number, number];
|
|
|
|
targetOffset?: [number, number];
|
|
|
|
overflow?: {
|
|
|
|
adjustX?: boolean;
|
|
|
|
adjustY?: boolean;
|
|
|
|
};
|
|
|
|
useCssRight?: boolean;
|
|
|
|
useCssBottom?: boolean;
|
|
|
|
useCssTransform?: boolean;
|
|
|
|
};
|
|
|
|
|
2016-08-11 15:38:03 +08:00
|
|
|
export interface DropDownProps {
|
2018-08-24 11:51:52 +08:00
|
|
|
trigger?: ('click' | 'hover' | 'contextMenu')[];
|
2018-12-28 20:27:42 +08:00
|
|
|
overlay: React.ReactNode | OverlayFunc;
|
2018-12-28 13:57:03 +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;
|
2019-02-27 14:44:24 +08:00
|
|
|
align?: Align;
|
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;
|
2018-01-13 17:25:08 +08:00
|
|
|
transitionName?: string;
|
2018-12-22 21:21:42 +08:00
|
|
|
placement?: Placement;
|
2018-12-13 22:03:12 +08:00
|
|
|
overlayClassName?: string;
|
|
|
|
overlayStyle?: React.CSSProperties;
|
2017-12-03 19:09:39 +08:00
|
|
|
forceRender?: boolean;
|
2018-12-04 20:28:48 +08:00
|
|
|
mouseEnterDelay?: number;
|
|
|
|
mouseLeaveDelay?: number;
|
2018-12-21 20:56:36 +08:00
|
|
|
openClassName?: string;
|
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 = {
|
|
|
|
mouseEnterDelay: 0.15,
|
|
|
|
mouseLeaveDelay: 0.1,
|
2018-12-22 21:21:42 +08:00
|
|
|
placement: 'bottomLeft' as Placement,
|
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() {
|
2018-01-13 17:25:08 +08:00
|
|
|
const { placement = '', transitionName } = this.props;
|
|
|
|
if (transitionName !== undefined) {
|
|
|
|
return transitionName;
|
|
|
|
}
|
2017-02-09 15:44:33 +08:00
|
|
|
if (placement.indexOf('top') >= 0) {
|
|
|
|
return 'slide-down';
|
|
|
|
}
|
|
|
|
return 'slide-up';
|
|
|
|
}
|
|
|
|
|
2018-12-28 20:27:42 +08:00
|
|
|
renderOverlay = (prefixCls: string) => {
|
|
|
|
// rc-dropdown already can process the function of overlay, but we have check logic here.
|
|
|
|
// So we need render the element to check and pass back to rc-dropdown.
|
2017-05-11 14:57:29 +08:00
|
|
|
const { overlay } = this.props;
|
2018-12-28 20:27:42 +08:00
|
|
|
|
|
|
|
let overlayNode;
|
|
|
|
if (typeof overlay === 'function') {
|
|
|
|
overlayNode = (overlay as OverlayFunc)();
|
|
|
|
} else {
|
|
|
|
overlayNode = overlay;
|
2018-05-21 21:02:03 +08:00
|
|
|
}
|
2019-01-28 11:10:56 +08:00
|
|
|
overlayNode = React.Children.only(overlayNode) as React.ReactElement<any>;
|
2018-12-28 20:27:42 +08:00
|
|
|
|
|
|
|
const overlayProps = overlayNode.props;
|
|
|
|
|
|
|
|
// Warning if use other mode
|
|
|
|
warning(
|
|
|
|
!overlayProps.mode || overlayProps.mode === 'vertical',
|
|
|
|
`mode="${overlayProps.mode}" is not supported for Dropdown\'s Menu.`,
|
|
|
|
);
|
|
|
|
|
|
|
|
// menu cannot be selectable in dropdown defaultly
|
|
|
|
// menu should be focusable in dropdown defaultly
|
|
|
|
const { selectable = false, focusable = true } = overlayProps;
|
|
|
|
|
|
|
|
const expandIcon = (
|
|
|
|
<span className={`${prefixCls}-menu-submenu-arrow`}>
|
|
|
|
<Icon type="right" className={`${prefixCls}-menu-submenu-arrow-icon`} />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
|
|
|
|
const fixedModeOverlay =
|
|
|
|
typeof overlayNode.type === 'string'
|
|
|
|
? overlay
|
|
|
|
: React.cloneElement(overlayNode, {
|
|
|
|
mode: 'vertical',
|
|
|
|
selectable,
|
|
|
|
focusable,
|
|
|
|
expandIcon,
|
|
|
|
});
|
|
|
|
|
|
|
|
return fixedModeOverlay;
|
|
|
|
};
|
2017-05-11 14:57:29 +08:00
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
renderDropDown = ({
|
|
|
|
getPopupContainer: getContextPopupContainer,
|
|
|
|
getPrefixCls,
|
|
|
|
}: ConfigConsumerProps) => {
|
2018-12-05 19:12:18 +08:00
|
|
|
const {
|
|
|
|
prefixCls: customizePrefixCls,
|
2018-12-07 20:02:01 +08:00
|
|
|
children,
|
|
|
|
trigger,
|
|
|
|
disabled,
|
|
|
|
getPopupContainer,
|
2018-12-05 19:12:18 +08:00
|
|
|
} = this.props;
|
2018-02-04 15:29:56 +08:00
|
|
|
|
2018-12-05 19:12:18 +08:00
|
|
|
const prefixCls = getPrefixCls('dropdown', customizePrefixCls);
|
2019-01-28 11:10:56 +08:00
|
|
|
const child = React.Children.only(children) as React.ReactElement<any>;
|
2018-02-04 15:29:56 +08:00
|
|
|
|
|
|
|
const dropdownTrigger = React.cloneElement(child, {
|
|
|
|
className: classNames(child.props.className, `${prefixCls}-trigger`),
|
2017-08-11 23:55:36 +08:00
|
|
|
disabled,
|
2016-12-03 17:31:04 +08:00
|
|
|
});
|
2018-06-12 22:07:02 +08:00
|
|
|
|
|
|
|
const triggerActions = disabled ? [] : trigger;
|
|
|
|
let alignPoint;
|
|
|
|
if (triggerActions && triggerActions.indexOf('contextMenu') !== -1) {
|
|
|
|
alignPoint = true;
|
|
|
|
}
|
|
|
|
|
2016-12-03 17:31:04 +08:00
|
|
|
return (
|
2017-05-11 14:57:29 +08:00
|
|
|
<RcDropdown
|
2018-06-12 22:07:02 +08:00
|
|
|
alignPoint={alignPoint}
|
2017-08-16 17:56:07 +08:00
|
|
|
{...this.props}
|
2018-12-05 19:12:18 +08:00
|
|
|
prefixCls={prefixCls}
|
2018-11-26 12:06:42 +08:00
|
|
|
getPopupContainer={getPopupContainer || getContextPopupContainer}
|
2017-05-11 14:57:29 +08:00
|
|
|
transitionName={this.getTransitionName()}
|
2018-06-12 22:07:02 +08:00
|
|
|
trigger={triggerActions}
|
2018-12-28 20:27:42 +08:00
|
|
|
overlay={() => this.renderOverlay(prefixCls)}
|
2017-05-11 14:57:29 +08:00
|
|
|
>
|
2016-12-03 17:31:04 +08:00
|
|
|
{dropdownTrigger}
|
|
|
|
</RcDropdown>
|
|
|
|
);
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2018-11-26 12:06:42 +08:00
|
|
|
|
|
|
|
render() {
|
2018-12-07 20:02:01 +08:00
|
|
|
return <ConfigConsumer>{this.renderDropDown}</ConfigConsumer>;
|
2018-11-26 12:06:42 +08:00
|
|
|
}
|
2016-03-18 10:31:25 +08:00
|
|
|
}
|