File size: 3,643 Bytes
3df1e9f |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
<script lang="ts">
import { fly } from "svelte/transition";
import { toaster } from "./toaster.svelte.js";
import { Progress } from "melt/components";
import Close from "~icons/material-symbols/close-rounded";
</script>
<div {...toaster.root} class="fixed !right-4 !bottom-4 flex w-[300px] flex-col" style:--toasts={toaster.toasts.length}>
{#each toaster.toasts as toast, i (toast.id)}
<div
class="relative flex h-[--toast-height] w-full flex-col justify-center rounded-xl bg-white px-4 text-left transition dark:bg-gray-800"
{...toast.content}
style:--n={toaster.toasts.length - i}
in:fly={{ y: 60, opacity: 0.9 }}
out:fly={{ y: 20 }}
>
<h3 {...toast.title} class="text-sm font-medium whitespace-nowrap">
{toast.data.title}
</h3>
{#if toast.data.description}
<div {...toast.description} class="text-xs text-gray-700 dark:text-gray-300">
{toast.data.description}
</div>
{/if}
<button
{...toast.close}
aria-label="dismiss toast"
class="absolute top-1 right-1 bg-transparent text-gray-300 hover:text-gray-400 dark:hover:text-gray-100"
>
<Close class="h-3.5 w-3.5" />
</button>
{#if toast.closeDelay !== 0}
<div class="absolute right-4 bottom-4 h-[4px] w-[30px] overflow-hidden rounded-full">
<Progress value={toast.percentage}>
{#snippet children(progress)}
<div {...progress.root} class="relative h-full w-full overflow-hidden bg-gray-200 dark:bg-gray-950">
<div
{...progress.progress}
class="h-full w-full -translate-x-[var(--progress)]"
class:bg-green-400={toast.data.variant === "success"}
class:bg-orange-400={toast.data.variant === "warning"}
class:bg-red-500={toast.data.variant === "error"}
></div>
</div>
{/snippet}
</Progress>
</div>
{/if}
</div>
{/each}
</div>
<style>
:global([popover]) {
inset: unset;
}
[data-melt-toaster-root] {
--gap: 0.75rem;
--hover-offset: 1rem;
--toast-height: 4rem;
--hidden-offset: 0.75rem;
--hidden-toasts: calc(var(--toasts) - 1);
overflow: visible;
display: grid;
grid-template-rows: var(--toast-height) repeat(var(--hidden-toasts), var(--hidden-offset));
grid-template-columns: 1fr;
gap: 0;
background: unset;
padding: 0;
}
[data-melt-toaster-root]:hover {
grid-template-rows: var(--hidden-offset) var(--toast-height) repeat(
var(--hidden-toasts),
calc(var(--toast-height) + var(--gap))
);
}
[data-melt-toaster-toast-content] {
position: absolute;
pointer-events: auto;
bottom: 0;
left: 0;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
transform-origin: 50% 0%;
transition: all 350ms ease;
}
:global([data-theme="dark"] [data-melt-toaster-toast-content]) {
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
[data-melt-toaster-toast-content]:nth-last-child(n + 4) {
z-index: 1;
scale: 0.925;
opacity: 0;
translate: 0 calc(-3 * var(--hidden-offset));
}
[data-melt-toaster-toast-content]:nth-last-child(-n + 3) {
z-index: 2;
scale: 0.95;
translate: 0 calc(-2 * var(--hidden-offset));
}
[data-melt-toaster-toast-content]:nth-last-child(-n + 2) {
z-index: 3;
scale: 0.975;
translate: 0 calc(-1 * var(--hidden-offset));
}
[data-melt-toaster-toast-content]:nth-last-child(-n + 1) {
z-index: 4;
scale: 1;
translate: 0;
}
[data-melt-toaster-root]:hover [data-melt-toaster-toast-content] {
scale: 1;
opacity: 1;
--toast-gap: calc(calc(var(--gap) * var(--n)) + var(--hover-offset));
--percentage: calc(-100% * calc(var(--n) - 1));
translate: 0 calc(var(--percentage) - var(--toast-gap));
}
</style>
|