Spaces:
Build error
Build error
File size: 942 Bytes
b37570d 5da61b4 b37570d 5da61b4 b37570d 5da61b4 b37570d 5da61b4 b37570d 5da61b4 b37570d fa4bfea b37570d |
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 32 33 34 35 |
<script lang="ts">
import { fade } from "svelte/transition";
import IconChevron from "./icons/IconChevron.svelte";
import { onDestroy } from "svelte";
export let scrollNode: HTMLElement;
export { className as class };
let visible: boolean = false;
let className = "";
$: if (scrollNode) {
scrollNode.addEventListener("scroll", onScroll);
}
function onScroll() {
visible =
Math.ceil(scrollNode.scrollTop) + 200 < scrollNode.scrollHeight - scrollNode.clientHeight;
}
onDestroy(() => {
if (!scrollNode) return;
scrollNode.removeEventListener("scroll", onScroll);
});
</script>
{#if visible}
<button
transition:fade={{ duration: 150 }}
on:click={() => scrollNode.scrollTo({ top: scrollNode.scrollHeight, behavior: "smooth" })}
class="absolute flex rounded-full border w-10 h-10 items-center justify-center shadow bg-white dark:bg-gray-700 dark:border-gray-600 {className}"
><IconChevron /></button
>
{/if}
|