feat: make sure toast is rendered as born first
This commit is contained in:
parent
371453b544
commit
a90cec770c
@ -46,9 +46,16 @@ const ToastTemplate = ({
|
|||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
if (toastData.life === "born") {
|
if (toastData.life === "born") {
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(function untilBorn() {
|
||||||
// To make sure that the toast is rendered as "born" state
|
/*
|
||||||
// and then change to "normal" state
|
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] = {
|
||||||
...toasts[id],
|
...toasts[id],
|
||||||
life: "normal",
|
life: "normal",
|
||||||
@ -83,6 +90,8 @@ const ToastTemplate = ({
|
|||||||
life: toastData.life,
|
life: toastData.life,
|
||||||
})}
|
})}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
|
data-toast-id={id}
|
||||||
|
data-toast-lifecycle={toastData.life}
|
||||||
>
|
>
|
||||||
{toastData.closeButton && (
|
{toastData.closeButton && (
|
||||||
<button
|
<button
|
||||||
|
Loading…
x
Reference in New Issue
Block a user