fix(editor): Fix emitting n8nReady notification via postmessage on new canvas (#11558)

This commit is contained in:
Alex Grozav
2024-11-05 15:17:41 +02:00
committed by GitHub
parent ef54760064
commit 463d101f35

View File

@@ -1276,7 +1276,13 @@ function removeSourceControlEventBindings() {
function addPostMessageEventBindings() {
window.addEventListener('message', onPostMessageReceived);
}
function removePostMessageEventBindings() {
window.removeEventListener('message', onPostMessageReceived);
}
function emitPostMessageReady() {
if (window.parent) {
window.parent.postMessage(
JSON.stringify({ command: 'n8nReady', version: rootStore.versionCli }),
@@ -1285,10 +1291,6 @@ function addPostMessageEventBindings() {
}
}
function removePostMessageEventBindings() {
window.removeEventListener('message', onPostMessageReceived);
}
async function onPostMessageReceived(messageEvent: MessageEvent) {
if (
!messageEvent ||
@@ -1516,6 +1518,8 @@ onBeforeMount(() => {
if (!isDemoRoute.value) {
pushConnectionStore.pushConnect();
}
addPostMessageEventBindings();
});
onMounted(() => {
@@ -1536,6 +1540,8 @@ onMounted(() => {
canvasStore.stopLoading();
void externalHooks.run('nodeView.mount').catch(() => {});
emitPostMessageReady();
});
void usersStore.showPersonalizationSurvey();
@@ -1544,7 +1550,6 @@ onMounted(() => {
});
addSourceControlEventBindings();
addPostMessageEventBindings();
addWorkflowSavedEventBindings();
addBeforeUnloadEventBindings();
addImportEventBindings();