mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
2.8 KiB
126 lines
2.8 KiB
1 year ago
|
<script lang="ts" setup>
|
||
|
import { onKeyStroke } from '@vueuse/core'
|
||
|
import type { CSSProperties } from '@vue/runtime-dom'
|
||
|
import type { TooltipPlacement } from 'ant-design-vue/lib/tooltip'
|
||
|
import { controlledRef, ref, useAttrs, useElementHover, watch } from '#imports'
|
||
|
|
||
|
interface Props {
|
||
|
// Key to be pressed on hover to trigger the tooltip
|
||
|
modifierKey?: string
|
||
|
tooltipStyle?: CSSProperties
|
||
|
// force disable tooltip
|
||
|
disabled?: boolean
|
||
|
placement?: TooltipPlacement | undefined
|
||
|
hideOnClick?: boolean
|
||
|
}
|
||
|
|
||
|
const { modifierKey, tooltipStyle, disabled, hideOnClick } = defineProps<Props>()
|
||
|
|
||
|
const el = ref()
|
||
|
|
||
|
const showTooltip = controlledRef(false, {
|
||
|
onBeforeChange: (shouldShow) => {
|
||
|
if (shouldShow && disabled) return false
|
||
|
},
|
||
|
})
|
||
|
|
||
|
const isHovering = useElementHover(() => el.value)
|
||
|
|
||
|
const attrs = useAttrs()
|
||
|
|
||
|
const isKeyPressed = ref(false)
|
||
|
|
||
|
onKeyStroke(
|
||
|
(e) => e.key === modifierKey,
|
||
|
(e) => {
|
||
|
e.preventDefault()
|
||
|
|
||
|
if (isHovering.value) {
|
||
|
showTooltip.value = true
|
||
|
}
|
||
|
|
||
|
isKeyPressed.value = true
|
||
|
},
|
||
|
{ eventName: 'keydown' },
|
||
|
)
|
||
|
|
||
|
onKeyStroke(
|
||
|
(e) => e.key === modifierKey,
|
||
|
(e) => {
|
||
|
e.preventDefault()
|
||
|
|
||
|
showTooltip.value = false
|
||
|
isKeyPressed.value = false
|
||
|
},
|
||
|
{ eventName: 'keyup' },
|
||
|
)
|
||
|
|
||
|
watch([isHovering, () => modifierKey, () => disabled], ([hovering, key, isDisabled]) => {
|
||
|
if (!hovering || isDisabled) {
|
||
|
showTooltip.value = false
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Show tooltip on mouseover if no modifier key is provided
|
||
|
if (hovering && !key) {
|
||
|
showTooltip.value = true
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// While hovering if the modifier key was changed and the key is not pressed, hide tooltip
|
||
|
if (hovering && key && !isKeyPressed.value) {
|
||
|
showTooltip.value = false
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// When mouse leaves the element, then re-enters the element while key stays pressed, show the tooltip
|
||
|
if (!showTooltip.value && hovering && key && isKeyPressed.value) {
|
||
|
showTooltip.value = true
|
||
|
}
|
||
|
})
|
||
|
|
||
|
const divStyles = computed(() => ({
|
||
|
style: attrs.style as CSSProperties,
|
||
|
class: attrs.class as string,
|
||
|
}))
|
||
|
|
||
|
const onClick = () => {
|
||
|
if (hideOnClick && showTooltip.value) {
|
||
|
showTooltip.value = false
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<a-tooltip
|
||
|
v-model:visible="showTooltip"
|
||
|
:overlay-class-name="`nc-tooltip ${showTooltip ? 'visible' : 'hidden'}`"
|
||
|
:overlay-style="tooltipStyle"
|
||
|
arrow-point-at-center
|
||
|
:trigger="[]"
|
||
|
:placement="placement"
|
||
|
>
|
||
|
<template #title>
|
||
|
<slot name="title" />
|
||
|
</template>
|
||
|
|
||
|
<div ref="el" v-bind="divStyles" @mousedown="onClick">
|
||
|
<slot />
|
||
|
</div>
|
||
|
</a-tooltip>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.nc-tooltip.hidden {
|
||
|
@apply invisible;
|
||
|
}
|
||
|
.nc-tooltip {
|
||
|
.ant-tooltip-inner {
|
||
|
@apply !px-2 !py-1 !rounded-lg !bg-gray-800;
|
||
|
}
|
||
|
.ant-tooltip-arrow-content {
|
||
|
@apply !bg-gray-800;
|
||
|
}
|
||
|
}
|
||
|
</style>
|