From 9cc590be1bdff7ac56017bf427dd1f9da6f358fd Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 25 May 2024 09:15:43 +0800 Subject: [PATCH] Extra check if the composer is publishing --- src/components/compose.jsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/components/compose.jsx b/src/components/compose.jsx index c402eb66..ea1c348c 100644 --- a/src/components/compose.jsx +++ b/src/components/compose.jsx @@ -788,9 +788,16 @@ function Compose({ } if (window.opener.__STATES__.showCompose) { - const yes = confirm( - 'Looks like you already have a compose field open in the parent window. Popping in this window will discard the changes you made in the parent window. Continue?', - ); + if (window.opener.__STATES__.composerState?.publishing) { + alert( + 'Looks like you already have a compose field open in the parent window and currently publishing. Please wait for it to be done and try again later.', + ); + return; + } + + let confirmText = + 'Looks like you already have a compose field open in the parent window. Popping in this window will discard the changes you made in the parent window. Continue?'; + const yes = confirm(confirmText); if (!yes) return; }