import { type VariantProps, getCalculatedTransitionDuration, useDocument, vcn, } from "@pswui-lib"; import React, { type MutableRefObject, useEffect, useId, useRef } from "react"; import ReactDOM from "react-dom"; import { type ToastOption, close, defaultToastOption, getSingleSnapshot, getSnapshot, notify, notifySingle, subscribe, subscribeSingle, toasts, } from "./Store"; import { toastVariant } from "./Variant"; 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(function untilBorn() { /* To confirm that the toast is rendered as "born" state and then change to "normal" state This way will make sure born -> normal stage transition animation will work. */ const elm = document.querySelector( `div[data-toaster-root] > div[data-toast-id="${id}"][data-toast-lifecycle="born"]`, ); if (!elm) return requestAnimationFrame(untilBorn); 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 calculatedTransitionDurationMs = 1; if (ref.current) calculatedTransitionDurationMs = getCalculatedTransitionDuration( ref as MutableRefObject, ); const timeout = setTimeout(() => { delete toasts[id]; notify(); }, calculatedTransitionDurationMs); return () => clearTimeout(timeout); } }, [id, toastData.life, toastData.closeTimeout]); 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 document = useDocument(); if (!document) return null; 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, )} ); }); Toaster.displayName = "Toaster"; export { Toaster };