2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-08-24 16:09:55 +08:00
|
|
|
import { cloneElement } from 'react';
|
2016-03-28 23:21:47 +08:00
|
|
|
import RcTooltip from 'rc-tooltip';
|
2016-08-24 16:09:55 +08:00
|
|
|
import classNames from 'classnames';
|
2017-06-30 17:22:01 +08:00
|
|
|
import getPlacements, { AdjustOverflow } from './placements';
|
2016-03-09 17:23:10 +08:00
|
|
|
|
2016-11-30 15:46:50 +08:00
|
|
|
export type TooltipPlacement =
|
|
|
|
'top' | 'left' | 'right' | 'bottom' |
|
|
|
|
'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' |
|
|
|
|
'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom';
|
2015-06-03 17:08:43 +08:00
|
|
|
|
2016-11-30 16:43:35 +08:00
|
|
|
export interface AbstractTooltipProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
overlayClassName?: string;
|
2016-07-13 11:14:24 +08:00
|
|
|
style?: React.CSSProperties;
|
2016-07-25 11:28:43 +08:00
|
|
|
overlayStyle?: React.CSSProperties;
|
2016-11-30 16:43:35 +08:00
|
|
|
placement?: TooltipPlacement;
|
|
|
|
builtinPlacements?: Object;
|
|
|
|
visible?: boolean;
|
2016-07-25 11:28:43 +08:00
|
|
|
onVisibleChange?: (visible: boolean) => void;
|
2017-01-26 10:56:24 +08:00
|
|
|
mouseEnterDelay?: number;
|
|
|
|
mouseLeaveDelay?: number;
|
2016-07-25 11:28:43 +08:00
|
|
|
transitionName?: string;
|
|
|
|
trigger?: 'hover' | 'focus' | 'click';
|
2016-08-22 17:26:14 +08:00
|
|
|
openClassName?: string;
|
2016-08-31 15:00:13 +08:00
|
|
|
arrowPointAtCenter?: boolean;
|
2017-06-30 17:22:01 +08:00
|
|
|
autoAdjustOverflow?: boolean | AdjustOverflow;
|
2017-03-21 16:35:31 +08:00
|
|
|
// getTooltipContainer had been rename to getPopupContainer
|
2017-03-28 13:20:05 +08:00
|
|
|
getTooltipContainer?: (triggerNode: Element) => HTMLElement;
|
|
|
|
getPopupContainer?: (triggerNode: Element) => HTMLElement;
|
2017-05-30 17:48:07 +08:00
|
|
|
children?: React.ReactNode;
|
2016-11-30 16:43:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface TooltipProps extends AbstractTooltipProps {
|
2016-12-19 15:19:15 +08:00
|
|
|
title?: React.ReactNode;
|
2016-11-30 16:43:35 +08:00
|
|
|
overlay?: React.ReactNode;
|
2016-07-09 10:54:21 +08:00
|
|
|
}
|
2016-07-13 11:14:24 +08:00
|
|
|
|
2017-03-10 14:13:12 +08:00
|
|
|
const splitObject = (obj, keys) => {
|
|
|
|
const picked = {};
|
|
|
|
const omited = { ...obj };
|
|
|
|
keys.forEach(key => {
|
|
|
|
if (obj && key in obj) {
|
|
|
|
picked[key] = obj[key];
|
|
|
|
delete omited[key];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return { picked, omited };
|
|
|
|
};
|
|
|
|
|
2016-07-09 10:54:21 +08:00
|
|
|
export default class Tooltip extends React.Component<TooltipProps, any> {
|
2016-03-28 23:21:47 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-tooltip',
|
|
|
|
placement: 'top',
|
2016-10-07 18:18:23 +08:00
|
|
|
transitionName: 'zoom-big-fast',
|
2016-03-28 23:21:47 +08:00
|
|
|
mouseEnterDelay: 0.1,
|
2016-04-07 16:43:00 +08:00
|
|
|
mouseLeaveDelay: 0.1,
|
2016-08-31 13:50:50 +08:00
|
|
|
arrowPointAtCenter: false,
|
2017-06-30 17:22:01 +08:00
|
|
|
autoAdjustOverflow: true,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-04-07 15:02:22 +08:00
|
|
|
|
2016-08-24 16:09:55 +08:00
|
|
|
refs: {
|
|
|
|
tooltip: any;
|
|
|
|
};
|
|
|
|
|
2016-11-30 16:43:35 +08:00
|
|
|
constructor(props: TooltipProps) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2017-01-14 15:23:02 +08:00
|
|
|
visible: !!props.visible,
|
2016-11-30 16:43:35 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps(nextProps: TooltipProps) {
|
|
|
|
if ('visible' in nextProps) {
|
|
|
|
this.setState({ visible: nextProps.visible });
|
|
|
|
}
|
|
|
|
}
|
2016-04-07 15:02:22 +08:00
|
|
|
|
2016-03-28 23:21:47 +08:00
|
|
|
onVisibleChange = (visible) => {
|
2017-01-15 00:27:02 +08:00
|
|
|
const { onVisibleChange } = this.props;
|
|
|
|
if (!('visible' in this.props)) {
|
|
|
|
this.setState({ visible: this.isNoTitle() ? false : visible });
|
|
|
|
}
|
|
|
|
if (onVisibleChange && !this.isNoTitle()) {
|
|
|
|
onVisibleChange(visible);
|
2016-10-24 16:30:38 +08:00
|
|
|
}
|
2016-03-28 23:21:47 +08:00
|
|
|
}
|
2015-10-26 16:30:27 +08:00
|
|
|
|
2016-04-07 16:56:13 +08:00
|
|
|
getPopupDomNode() {
|
|
|
|
return this.refs.tooltip.getPopupDomNode();
|
|
|
|
}
|
|
|
|
|
2016-08-31 13:50:50 +08:00
|
|
|
getPlacements() {
|
2017-06-30 17:22:01 +08:00
|
|
|
const { builtinPlacements, arrowPointAtCenter, autoAdjustOverflow } = this.props;
|
2016-08-31 13:50:50 +08:00
|
|
|
return builtinPlacements || getPlacements({
|
|
|
|
arrowPointAtCenter,
|
|
|
|
verticalArrowShift: 8,
|
2017-06-30 17:22:01 +08:00
|
|
|
autoAdjustOverflow,
|
2016-08-31 13:50:50 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-14 19:04:18 +08:00
|
|
|
isHoverTrigger() {
|
|
|
|
const { trigger } = this.props;
|
|
|
|
if (!trigger || trigger === 'hover') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (Array.isArray(trigger)) {
|
|
|
|
return trigger.indexOf('hover') >= 0;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-16 14:03:05 +08:00
|
|
|
// Fix Tooltip won't hide at disabled button
|
|
|
|
// mouse events don't trigger at disabled button in Chrome
|
|
|
|
// https://github.com/react-component/tooltip/issues/18
|
|
|
|
getDisabledCompatibleChildren(element) {
|
2017-03-14 19:04:18 +08:00
|
|
|
if ((element.type.__ANT_BUTTON || element.type === 'button') &&
|
|
|
|
element.props.disabled && this.isHoverTrigger()) {
|
2017-03-10 14:13:12 +08:00
|
|
|
// Pick some layout related style properties up to span
|
|
|
|
// Prevent layout bugs like https://github.com/ant-design/ant-design/issues/5254
|
|
|
|
const { picked, omited } = splitObject(
|
|
|
|
element.props.style,
|
|
|
|
['position', 'left', 'right', 'top', 'bottom', 'float', 'display', 'zIndex'],
|
2017-02-16 14:03:05 +08:00
|
|
|
);
|
2017-03-10 14:13:12 +08:00
|
|
|
const spanStyle = {
|
|
|
|
display: 'inline-block', // default inline-block is important
|
|
|
|
...picked,
|
|
|
|
cursor: 'not-allowed',
|
|
|
|
};
|
|
|
|
const buttonStyle = {
|
|
|
|
...omited,
|
|
|
|
pointerEvents: 'none',
|
|
|
|
};
|
2017-03-14 11:43:49 +08:00
|
|
|
const child = cloneElement(element, {
|
|
|
|
style: buttonStyle,
|
|
|
|
className: null,
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<span style={spanStyle} className={element.props.className}>
|
|
|
|
{child}
|
|
|
|
</span>
|
|
|
|
);
|
2017-02-16 14:03:05 +08:00
|
|
|
}
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
|
2017-01-15 00:27:02 +08:00
|
|
|
isNoTitle() {
|
|
|
|
const { title, overlay } = this.props;
|
|
|
|
return !title && !overlay; // overlay for old version compatibility
|
|
|
|
}
|
|
|
|
|
2016-04-07 16:43:00 +08:00
|
|
|
// 动态设置动画点
|
2016-04-07 15:02:22 +08:00
|
|
|
onPopupAlign = (domNode, align) => {
|
2016-08-31 13:50:50 +08:00
|
|
|
const placements = this.getPlacements();
|
2016-04-07 16:43:00 +08:00
|
|
|
// 当前返回的位置
|
|
|
|
const placement = Object.keys(placements).filter(
|
|
|
|
key => (
|
|
|
|
placements[key].points[0] === align.points[0] &&
|
|
|
|
placements[key].points[1] === align.points[1]
|
2017-03-23 21:15:49 +08:00
|
|
|
),
|
2016-04-07 16:43:00 +08:00
|
|
|
)[0];
|
|
|
|
if (!placement) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 根据当前坐标设置动画点
|
2016-04-07 15:02:22 +08:00
|
|
|
const rect = domNode.getBoundingClientRect();
|
2016-04-07 16:43:00 +08:00
|
|
|
const transformOrigin = {
|
|
|
|
top: '50%',
|
|
|
|
left: '50%',
|
|
|
|
};
|
2016-04-07 15:02:22 +08:00
|
|
|
if (placement.indexOf('top') >= 0 || placement.indexOf('Bottom') >= 0) {
|
2016-04-07 16:43:00 +08:00
|
|
|
transformOrigin.top = `${rect.height - align.offset[1]}px`;
|
2016-04-07 15:02:22 +08:00
|
|
|
} else if (placement.indexOf('Top') >= 0 || placement.indexOf('bottom') >= 0) {
|
2016-04-07 16:43:00 +08:00
|
|
|
transformOrigin.top = `${-align.offset[1]}px`;
|
2016-04-07 15:02:22 +08:00
|
|
|
}
|
|
|
|
if (placement.indexOf('left') >= 0 || placement.indexOf('Right') >= 0) {
|
2016-04-07 16:43:00 +08:00
|
|
|
transformOrigin.left = `${rect.width - align.offset[0]}px`;
|
2016-04-07 15:02:22 +08:00
|
|
|
} else if (placement.indexOf('right') >= 0 || placement.indexOf('Left') >= 0) {
|
2016-04-07 16:43:00 +08:00
|
|
|
transformOrigin.left = `${-align.offset[0]}px`;
|
2016-04-07 15:02:22 +08:00
|
|
|
}
|
2016-04-07 16:43:00 +08:00
|
|
|
domNode.style.transformOrigin = `${transformOrigin.left} ${transformOrigin.top}`;
|
2016-04-07 16:56:13 +08:00
|
|
|
}
|
2016-04-07 15:02:22 +08:00
|
|
|
|
|
|
|
render() {
|
2016-11-30 16:43:35 +08:00
|
|
|
const { props, state } = this;
|
2016-12-22 12:08:17 +08:00
|
|
|
const { prefixCls, title, overlay, openClassName, getPopupContainer, getTooltipContainer } = props;
|
2016-12-19 14:01:52 +08:00
|
|
|
const children = props.children as React.ReactElement<any>;
|
2016-11-30 16:43:35 +08:00
|
|
|
let visible = state.visible;
|
2015-10-26 16:30:27 +08:00
|
|
|
// Hide tooltip when there is no title
|
2017-01-15 00:27:02 +08:00
|
|
|
if (!('visible' in props) && this.isNoTitle()) {
|
2015-10-26 16:30:27 +08:00
|
|
|
visible = false;
|
|
|
|
}
|
2016-08-24 16:09:55 +08:00
|
|
|
|
2017-02-16 14:03:05 +08:00
|
|
|
const child = this.getDisabledCompatibleChildren(
|
2017-03-23 21:15:49 +08:00
|
|
|
React.isValidElement(children) ? children : <span>{children}</span>,
|
2017-02-16 14:03:05 +08:00
|
|
|
);
|
2016-12-02 15:07:03 +08:00
|
|
|
const childProps = child.props;
|
|
|
|
const childCls = classNames(childProps.className, {
|
2016-11-30 16:43:35 +08:00
|
|
|
[openClassName || `${prefixCls}-open`]: true,
|
2016-08-24 16:09:55 +08:00
|
|
|
});
|
|
|
|
|
2015-06-10 17:59:32 +08:00
|
|
|
return (
|
2016-05-07 15:37:26 +08:00
|
|
|
<RcTooltip
|
2016-06-22 22:54:54 +08:00
|
|
|
{...this.props}
|
2016-12-22 12:08:17 +08:00
|
|
|
getTooltipContainer={getPopupContainer || getTooltipContainer}
|
2016-11-30 15:46:50 +08:00
|
|
|
ref="tooltip"
|
2016-08-31 14:34:26 +08:00
|
|
|
builtinPlacements={this.getPlacements()}
|
2017-07-19 20:38:39 +08:00
|
|
|
overlay={overlay || title || ''}
|
2016-11-30 15:46:50 +08:00
|
|
|
visible={visible}
|
2016-06-22 22:54:54 +08:00
|
|
|
onVisibleChange={this.onVisibleChange}
|
2016-11-30 15:46:50 +08:00
|
|
|
onPopupAlign={this.onPopupAlign}
|
2016-06-06 13:54:10 +08:00
|
|
|
>
|
2016-12-02 15:07:03 +08:00
|
|
|
{visible ? cloneElement(child, { className: childCls }) : child}
|
2016-03-28 23:21:47 +08:00
|
|
|
</RcTooltip>
|
2015-06-03 17:08:43 +08:00
|
|
|
);
|
|
|
|
}
|
2016-03-28 23:21:47 +08:00
|
|
|
}
|