2022-02-16 11:20:17 +08:00

114 lines
2.5 KiB
TypeScript

import { getLogger, Logger } from '@alilc/lowcode-utils';
import {
ILowCodePlugin,
ILowCodePluginConfig,
ILowCodePluginManager,
ILowCodePluginConfigMeta,
} from './plugin-types';
import { EventEmitter } from 'events';
import { invariant } from '../utils';
export class LowCodePlugin implements ILowCodePlugin {
config: ILowCodePluginConfig;
logger: Logger;
private manager: ILowCodePluginManager;
private emitter: EventEmitter;
private _inited: boolean;
private pluginName: string;
private meta: ILowCodePluginConfigMeta;
/**
* 标识插件状态,是否被 disabled
*/
private _disabled: boolean;
constructor(
pluginName: string,
manager: ILowCodePluginManager,
config: ILowCodePluginConfig,
meta: ILowCodePluginConfigMeta,
) {
this.manager = manager;
this.config = config;
this.emitter = new EventEmitter();
this.pluginName = pluginName;
this.meta = meta;
this.logger = getLogger({ level: 'warn', bizName: `designer:plugin:${pluginName}` });
}
get name() {
return this.pluginName;
}
get dep() {
if (typeof this.meta.dependencies === 'string') {
return [this.meta.dependencies];
}
return this.meta.dependencies || [];
}
get disabled() {
return this._disabled;
}
on(event: string | symbol, listener: (...args: any[]) => void): any {
this.emitter.on(event, listener);
return () => {
this.emitter.off(event, listener);
};
}
emit(event: string | symbol, ...args: any[]) {
return this.emitter.emit(event, ...args);
}
removeAllListeners(event: string | symbol): any {
return this.emitter.removeAllListeners(event);
}
isInited() {
return this._inited;
}
async init(forceInit?: boolean) {
if (this._inited && !forceInit) return;
this.logger.log('method init called');
await this.config.init?.call(undefined);
this._inited = true;
}
async destroy() {
if (!this._inited) return;
this.logger.log('method destroy called');
await this.config?.destroy?.call(undefined);
this._inited = false;
}
setDisabled(flag = true) {
this._disabled = flag;
}
toProxy() {
invariant(this._inited, 'Could not call toProxy before init');
const exports = this.config.exports?.();
return new Proxy(this, {
get(target, prop, receiver) {
if ({}.hasOwnProperty.call(exports, prop)) {
return exports?.[prop as string];
}
return Reflect.get(target, prop, receiver);
},
});
}
async dispose() {
await this.manager.delete(this.name);
}
}