import React, { useEffect, useId, useRef } from "react"; import ReactDOM from "react-dom"; import { VariantProps, vcn } from "@pswui-lib"; interface ToastOption { closeButton: boolean; closeTimeout: number | null; } const defaultToastOption: ToastOption = { closeButton: true, closeTimeout: 3000, }; const toastColors = { background: "bg-white dark:bg-black", borders: { default: "border-black/10 dark:border-white/20", error: "border-red-500/80", success: "border-green-500/80", warning: "border-yellow-500/80", loading: "border-black/50 dark:border-white/50 animate-pulse", }, }; const [toastVariant] = vcn({ base: `flex flex-col gap-2 border p-4 rounded-lg pr-8 pointer-events-auto ${toastColors.background} relative transition-all duration-150`, variants: { status: { default: toastColors.borders.default, error: toastColors.borders.error, success: toastColors.borders.success, warning: toastColors.borders.warning, loading: toastColors.borders.loading, }, life: { born: "-translate-y-full md:translate-y-full scale-90 ease-[cubic-bezier(0,.6,.7,1)]", normal: "translate-y-0 scale-100 ease-[cubic-bezier(0,.6,.7,1)]", dead: "-translate-y-full md:translate-y-full scale-90 ease-[cubic-bezier(.6,0,1,.7)]", }, }, defaults: { status: "default", life: "born", }, }); interface ToastBody extends Omit, "preset"> { title: string; description: string; } let index = 0; const toasts: Record< `${number}`, ToastBody & Partial & { subscribers: (() => void)[] } > = {}; let subscribers: (() => void)[] = []; /** * ==== * Controls * ==== */ function subscribe(callback: () => void) { subscribers.push(callback); return () => { subscribers = subscribers.filter((subscriber) => subscriber !== callback); }; } function getSnapshot() { return { ...toasts }; } function subscribeSingle(id: `${number}`) { return (callback: () => void) => { toasts[id].subscribers.push(callback); return () => { toasts[id].subscribers = toasts[id].subscribers.filter( (subscriber) => subscriber !== callback, ); }; }; } function getSingleSnapshot(id: `${number}`) { return () => { return { ...toasts[id], }; }; } function notify() { subscribers.forEach((subscriber) => subscriber()); } function notifySingle(id: `${number}`) { toasts[id].subscribers.forEach((subscriber) => subscriber()); } function close(id: `${number}`) { toasts[id] = { ...toasts[id], life: "dead", }; notifySingle(id); } function update( id: `${number}`, toast: Partial & Partial>, ) { toasts[id] = { ...toasts[id], ...toast, }; notifySingle(id); } function addToast(toast: Omit & Partial) { const id: `${number}` = `${index}`; toasts[id] = { ...toast, subscribers: [], life: "born", }; index += 1; notify(); return { update: (toast: Partial & Partial>) => update(id, toast), close: () => close(id), }; } function useToast() { return { toast: addToast, update, close, }; } const ToastTemplate = ({ id, globalOption, }: { id: `${number}`; globalOption: ToastOption; }) => { const [toast, setToast] = React.useState<(typeof toasts)[`${number}`]>( toasts[id], ); const ref = React.useRef(null); useEffect(() => { subscribeSingle(id)(() => { setToast(getSingleSnapshot(id)()); }); }, [id]); const toastData = { ...globalOption, ...toast, }; React.useEffect(() => { if (toastData.life === "born") { requestAnimationFrame(() => { // To make sure that the toast is rendered as "born" state // and then change to "normal" state toasts[id] = { ...toasts[id], life: "normal", }; notifySingle(id); }); } if (toastData.life === "normal" && toastData.closeTimeout !== null) { const timeout = setTimeout(() => { close(id); }, toastData.closeTimeout); return () => clearTimeout(timeout); } if (toastData.life === "dead") { let transitionDuration: { value: number; unit: string; } | null; if (!ref.current) { transitionDuration = null; } else if (ref.current.computedStyleMap !== undefined) { transitionDuration = ref.current .computedStyleMap() .get("transition-duration") as { value: number; unit: string }; } else { const style = /(\d+(\.\d+)?)(.+)/.exec( window.getComputedStyle(ref.current).transitionDuration, ); transitionDuration = style ? { value: parseFloat(style[1] ?? "0"), unit: style[3] ?? style[2] ?? "s", } : null; } if (!transitionDuration) { delete toasts[id]; notify(); return; } const calculatedTransitionDuration = transitionDuration.value * ({ s: 1000, ms: 1, }[transitionDuration.unit] ?? 1); const timeout = setTimeout(() => { delete toasts[id]; notify(); }, calculatedTransitionDuration); return () => clearTimeout(timeout); } }, [id, toastData.life, toastData.closeTimeout, toastData.closeButton]); return (
{toastData.closeButton && ( )}
{toastData.title}
{toastData.description}
); }; const [toasterVariant, resolveToasterVariantProps] = vcn({ base: "fixed p-4 flex flex-col gap-4 top-0 right-0 w-full md:max-w-md md:bottom-0 md:top-auto pointer-events-none z-40", variants: {}, defaults: {}, }); interface ToasterProps extends React.ComponentPropsWithoutRef<"div">, VariantProps { defaultOption?: Partial; muteDuplicationWarning?: boolean; } const Toaster = React.forwardRef((props, ref) => { const id = useId(); const [variantProps, otherPropsCompressed] = resolveToasterVariantProps(props); const { defaultOption, muteDuplicationWarning, ...otherPropsExtracted } = otherPropsCompressed; const [toastList, setToastList] = React.useState(toasts); const internalRef = useRef(null); useEffect(() => { return subscribe(() => { setToastList(getSnapshot()); }); }, []); const option = React.useMemo(() => { return { ...defaultToastOption, ...defaultOption, }; }, [defaultOption]); const toasterInstance = document.querySelector("div[data-toaster-root]"); if (toasterInstance && id !== toasterInstance.id) { if (process.env.NODE_ENV === "development" && !muteDuplicationWarning) { console.warn( `Multiple Toaster instances detected. Only one Toaster is allowed.`, ); } return null; } return ( <> {ReactDOM.createPortal(
{ internalRef.current = el; if (typeof ref === "function") { ref(el); } else if (ref) { ref.current = el; } }} id={id} > {Object.entries(toastList).map(([id]) => ( ))}
, document.body, )} ); }); export { Toaster, useToast };