fix(core): 公共点击事件在非浏览器环境不执行

This commit is contained in:
roymondchen 2024-12-27 14:52:04 +08:00
parent 46a26af5d6
commit ec94eed787

View File

@ -76,14 +76,18 @@ export default class EventHelper extends EventEmitter {
this.app = app;
globalThis.document.body.addEventListener('click', this.commonClickEventHandler);
if (app.jsEngine === 'browser') {
globalThis.document.body.addEventListener('click', this.commonClickEventHandler);
}
}
public destroy() {
this.removeNodeEvents();
this.removeAllListeners();
globalThis.document.body.removeEventListener('click', this.commonClickEventHandler);
if (this.app.jsEngine === 'browser') {
globalThis.document.body.removeEventListener('click', this.commonClickEventHandler);
}
}
public bindNodeEvents(node: TMagicNode) {