mirror of https://github.com/nocodb/nocodb
Muhammed Mustafa
2 years ago
3 changed files with 49 additions and 3 deletions
@ -0,0 +1,45 @@ |
|||||||
|
<script lang="ts" setup> |
||||||
|
import { onKeyStroke } from '@vueuse/core' |
||||||
|
|
||||||
|
interface Props { |
||||||
|
// Key to be pressed on hover to trigger the tooltip |
||||||
|
modifierKey?: string |
||||||
|
wrapperClass?: string |
||||||
|
} |
||||||
|
|
||||||
|
const { modifierKey } = defineProps<Props>() |
||||||
|
|
||||||
|
const showTooltip = ref(false) |
||||||
|
const isMouseOver = ref(false) |
||||||
|
|
||||||
|
if (modifierKey) { |
||||||
|
onKeyStroke(modifierKey, (e) => { |
||||||
|
e.preventDefault() |
||||||
|
if (modifierKey && isMouseOver.value) { |
||||||
|
showTooltip.value = true |
||||||
|
} |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
watch(isMouseOver, (val) => { |
||||||
|
if (!val) { |
||||||
|
showTooltip.value = false |
||||||
|
} |
||||||
|
|
||||||
|
// Show tooltip on mouseover if no modifier key is provided |
||||||
|
if (val && !modifierKey) { |
||||||
|
showTooltip.value = true |
||||||
|
} |
||||||
|
}) |
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<a-tooltip v-model:visible="showTooltip" :trigger="[]"> |
||||||
|
<template #title> |
||||||
|
<slot name="title" /> |
||||||
|
</template> |
||||||
|
<div class="w-full" :class="wrapperClass" @mouseenter="isMouseOver = true" @mouseleave="isMouseOver = false"> |
||||||
|
<slot /> |
||||||
|
</div> |
||||||
|
</a-tooltip> |
||||||
|
</template> |
Loading…
Reference in new issue