mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-17 13:38:07 +01:00
144 lines
3.3 KiB
Vue
144 lines
3.3 KiB
Vue
<template>
|
|
<div ref="trigger" :class="wrapperClass" @mouseover="onMouseOver" @mouseleave="onMouseLeave">
|
|
<slot :open="open">
|
|
Hover me
|
|
</slot>
|
|
|
|
<div v-if="open && !prevent" ref="container" :class="[containerClass, widthClass]">
|
|
<transition appear v-bind="transitionClass">
|
|
<div :class="[baseClass, backgroundClass, roundedClass, shadowClass, ringClass]">
|
|
<slot name="text">
|
|
<span class="truncate">{{ text }}</span>
|
|
</slot>
|
|
|
|
<span v-if="shortcuts?.length" class="inline-flex items-center justify-end flex-shrink-0 gap-0.5 ml-1">
|
|
<span class="mr-1 u-text-gray-700">·</span>
|
|
<kbd v-for="shortcut of shortcuts" :key="shortcut" class="flex items-center justify-center font-sans px-1 h-4 min-w-[16px] text-[10px] u-bg-gray-100 rounded u-text-gray-900">
|
|
{{ shortcut }}
|
|
</kbd>
|
|
</span>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PropType } from 'vue'
|
|
import { computed, ref } from 'vue'
|
|
import { defu } from 'defu'
|
|
import { usePopper } from '../../composables/usePopper'
|
|
import type { PopperOptions } from '../../types'
|
|
import $ui from '#build/ui'
|
|
|
|
const props = defineProps({
|
|
text: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
prevent: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
shortcuts: {
|
|
type: Array as PropType<string[]>,
|
|
default: () => []
|
|
},
|
|
wrapperClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.wrapper
|
|
},
|
|
containerClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.container
|
|
},
|
|
widthClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.width
|
|
},
|
|
backgroundClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.background
|
|
},
|
|
shadowClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.shadow
|
|
},
|
|
ringClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.ring
|
|
},
|
|
roundedClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.rounded
|
|
},
|
|
baseClass: {
|
|
type: String,
|
|
default: () => $ui.tooltip.base
|
|
},
|
|
transitionClass: {
|
|
type: Object,
|
|
default: () => $ui.tooltip.transition
|
|
},
|
|
popperOptions: {
|
|
type: Object as PropType<PopperOptions>,
|
|
default: () => ({})
|
|
},
|
|
openDelay: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
closeDelay: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
})
|
|
|
|
const popperOptions = computed<PopperOptions>(() => defu({}, props.popperOptions, $ui.tooltip.popperOptions))
|
|
|
|
const [trigger, container] = usePopper(popperOptions.value)
|
|
|
|
const open = ref(false)
|
|
|
|
let openTimeout: NodeJS.Timeout | null = null
|
|
let closeTimeout: NodeJS.Timeout | null = null
|
|
|
|
// Methods
|
|
|
|
function onMouseOver () {
|
|
// cancel programmed closing
|
|
if (closeTimeout) {
|
|
clearTimeout(closeTimeout)
|
|
closeTimeout = null
|
|
}
|
|
// dropdown already open
|
|
if (open.value) {
|
|
return
|
|
}
|
|
openTimeout = openTimeout || setTimeout(() => {
|
|
open.value = true
|
|
openTimeout = null
|
|
}, props.openDelay)
|
|
}
|
|
|
|
function onMouseLeave () {
|
|
// cancel programmed opening
|
|
if (openTimeout) {
|
|
clearTimeout(openTimeout)
|
|
openTimeout = null
|
|
}
|
|
// dropdown already closed
|
|
if (!open.value) {
|
|
return
|
|
}
|
|
closeTimeout = closeTimeout || setTimeout(() => {
|
|
open.value = false
|
|
closeTimeout = null
|
|
}, props.closeDelay)
|
|
}
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default { name: 'UTooltip' }
|
|
</script>
|