fix: add timeout on born transition of toast to handle faster toast creation

This commit is contained in:
p-sw 2024-05-29 20:32:43 +09:00
parent 3a710abe4c
commit f4f931b0f4

View File

@ -170,11 +170,13 @@ const ToastTemplate = ({
React.useEffect(() => { React.useEffect(() => {
if (toastData.life === "born") { if (toastData.life === "born") {
toasts[id] = { setTimeout(() => {
...toasts[id], toasts[id] = {
life: "normal", ...toasts[id],
}; life: "normal",
notifySingle(id); };
notifySingle(id);
}, 5 /* transition not working on fast toast creation with small timeout value */);
} }
if (toastData.life === "normal" && toastData.closeTimeout !== null) { if (toastData.life === "normal" && toastData.closeTimeout !== null) {
const timeout = setTimeout(() => { const timeout = setTimeout(() => {