2021-01-27 15:21:48 +00:00
|
|
|
import { defineComponent, ExtractPropTypes, inject, CSSProperties } from 'vue';
|
2019-01-12 03:33:27 +00:00
|
|
|
import VcTooltip from '../vc-tooltip';
|
2020-08-31 08:53:19 +00:00
|
|
|
import classNames from '../_util/classNames';
|
2019-01-12 03:33:27 +00:00
|
|
|
import getPlacements from './placements';
|
|
|
|
import PropTypes from '../_util/vue-types';
|
2021-01-27 15:21:48 +00:00
|
|
|
import { PresetColorTypes } from '../_util/colors';
|
2019-01-12 03:33:27 +00:00
|
|
|
import {
|
|
|
|
hasProp,
|
2020-06-09 10:30:18 +00:00
|
|
|
getComponent,
|
2019-01-12 03:33:27 +00:00
|
|
|
getStyle,
|
2020-06-09 10:30:18 +00:00
|
|
|
filterEmpty,
|
|
|
|
getSlot,
|
2020-06-10 10:20:57 +00:00
|
|
|
isValidElement,
|
2019-01-12 03:33:27 +00:00
|
|
|
} from '../_util/props-util';
|
2020-06-10 10:20:57 +00:00
|
|
|
import { cloneElement } from '../_util/vnode';
|
2020-09-30 02:47:18 +00:00
|
|
|
import { defaultConfigProvider } from '../config-provider';
|
2019-01-12 03:33:27 +00:00
|
|
|
import abstractTooltipProps from './abstractTooltipProps';
|
2018-01-22 13:27:37 +00:00
|
|
|
|
2020-10-18 14:14:39 +00:00
|
|
|
const splitObject = (obj: any, keys: string[]) => {
|
2019-01-12 03:33:27 +00:00
|
|
|
const picked = {};
|
|
|
|
const omitted = { ...obj };
|
2018-01-22 13:27:37 +00:00
|
|
|
keys.forEach(key => {
|
|
|
|
if (obj && key in obj) {
|
2019-01-12 03:33:27 +00:00
|
|
|
picked[key] = obj[key];
|
|
|
|
delete omitted[key];
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
2019-01-12 03:33:27 +00:00
|
|
|
});
|
|
|
|
return { picked, omitted };
|
|
|
|
};
|
|
|
|
const props = abstractTooltipProps();
|
2020-10-24 14:38:25 +00:00
|
|
|
|
2021-01-27 15:21:48 +00:00
|
|
|
const PresetColorRegex = new RegExp(`^(${PresetColorTypes.join('|')})(-inverse)?$`);
|
|
|
|
|
2020-10-24 14:38:25 +00:00
|
|
|
const tooltipProps = {
|
|
|
|
...props,
|
|
|
|
title: PropTypes.VNodeChild,
|
|
|
|
};
|
|
|
|
|
|
|
|
export type TooltipProps = Partial<ExtractPropTypes<typeof tooltipProps>>;
|
|
|
|
|
2020-10-18 14:14:39 +00:00
|
|
|
export default defineComponent({
|
2018-04-08 13:17:20 +00:00
|
|
|
name: 'ATooltip',
|
2020-06-10 10:20:57 +00:00
|
|
|
inheritAttrs: false,
|
2020-10-24 14:38:25 +00:00
|
|
|
props: tooltipProps,
|
2020-10-18 14:14:39 +00:00
|
|
|
emits: ['update:visible', 'visibleChange'],
|
2020-06-09 10:30:18 +00:00
|
|
|
setup() {
|
|
|
|
return {
|
2020-09-30 02:47:18 +00:00
|
|
|
configProvider: inject('configProvider', defaultConfigProvider),
|
2020-06-09 10:30:18 +00:00
|
|
|
};
|
2019-01-07 12:53:42 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
data() {
|
2018-01-22 13:27:37 +00:00
|
|
|
return {
|
2019-09-29 09:04:19 +00:00
|
|
|
sVisible: !!this.$props.visible || !!this.$props.defaultVisible,
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-01-22 13:27:37 +00:00
|
|
|
},
|
|
|
|
watch: {
|
2019-01-12 03:33:27 +00:00
|
|
|
visible(val) {
|
|
|
|
this.sVisible = val;
|
2018-01-22 13:27:37 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
2020-11-23 05:47:26 +00:00
|
|
|
handleVisibleChange(visible: boolean) {
|
2018-01-22 13:27:37 +00:00
|
|
|
if (!hasProp(this, 'visible')) {
|
2019-01-12 03:33:27 +00:00
|
|
|
this.sVisible = this.isNoTitle() ? false : visible;
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
|
|
|
if (!this.isNoTitle()) {
|
2020-06-14 13:41:29 +00:00
|
|
|
this.$emit('update:visible', visible);
|
2019-01-12 03:33:27 +00:00
|
|
|
this.$emit('visibleChange', visible);
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
getPopupDomNode() {
|
2020-10-18 14:14:39 +00:00
|
|
|
return (this.$refs.tooltip as any).getPopupDomNode();
|
2018-01-22 13:27:37 +00:00
|
|
|
},
|
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
getPlacements() {
|
|
|
|
const { builtinPlacements, arrowPointAtCenter, autoAdjustOverflow } = this.$props;
|
|
|
|
return (
|
|
|
|
builtinPlacements ||
|
|
|
|
getPlacements({
|
|
|
|
arrowPointAtCenter,
|
|
|
|
verticalArrowShift: 8,
|
|
|
|
autoAdjustOverflow,
|
|
|
|
})
|
|
|
|
);
|
2018-01-22 13:27:37 +00: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
|
2020-11-23 05:47:26 +00:00
|
|
|
getDisabledCompatibleChildren(ele: any) {
|
2019-01-12 03:33:27 +00:00
|
|
|
if (
|
2020-06-10 10:20:57 +00:00
|
|
|
((typeof ele.type === 'object' &&
|
|
|
|
(ele.type.__ANT_BUTTON === true ||
|
|
|
|
ele.type.__ANT_SWITCH === true ||
|
|
|
|
ele.type.__ANT_CHECKBOX === true)) ||
|
|
|
|
ele.type === 'button') &&
|
|
|
|
ele.props &&
|
|
|
|
(ele.props.disabled || ele.props.disabled === '')
|
2019-01-12 03:33:27 +00: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, omitted } = splitObject(getStyle(ele), [
|
|
|
|
'position',
|
|
|
|
'left',
|
|
|
|
'right',
|
|
|
|
'top',
|
|
|
|
'bottom',
|
|
|
|
'float',
|
|
|
|
'display',
|
|
|
|
'zIndex',
|
|
|
|
]);
|
2018-01-22 13:27:37 +00:00
|
|
|
const spanStyle = {
|
|
|
|
display: 'inline-block', // default inline-block is important
|
|
|
|
...picked,
|
|
|
|
cursor: 'not-allowed',
|
2020-06-09 10:30:18 +00:00
|
|
|
width: ele.props && ele.props.block ? '100%' : null,
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-01-22 13:27:37 +00:00
|
|
|
const buttonStyle = {
|
2018-09-05 13:28:54 +00:00
|
|
|
...omitted,
|
2018-01-22 13:27:37 +00:00
|
|
|
pointerEvents: 'none',
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2020-06-10 10:20:57 +00:00
|
|
|
const child = cloneElement(
|
|
|
|
ele,
|
|
|
|
{
|
|
|
|
style: buttonStyle,
|
|
|
|
},
|
|
|
|
true,
|
2019-01-12 03:33:27 +00:00
|
|
|
);
|
2020-06-10 10:20:57 +00:00
|
|
|
return <span style={spanStyle}>{child}</span>;
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
2019-01-12 03:33:27 +00:00
|
|
|
return ele;
|
2018-01-22 13:27:37 +00:00
|
|
|
},
|
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
isNoTitle() {
|
2020-06-09 10:30:18 +00:00
|
|
|
const title = getComponent(this, 'title');
|
2020-03-07 11:45:13 +00:00
|
|
|
return !title && title !== 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
getOverlay() {
|
2020-06-09 10:30:18 +00:00
|
|
|
const title = getComponent(this, 'title');
|
2020-03-07 11:45:13 +00:00
|
|
|
if (title === 0) {
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
return title || '';
|
2018-01-22 13:27:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// 动态设置动画点
|
2020-11-23 05:47:26 +00:00
|
|
|
onPopupAlign(domNode: HTMLElement, align: any) {
|
2019-01-12 03:33:27 +00:00
|
|
|
const placements = this.getPlacements();
|
2018-01-22 13:27:37 +00:00
|
|
|
// 当前返回的位置
|
|
|
|
const placement = Object.keys(placements).filter(
|
2019-01-12 03:33:27 +00:00
|
|
|
key =>
|
2018-01-22 13:27:37 +00:00
|
|
|
placements[key].points[0] === align.points[0] &&
|
2019-01-12 03:33:27 +00:00
|
|
|
placements[key].points[1] === align.points[1],
|
|
|
|
)[0];
|
2018-01-22 13:27:37 +00:00
|
|
|
if (!placement) {
|
2019-01-12 03:33:27 +00:00
|
|
|
return;
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
|
|
|
// 根据当前坐标设置动画点
|
2019-01-12 03:33:27 +00:00
|
|
|
const rect = domNode.getBoundingClientRect();
|
2018-01-22 13:27:37 +00:00
|
|
|
const transformOrigin = {
|
|
|
|
top: '50%',
|
|
|
|
left: '50%',
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-01-22 13:27:37 +00:00
|
|
|
if (placement.indexOf('top') >= 0 || placement.indexOf('Bottom') >= 0) {
|
2019-01-12 03:33:27 +00:00
|
|
|
transformOrigin.top = `${rect.height - align.offset[1]}px`;
|
2018-01-22 13:27:37 +00:00
|
|
|
} else if (placement.indexOf('Top') >= 0 || placement.indexOf('bottom') >= 0) {
|
2019-01-12 03:33:27 +00:00
|
|
|
transformOrigin.top = `${-align.offset[1]}px`;
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
|
|
|
if (placement.indexOf('left') >= 0 || placement.indexOf('Right') >= 0) {
|
2019-01-12 03:33:27 +00:00
|
|
|
transformOrigin.left = `${rect.width - align.offset[0]}px`;
|
2018-01-22 13:27:37 +00:00
|
|
|
} else if (placement.indexOf('right') >= 0 || placement.indexOf('Left') >= 0) {
|
2019-01-12 03:33:27 +00:00
|
|
|
transformOrigin.left = `${-align.offset[0]}px`;
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
2019-01-12 03:33:27 +00:00
|
|
|
domNode.style.transformOrigin = `${transformOrigin.left} ${transformOrigin.top}`;
|
2018-01-22 13:27:37 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2019-02-01 09:23:00 +00:00
|
|
|
render() {
|
2020-06-09 10:30:18 +00:00
|
|
|
const { $props, $data, $attrs } = this;
|
2021-01-27 15:21:48 +00:00
|
|
|
const {
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
openClassName,
|
|
|
|
getPopupContainer,
|
|
|
|
color,
|
|
|
|
overlayClassName,
|
|
|
|
} = $props;
|
2019-01-12 03:33:27 +00:00
|
|
|
const { getPopupContainer: getContextPopupContainer } = this.configProvider;
|
2019-09-11 14:35:25 +00:00
|
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
2019-04-10 02:14:12 +00:00
|
|
|
const prefixCls = getPrefixCls('tooltip', customizePrefixCls);
|
2020-06-18 15:50:02 +00:00
|
|
|
let children = this.children || filterEmpty(getSlot(this));
|
2019-01-12 03:33:27 +00:00
|
|
|
children = children.length === 1 ? children[0] : children;
|
|
|
|
let sVisible = $data.sVisible;
|
2018-01-22 13:27:37 +00:00
|
|
|
// Hide tooltip when there is no title
|
|
|
|
if (!hasProp(this, 'visible') && this.isNoTitle()) {
|
2019-01-12 03:33:27 +00:00
|
|
|
sVisible = false;
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
|
|
|
if (!children) {
|
2019-01-12 03:33:27 +00:00
|
|
|
return null;
|
2018-01-22 13:27:37 +00:00
|
|
|
}
|
2019-01-12 03:33:27 +00:00
|
|
|
const child = this.getDisabledCompatibleChildren(
|
2020-06-10 10:20:57 +00:00
|
|
|
isValidElement(children) ? children : <span>{children}</span>,
|
2019-01-12 03:33:27 +00:00
|
|
|
);
|
2020-07-28 09:10:59 +00:00
|
|
|
const childCls = classNames({
|
2020-06-18 10:51:56 +00:00
|
|
|
[openClassName || `${prefixCls}-open`]: sVisible,
|
2020-06-10 10:20:57 +00:00
|
|
|
[child.props && child.props.class]: child.props && child.props.class,
|
2020-07-28 09:10:59 +00:00
|
|
|
});
|
2021-01-27 15:21:48 +00:00
|
|
|
const customOverlayClassName = classNames(overlayClassName, {
|
|
|
|
[`${prefixCls}-${color}`]: color && PresetColorRegex.test(color),
|
|
|
|
});
|
|
|
|
let formattedOverlayInnerStyle: CSSProperties;
|
|
|
|
let arrowContentStyle: CSSProperties;
|
|
|
|
if (color && !PresetColorRegex.test(color)) {
|
|
|
|
formattedOverlayInnerStyle = { backgroundColor: color };
|
|
|
|
arrowContentStyle = { backgroundColor: color };
|
|
|
|
}
|
|
|
|
|
2020-10-24 14:38:25 +00:00
|
|
|
const vcTooltipProps = {
|
2020-06-09 10:30:18 +00:00
|
|
|
...$attrs,
|
|
|
|
...$props,
|
|
|
|
prefixCls,
|
|
|
|
getTooltipContainer: getPopupContainer || getContextPopupContainer,
|
|
|
|
builtinPlacements: this.getPlacements(),
|
|
|
|
overlay: this.getOverlay(),
|
|
|
|
visible: sVisible,
|
2018-01-22 13:27:37 +00:00
|
|
|
ref: 'tooltip',
|
2021-01-27 15:21:48 +00:00
|
|
|
overlayClassName: customOverlayClassName,
|
|
|
|
overlayInnerStyle: formattedOverlayInnerStyle,
|
|
|
|
arrowContent: <span class={`${prefixCls}-arrow-content`} style={arrowContentStyle}></span>,
|
2020-08-04 10:13:51 +00:00
|
|
|
onVisibleChange: this.handleVisibleChange,
|
2020-06-09 10:30:18 +00:00
|
|
|
onPopupAlign: this.onPopupAlign,
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-01-22 13:27:37 +00:00
|
|
|
return (
|
2020-10-24 14:38:25 +00:00
|
|
|
<VcTooltip {...vcTooltipProps}>
|
2020-06-10 10:20:57 +00:00
|
|
|
{sVisible ? cloneElement(child, { class: childCls }) : child}
|
2018-03-14 06:28:54 +00:00
|
|
|
</VcTooltip>
|
2019-01-12 03:33:27 +00:00
|
|
|
);
|
2018-01-22 13:27:37 +00:00
|
|
|
},
|
2020-10-18 14:14:39 +00:00
|
|
|
});
|