fix: remove version usage in toast

This commit is contained in:
p-sw 2024-05-28 21:34:14 +09:00
parent b53581f750
commit 69a3a3b060

View File

@ -53,8 +53,7 @@ interface ToastBody extends Omit<VariantProps<typeof toastVariant>, "preset"> {
let index = 0; let index = 0;
let toasts: Record< let toasts: Record<
`${number}`, `${number}`,
ToastBody & ToastBody & Partial<ToastOption> & { subscribers: (() => void)[] }
Partial<ToastOption> & { subscribers: (() => void)[]; version: number }
> = {}; > = {};
let subscribers: (() => void)[] = []; let subscribers: (() => void)[] = [];
@ -106,7 +105,6 @@ function close(id: `${number}`) {
toasts[id] = { toasts[id] = {
...toasts[id], ...toasts[id],
life: "dead", life: "dead",
version: toasts[id].version + 1,
}; };
notifySingle(id); notifySingle(id);
} }
@ -118,7 +116,6 @@ function update(
toasts[id] = { toasts[id] = {
...toasts[id], ...toasts[id],
...toast, ...toast,
version: toasts[id].version + 1,
}; };
notifySingle(id); notifySingle(id);
} }
@ -129,7 +126,6 @@ function addToast(toast: Omit<ToastBody, "life"> & Partial<ToastOption>) {
...toast, ...toast,
subscribers: [], subscribers: [],
life: "born", life: "born",
version: 0,
}; };
index += 1; index += 1;
notify(); notify();
@ -177,7 +173,6 @@ const ToastTemplate = ({
toasts[id] = { toasts[id] = {
...toasts[id], ...toasts[id],
life: "normal", life: "normal",
version: toasts[id].version + 1,
}; };
notifySingle(id); notifySingle(id);
} }
@ -227,12 +222,13 @@ const ToastTemplate = ({
s: 1000, s: 1000,
ms: 1, ms: 1,
}[transitionDuration.unit] ?? 1); }[transitionDuration.unit] ?? 1);
setTimeout(() => { const timeout = setTimeout(() => {
delete toasts[id]; delete toasts[id];
notify(); notify();
}, calculatedTransitionDuration); }, calculatedTransitionDuration);
return () => clearTimeout(timeout);
} }
}, [toastData.version]); }, [toastData.life, toastData.closeTimeout, toastData.closeButton]);
return ( return (
<div <div