hypnagaga/src/components/Visible/Visible.svelte

68 lines
2.4 KiB
Svelte

<!-- @component `Visible` [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-utilities-visible--docs) -->
<script lang="ts">
import { onMount, type Snippet } from 'svelte';
interface Props {
/**
* Whether to change visibility just once.
*
* Useful for loading expensive images or other media and then keeping them around once they're first loaded.
*/
once?: boolean;
/** Set Intersection Observer [rootMargin](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API#rootmargin) `top` with units. Accepted units are `px` or `%`. */
top?: string;
/** Set Intersection Observer [rootMargin](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API#rootmargin) `bottom` with units. Accepted units are `px` or `%`. */
bottom?: string;
/** Set Intersection Observer [rootMargin](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API#rootmargin) `left` with units. Accepted units are `px` or `%`. */
left?: string;
/** Set Intersection Observer [rootMargin](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API#rootmargin) `right` with units. Accepted units are `px` or `%`. */
right?: string;
/** Set the Intersection Observer [threshold](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API#threshold). */
threshold?: number;
children?: Snippet<[boolean]>;
}
let {
once = false,
top = '0px',
bottom = '0px',
left = '0px',
right = '0px',
threshold = 0,
children,
}: Props = $props();
let visible = $state(false);
let container: HTMLElement | undefined = $state(undefined);
onMount(() => {
if (typeof IntersectionObserver !== 'undefined') {
const rootMargin = `${bottom} ${left} ${top} ${right}`;
const observer = new IntersectionObserver(
(entries) => {
visible = entries[0].isIntersecting;
if (visible && once && container) {
observer.unobserve(container);
}
},
{
rootMargin,
threshold,
}
);
if (container) observer.observe(container);
return () => {
if (container) observer.observe(container);
};
}
});
$effect(() => console.log('visible', visible));
</script>
<div bind:this={container}>
{#if children}
{@render children(visible)}
{/if}
</div>