Tooltip.svelte 571 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<script lang="ts">
	import { onDestroy } from 'svelte';
	import tippy from 'tippy.js';

	export let placement = 'top';
	export let content = `I'm a tooltip!`;

	let tooltipElement;
	let tooltipInstance;

	$: if (tooltipElement && content) {
		if (tooltipInstance) {
			tooltipInstance[0]?.destroy();
		}
		tooltipInstance = tippy(tooltipElement, {
			content: content,
			placement: placement,
			allowHTML: true
		});
	}

	onDestroy(() => {
		if (tooltipInstance) {
			tooltipInstance[0]?.destroy();
		}
	});
</script>

<div bind:this={tooltipElement}>
	<slot />
</div>