From 2f9e155cbe65bb565206ef1289d8598c4e379864 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 01:47:38 +0900 Subject: [PATCH] fix(Toast/Component/Toaster): apply withServerSideDocument on Toaster --- packages/react/components/Toast/Component.tsx | 118 +++++++++--------- 1 file changed, 60 insertions(+), 58 deletions(-) diff --git a/packages/react/components/Toast/Component.tsx b/packages/react/components/Toast/Component.tsx index 47d7d5b..e9c4675 100644 --- a/packages/react/components/Toast/Component.tsx +++ b/packages/react/components/Toast/Component.tsx @@ -1,4 +1,4 @@ -import { type VariantProps, vcn } from "@pswui-lib"; +import { type VariantProps, vcn, withServerSideDocument } from "@pswui-lib"; import React, { useEffect, useId, useRef } from "react"; import ReactDOM from "react-dom"; @@ -145,69 +145,71 @@ interface ToasterProps muteDuplicationWarning?: boolean; } -const Toaster = React.forwardRef((props, ref) => { - const id = useId(); - const [variantProps, otherPropsCompressed] = - resolveToasterVariantProps(props); - const { defaultOption, muteDuplicationWarning, ...otherPropsExtracted } = - otherPropsCompressed; +const Toaster = withServerSideDocument( + 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); + const [toastList, setToastList] = React.useState(toasts); + const internalRef = useRef(null); - useEffect(() => { - return subscribe(() => { - setToastList(getSnapshot()); - }); - }, []); + useEffect(() => { + return subscribe(() => { + setToastList(getSnapshot()); + }); + }, []); - const option = React.useMemo(() => { - return { - ...defaultToastOption, - ...defaultOption, - }; - }, [defaultOption]); + 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.", - ); + 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 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, - )} - - ); -}); + 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 };