feat(core): app添加dsl-change事件

This commit is contained in:
roymondchen 2025-03-04 17:07:45 +08:00
parent 3c66319b03
commit a4d021d2fb

View File

@ -144,7 +144,12 @@ class App extends EventEmitter {
this.dataSourceManager = createDataSourceManager(this, this.useMock); this.dataSourceManager = createDataSourceManager(this, this.useMock);
this.codeDsl = config.codeBlocks; this.codeDsl = config.codeBlocks;
this.setPage(curPage || this.page?.data?.id);
const pageId = curPage || this.page?.data?.id;
super.emit('dsl-change', { dsl: config, curPage: pageId });
this.setPage(pageId);
if (this.dataSourceManager) { if (this.dataSourceManager) {
const dataSourceList = Array.from(this.dataSourceManager.dataSourceMap.values()); const dataSourceList = Array.from(this.dataSourceManager.dataSourceMap.values());
@ -162,19 +167,22 @@ class App extends EventEmitter {
return; return;
} }
if (pageConfig === this.page?.data) return; if (this.page) {
if (pageConfig === this.page.data) return;
this.page?.destroy(); this.page.destroy();
}
this.page = new Page({ this.page = new Page({
config: pageConfig, config: pageConfig,
app: this, app: this,
}); });
this.eventHelper?.removeNodeEvents(); if (this.eventHelper) {
this.page.nodes.forEach((node) => { this.eventHelper.removeNodeEvents();
this.eventHelper?.bindNodeEvents(node); for (const [, node] of this.page.nodes) {
}); this.eventHelper.bindNodeEvents(node);
}
}
super.emit('page-change', this.page); super.emit('page-change', this.page);
} }