mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 05:36:39 +00:00
78 lines
1.9 KiB
TypeScript
78 lines
1.9 KiB
TypeScript
import { Editor as InnerEditor, globalContext } from '@alilc/lowcode-editor-core';
|
|
import { getLogger } from '@alilc/lowcode-utils';
|
|
import { editorSymbol } from './symbols';
|
|
|
|
const logger = getLogger({ level: 'warn', bizName: 'shell:event' });
|
|
|
|
type EventOptions = {
|
|
prefix: string;
|
|
};
|
|
|
|
export default class Event {
|
|
private readonly [editorSymbol]: InnerEditor;
|
|
private readonly options: EventOptions;
|
|
|
|
// TODO:
|
|
/**
|
|
* 内核触发的事件名
|
|
*/
|
|
readonly names = [];
|
|
|
|
constructor(editor: InnerEditor, options: EventOptions) {
|
|
this[editorSymbol] = editor;
|
|
this.options = options;
|
|
if (!this.options.prefix) {
|
|
logger.warn('prefix is required while initializing Event');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 监听事件
|
|
* @param event 事件名称
|
|
* @param listener 事件回调
|
|
*/
|
|
on(event: string, listener: (...args: unknown[]) => void) {
|
|
if (event.startsWith('designer')) {
|
|
logger.warn('designer events are disabled');
|
|
return;
|
|
}
|
|
this[editorSymbol].on(event, listener);
|
|
}
|
|
|
|
/**
|
|
* 取消监听事件
|
|
* @param event 事件名称
|
|
* @param listener 事件回调
|
|
*/
|
|
off(event: string, listener: (...args: unknown[]) => void) {
|
|
this[editorSymbol].off(event, listener);
|
|
}
|
|
|
|
/**
|
|
* 触发事件
|
|
* @param event 事件名称
|
|
* @param args 事件参数
|
|
* @returns
|
|
*/
|
|
emit(event: string, ...args: unknown[]) {
|
|
if (!this.options.prefix) {
|
|
logger.warn('Event#emit has been forbidden while prefix is not specified');
|
|
return;
|
|
}
|
|
this[editorSymbol].emit(`${this.options.prefix}:${event}`, ...args);
|
|
}
|
|
|
|
/**
|
|
* DO NOT USE if u fully understand what this method does.
|
|
* @param event
|
|
* @param args
|
|
*/
|
|
__internalEmit__(event: string, ...args: unknown[]) {
|
|
this[editorSymbol].emit(event, ...args);
|
|
}
|
|
}
|
|
|
|
export function getEvent(editor: InnerEditor, options: any = { prefix: 'common' }) {
|
|
return new Event(editor, options);
|
|
}
|