ant-design-vue/components/tooltip/tooltip.vue

189 lines
5.6 KiB
Vue
Raw Normal View History

<script>
2018-01-11 10:53:51 +00:00
import { cloneElement, isValidElement, getClass, getStyle } from '../_util/vnode'
import RcTooltip from './src/tooltip'
import getPlacements from './placements'
import PropTypes from '../_util/vue-types'
2018-01-12 08:10:41 +00:00
import hasProp from '../_util/props-util'
import abstractTooltipProps from './abstractTooltipProps'
2018-01-11 10:53:51 +00: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 }
}
2018-01-15 09:33:34 +00:00
const props = abstractTooltipProps()
export default {
2018-01-11 10:53:51 +00:00
name: 'Tooltip',
props: {
2018-01-15 09:33:34 +00:00
...props,
2018-01-11 10:53:51 +00:00
title: PropTypes.any,
2018-01-12 08:10:41 +00:00
},
model: {
prop: 'visible',
event: 'change',
},
data () {
return {
2018-01-11 10:53:51 +00:00
sVisible: !!this.$props.visible,
}
},
2018-01-11 10:53:51 +00:00
watch: {
visible (val) {
this.sVisible = val
},
},
2017-11-03 10:06:00 +00:00
methods: {
2018-01-11 10:53:51 +00:00
onVisibleChange (visible) {
if (!hasProp(this, 'visible')) {
this.sVisible = this.isNoTitle() ? false : visible
2017-11-03 10:06:00 +00:00
}
2018-01-11 10:53:51 +00:00
if (!this.isNoTitle()) {
2018-01-12 08:10:41 +00:00
this.$emit('change', visible)
2018-01-11 10:53:51 +00:00
}
},
getPopupDomNode () {
return this.$refs.tooltip.getPopupDomNode()
},
getPlacements () {
const { builtinPlacements, arrowPointAtCenter, autoAdjustOverflow } = this.$props
return builtinPlacements || getPlacements({
arrowPointAtCenter,
verticalArrowShift: 8,
autoAdjustOverflow,
2017-11-03 10:06:00 +00:00
})
},
2018-01-11 10:53:51 +00:00
isHoverTrigger () {
const { trigger } = this.$props
if (!trigger || trigger === 'hover') {
return true
}
if (Array.isArray(trigger)) {
return trigger.indexOf('hover') >= 0
}
return false
},
// 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 (ele) {
const isAntBtn = ele.componentOptions && ele.componentOptions.Ctor.options.__ANT_BUTTON
if (((isAntBtn && ele.componentOptions.propsData.disabled) || (ele.tag === 'button' && ele.data && ele.data.attrs.disabled !== false)) && this.isHoverTrigger()) {
// 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(
getStyle(ele),
['position', 'left', 'right', 'top', 'bottom', 'float', 'display', 'zIndex'],
)
const spanStyle = {
display: 'inline-block', // default inline-block is important
...picked,
cursor: 'not-allowed',
}
const buttonStyle = {
...omited,
pointerEvents: 'none',
}
const spanCls = getClass(ele)
const child = cloneElement(ele, {
style: buttonStyle,
class: null,
})
return (
<span style={spanStyle} class={spanCls}>
{child}
</span>
)
}
return ele
},
isNoTitle () {
const { $slots, title } = this
return !$slots.title && !title
},
// 动态设置动画点
onPopupAlign (domNode, align) {
const placements = this.getPlacements()
// 当前返回的位置
const placement = Object.keys(placements).filter(
key => (
placements[key].points[0] === align.points[0] &&
placements[key].points[1] === align.points[1]
),
)[0]
if (!placement) {
2017-11-07 03:57:16 +00:00
return
}
// 根据当前坐标设置动画点
const rect = domNode.getBoundingClientRect()
const transformOrigin = {
top: '50%',
left: '50%',
2017-11-07 03:57:16 +00:00
}
if (placement.indexOf('top') >= 0 || placement.indexOf('Bottom') >= 0) {
2017-11-07 03:57:16 +00:00
transformOrigin.top = `${rect.height - align.offset[1]}px`
} else if (placement.indexOf('Top') >= 0 || placement.indexOf('bottom') >= 0) {
2017-11-07 03:57:16 +00:00
transformOrigin.top = `${-align.offset[1]}px`
}
if (placement.indexOf('left') >= 0 || placement.indexOf('Right') >= 0) {
2017-11-07 03:57:16 +00:00
transformOrigin.left = `${rect.width - align.offset[0]}px`
} else if (placement.indexOf('right') >= 0 || placement.indexOf('Left') >= 0) {
2017-11-07 03:57:16 +00:00
transformOrigin.left = `${-align.offset[0]}px`
}
2018-01-11 10:53:51 +00:00
domNode.style.transformOrigin = `${transformOrigin.left} ${transformOrigin.top}`
2017-11-07 04:02:33 +00:00
},
},
2018-01-11 10:53:51 +00:00
2017-11-07 03:57:16 +00:00
render (h) {
2018-01-11 10:53:51 +00:00
const { $props, $data, $slots } = this
const { title, prefixCls, openClassName, getPopupContainer, getTooltipContainer } = $props
const children = ($slots.default || []).filter(c => c.tag || c.text.trim() !== '')[0]
let sVisible = $data.sVisible
// Hide tooltip when there is no title
if (!hasProp(this, 'visible') && this.isNoTitle()) {
sVisible = false
}
2018-01-12 08:10:41 +00:00
if (!children) {
return null
}
2018-01-11 10:53:51 +00:00
const child = this.getDisabledCompatibleChildren(isValidElement(children) ? children : <span>{children}</span>)
const childCls = {
[openClassName || `${prefixCls}-open`]: true,
}
const tooltipProps = {
props: {
...$props,
getTooltipContainer: getPopupContainer || getTooltipContainer,
builtinPlacements: this.getPlacements(),
visible: sVisible,
},
ref: 'tooltip',
on: {
visibleChange: this.onVisibleChange,
popupAlign: this.onPopupAlign,
},
}
return (
<RcTooltip {...tooltipProps}>
<template slot='overlay'>
{typeof title === 'function' ? title(h) : title}
{$slots.title}
</template>
{sVisible ? cloneElement(child, { class: childCls }) : child}
</RcTooltip>
)
2017-11-07 03:57:16 +00:00
},
}
</script>