49 lines
1.1 KiB
Vue
49 lines
1.1 KiB
Vue
|
import { onBeforeUnmount, watch, onActivated, defineComponent, ref } from 'vue';
|
||
|
import Tooltip, { tooltipProps } from '../tooltip';
|
||
|
import raf from '../_util/raf';
|
||
|
|
||
|
export default defineComponent({
|
||
|
name: 'SliderTooltip',
|
||
|
inheritAttrs: false,
|
||
|
props: tooltipProps(),
|
||
|
setup(props, { attrs, slots }) {
|
||
|
const innerRef = ref<any>(null);
|
||
|
|
||
|
const rafRef = ref<number | null>(null);
|
||
|
|
||
|
function cancelKeepAlign() {
|
||
|
raf.cancel(rafRef.value!);
|
||
|
rafRef.value = null;
|
||
|
}
|
||
|
|
||
|
function keepAlign() {
|
||
|
rafRef.value = raf(() => {
|
||
|
innerRef.value?.forcePopupAlign();
|
||
|
rafRef.value = null;
|
||
|
});
|
||
|
}
|
||
|
const align = () => {
|
||
|
cancelKeepAlign();
|
||
|
if (props.visible) {
|
||
|
keepAlign();
|
||
|
}
|
||
|
};
|
||
|
watch(
|
||
|
[() => props.visible, () => props.title],
|
||
|
() => {
|
||
|
align();
|
||
|
},
|
||
|
{ flush: 'post', immediate: true },
|
||
|
);
|
||
|
onActivated(() => {
|
||
|
align();
|
||
|
});
|
||
|
onBeforeUnmount(() => {
|
||
|
cancelKeepAlign();
|
||
|
});
|
||
|
return () => {
|
||
|
return <Tooltip ref={innerRef} {...props} {...attrs} v-slots={slots} />;
|
||
|
};
|
||
|
},
|
||
|
});
|