mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 21:37:32 -08:00
fix(editor): Fix emitting n8nReady
notification via postmessage
on new canvas (#11558)
This commit is contained in:
parent
ef54760064
commit
463d101f35
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue