{"version":3,"file":"toast-9m9KhHCR.js","sources":["../../src/js/components/toast.ts"],"sourcesContent":["interface ToastColors {\n background: string;\n border: string;\n textStrong: string;\n textMuted: string;\n hoverStrong: string;\n}\n\n// Function to parse the variant and return corresponding colors\nfunction parseVariant(variant: string | null): ToastColors {\n switch (variant) {\n case 'destructive':\n return {\n background: 'bg-destructive-200',\n border: 'border-destructive-300',\n textStrong: 'text-destructive-950',\n textMuted: 'text-destructive-900',\n hoverStrong: 'hover:text-destructive-950',\n };\n default:\n return {\n background: 'bg-white',\n border: 'border-border',\n textStrong: 'text-foreground',\n textMuted: 'text-muted-foreground',\n hoverStrong: 'hover:text-foreground',\n };\n }\n}\n\n// Initialize toasts by adding event listeners to elements with [data-toast]\nexport function initToasts() {\n const elements = document.querySelectorAll('[data-toast]');\n elements.forEach((element) => {\n const timeoutString = element.getAttribute('data-toast-timeout') ?? '';\n const timeout = isNaN(parseInt(timeoutString, 10))\n ? undefined\n : parseInt(timeoutString, 10);\n const title =\n element.getAttribute('data-toast-title') || 'Default toast title';\n const message =\n element.getAttribute('data-toast-message') || 'Default toast message';\n const variant = element.getAttribute('data-toast-variant') || 'default';\n element.addEventListener('click', () =>\n createToast(title, message, timeout, variant),\n );\n });\n}\n\n// Function to create a toast\nexport function createToast(\n title: string,\n message: string,\n timeout: number = 0,\n variant: string = 'default',\n) {\n const toast = document.createElement('div');\n const colors = parseVariant(variant);\n\n toast.classList.add(\n 'toast-item',\n 'fixed',\n 'left-0',\n '-translate-x-1/2',\n 'flex',\n 'items-center',\n 'p-4',\n 'rounded-lg',\n 'border',\n 'shadow-xl',\n 'w-11/12',\n 'max-w-md',\n 'md:left-1/2',\n colors.background,\n colors.border,\n colors.textStrong,\n );\n\n toast.innerHTML = `\n \n
${title}
\n${message}
\n