ant-design/components/tooltip/index.tsx

141 lines
4.1 KiB
TypeScript
Raw Normal View History

2016-07-09 10:54:21 +08:00
import * as React from 'react';
2016-08-24 16:09:55 +08:00
import { cloneElement } from 'react';
import RcTooltip from 'rc-tooltip';
import getPlacements from '../popover/placements';
2016-08-24 16:09:55 +08:00
import classNames from 'classnames';
2016-09-13 15:31:29 +08:00
export type PopoverPlacement =
2016-07-13 17:22:23 +08:00
'top' | 'left' | 'right' | 'bottom' | 'topLeft' |
'topRight' | 'bottomLeft' | 'bottomRight' | 'leftTop' |
'leftBottom' | 'rightTop' | 'rightBottom'
2015-06-03 17:08:43 +08:00
2016-07-09 10:54:21 +08:00
// Tooltip
export interface TooltipProps {
2016-07-13 17:22:23 +08:00
/**
`top` `left` `right` `bottom` `topLeft` `topRight` `bottomLeft`
`bottomRight` `leftTop` `leftBottom` `rightTop` `rightBottom`
*/
2016-07-13 11:14:24 +08:00
placement?: PopoverPlacement;
/** 提示文字 */
title: React.ReactNode;
2016-07-13 11:14:24 +08:00
style?: React.CSSProperties;
builtinPlacements?: Object;
/** Style of overlay */
overlayStyle?: React.CSSProperties;
prefixCls?: string;
/** Callback when display/hide */
onVisibleChange?: (visible: boolean) => void;
transitionName?: string;
visible?: boolean;
trigger?: 'hover' | 'focus' | 'click';
overlay?: React.ReactNode;
2016-08-22 17:26:14 +08:00
openClassName?: string;
2016-08-31 15:00:13 +08:00
arrowPointAtCenter?: boolean;
getTooltipContainer: (triggerNode: React.ReactNode) => HTMLElement;
2016-07-09 10:54:21 +08:00
}
2016-07-13 11:14:24 +08:00
2016-07-09 10:54:21 +08:00
export default class Tooltip extends React.Component<TooltipProps, any> {
static defaultProps = {
prefixCls: 'ant-tooltip',
placement: 'top',
2016-04-07 15:02:22 +08:00
transitionName: 'zoom-big',
mouseEnterDelay: 0.1,
2016-04-07 16:43:00 +08:00
mouseLeaveDelay: 0.1,
2016-07-13 11:14:24 +08:00
onVisibleChange() {},
arrowPointAtCenter: false,
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: {
[key: string]: any;
tooltip: any;
};
constructor(props) {
super(props);
this.state = {
2016-04-07 16:43:00 +08:00
visible: false,
};
}
2016-04-07 15:02:22 +08:00
onVisibleChange = (visible) => {
this.setState({ visible });
2016-06-22 14:09:29 +08:00
this.props.onVisibleChange(visible);
}
2016-04-07 16:56:13 +08:00
getPopupDomNode() {
return this.refs.tooltip.getPopupDomNode();
}
getPlacements() {
const { builtinPlacements, arrowPointAtCenter } = this.props;
return builtinPlacements || getPlacements({
arrowPointAtCenter,
verticalArrowShift: 8,
});
}
2016-04-07 16:43:00 +08:00
// 动态设置动画点
2016-04-07 15:02:22 +08:00
onPopupAlign = (domNode, align) => {
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]
)
)[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() {
const { prefixCls, title, overlay, children } = this.props;
// Hide tooltip when there is no title
let visible = this.state.visible;
2016-05-07 15:37:26 +08:00
if (!title && !overlay) {
visible = false;
}
2016-05-06 20:32:07 +08:00
if ('visible' in this.props) {
visible = this.props.visible;
}
2016-08-24 16:09:55 +08:00
const childrenProps = children ? (children as React.ReactElement<any>).props : {};
const childrenCls = classNames({
[childrenProps.className]: !!childrenProps.className,
[this.props.openClassName || `${prefixCls}-open`]: true,
});
2015-06-10 17:59:32 +08:00
return (
2016-05-07 15:37:26 +08:00
<RcTooltip
overlay={title}
visible={visible}
2016-04-07 15:02:22 +08:00
onPopupAlign={this.onPopupAlign}
2016-04-07 16:56:13 +08:00
ref="tooltip"
2016-06-22 22:54:54 +08:00
{...this.props}
2016-08-31 14:34:26 +08:00
builtinPlacements={this.getPlacements()}
2016-06-22 22:54:54 +08:00
onVisibleChange={this.onVisibleChange}
>
2016-08-24 16:09:55 +08:00
{visible ? cloneElement((children as React.ReactElement<any>), { className: childrenCls }) : children}
</RcTooltip>
2015-06-03 17:08:43 +08:00
);
}
}