mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(editor): Fix emitting n8nReady notification via postmessage on new canvas (#11558)
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user