ant-design/components/tooltip/index.jsx

95 lines
2.8 KiB
React
Raw Normal View History

2016-05-07 15:37:26 +08:00
import React, { cloneElement } from 'react';
import RcTooltip from 'rc-tooltip';
import getPlacements from '../popover/placements';
const placements = getPlacements({
verticalArrowShift: 8,
});
2015-06-03 17:08:43 +08:00
export default class Tooltip extends React.Component {
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-06-22 14:09:29 +08:00
onVisibleChange() {},
}
2016-04-07 15:02:22 +08:00
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();
}
2016-04-07 16:43:00 +08:00
// 动态设置动画点
2016-04-07 15:02:22 +08:00
onPopupAlign = (domNode, align) => {
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() {
2016-05-07 15:37:26 +08:00
const { prefixCls, title, overlay, children, transitionName } = 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-05-07 15:37:26 +08:00
const openClassName = this.props.openClassName || `${prefixCls}-open`;
const childrenCls = (children && children.props && children.props.className)
? `${children.props.className} ${openClassName}` : openClassName;
2015-06-10 17:59:32 +08:00
return (
2016-05-07 15:37:26 +08:00
<RcTooltip
transitionName={transitionName}
builtinPlacements={placements}
2016-05-07 15:37:26 +08:00
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}
onVisibleChange={this.onVisibleChange}
>
2016-05-11 09:32:33 +08:00
{visible ? cloneElement(children, { className: childrenCls }) : children}
</RcTooltip>
2015-06-03 17:08:43 +08:00
);
}
}