2024-03-02 09:00:20 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { onDestroy } from 'svelte';
|
|
|
|
import tippy from 'tippy.js';
|
|
|
|
|
|
|
|
export let placement = 'top';
|
|
|
|
export let content = `I'm a tooltip!`;
|
2024-03-02 09:27:01 +00:00
|
|
|
export let touch = true;
|
2024-03-02 09:00:20 +00:00
|
|
|
|
|
|
|
let tooltipElement;
|
|
|
|
let tooltipInstance;
|
|
|
|
|
|
|
|
$: if (tooltipElement && content) {
|
|
|
|
if (tooltipInstance) {
|
2024-03-02 09:20:50 +00:00
|
|
|
tooltipInstance.setContent(content);
|
|
|
|
} else {
|
|
|
|
tooltipInstance = tippy(tooltipElement, {
|
|
|
|
content: content,
|
|
|
|
placement: placement,
|
2024-03-02 09:27:01 +00:00
|
|
|
allowHTML: true,
|
|
|
|
touch: touch
|
2024-03-02 09:20:50 +00:00
|
|
|
});
|
2024-03-02 09:00:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onDestroy(() => {
|
|
|
|
if (tooltipInstance) {
|
2024-03-02 09:20:50 +00:00
|
|
|
tooltipInstance.destroy();
|
2024-03-02 09:00:20 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div bind:this={tooltipElement}>
|
|
|
|
<slot />
|
|
|
|
</div>
|