fix: use requestAnimationFrame instead of setTimeout to make sure toast is born
This commit is contained in:
parent
f4f931b0f4
commit
f780ca1dd0
@ -170,13 +170,15 @@ const ToastTemplate = ({
|
|||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
if (toastData.life === "born") {
|
if (toastData.life === "born") {
|
||||||
setTimeout(() => {
|
requestAnimationFrame(() => {
|
||||||
|
// To make sure that the toast is rendered as "born" state
|
||||||
|
// and then change to "normal" state
|
||||||
toasts[id] = {
|
toasts[id] = {
|
||||||
...toasts[id],
|
...toasts[id],
|
||||||
life: "normal",
|
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(() => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user