mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 01:21:58 +00:00
114 lines
3.0 KiB
TypeScript
114 lines
3.0 KiB
TypeScript
import { assign } from 'lodash';
|
|
|
|
import { Component, ReactElement } from 'react';
|
|
import VisualManager from './base/visualManager';
|
|
import Prototype from './bundle/prototype';
|
|
import { VE_HOOKS } from './base/const';
|
|
import { setters } from '@ali/lowcode-engine';
|
|
|
|
// TODO: Env 本地引入后需要兼容方法 getDesignerLocale
|
|
// import Env from './env';
|
|
|
|
const { registerSetter } = setters;
|
|
// prop is Prop object in Designer
|
|
export type SetterProvider = (prop: any, componentPrototype: Prototype) => Component | ReactElement<any>;
|
|
|
|
export class VisualEngineContext {
|
|
private managerMap: { [name: string]: VisualManager } = {};
|
|
|
|
private moduleMap: { [name: string]: any } = {};
|
|
|
|
private pluginsMap: { [name: string]: any } = {};
|
|
|
|
use(pluginName: string, plugin: any) {
|
|
this.pluginsMap[pluginName || 'unknown'] = plugin;
|
|
if (pluginName === VE_HOOKS.VE_SETTING_FIELD_VARIABLE_SETTER) {
|
|
registerSetter('VariableSetter', {
|
|
component: plugin,
|
|
title: { type: 'i18n', 'zh-CN': '变量绑定', 'en-US': 'Variable Binding' },
|
|
// TODO: add logic below
|
|
// initialValue?: any | ((field: any) => any);
|
|
});
|
|
}
|
|
}
|
|
|
|
getPlugin(name: string) {
|
|
if (!name) {
|
|
name = 'default';
|
|
}
|
|
if (this.pluginsMap[name]) {
|
|
return this.pluginsMap[name];
|
|
} else if (this.moduleMap[name]) {
|
|
return this.moduleMap[name];
|
|
}
|
|
return this.getManager(name);
|
|
}
|
|
|
|
registerManager(managerMap?: { [name: string]: VisualManager }): this;
|
|
|
|
registerManager(name: string, manager: VisualManager): this;
|
|
|
|
registerManager(name?: any, manager?: VisualManager): this {
|
|
if (name && typeof name === 'object') {
|
|
this.managerMap = assign(this.managerMap, name);
|
|
} else {
|
|
this.managerMap[name] = manager as VisualManager;
|
|
}
|
|
return this;
|
|
}
|
|
|
|
registerModule(moduleMap: { [name: string]: any }): this;
|
|
|
|
registerModule(name: string, module: any): this;
|
|
|
|
registerModule(name?: any, module?: any): this {
|
|
if (typeof name === 'object') {
|
|
this.moduleMap = Object.assign({}, this.moduleMap, name);
|
|
} else {
|
|
this.moduleMap[name] = module;
|
|
}
|
|
return this;
|
|
}
|
|
|
|
getManager(name: string): VisualManager {
|
|
return this.managerMap[name];
|
|
}
|
|
|
|
getModule(name: string): any {
|
|
return this.moduleMap[name];
|
|
}
|
|
|
|
// getDesignerLocale(): string {
|
|
// return Env.getLocale();
|
|
// }
|
|
|
|
/**
|
|
* Builtin APIs
|
|
*/
|
|
|
|
/**
|
|
* support dynamic setter replacement
|
|
*/
|
|
registerDynamicSetterProvider(setterProvider: SetterProvider) {
|
|
if (!setterProvider) {
|
|
console.error('ERROR: ', 'please set provider function.');
|
|
return;
|
|
}
|
|
this.use('ve.plugin.setterProvider', setterProvider);
|
|
}
|
|
|
|
/**
|
|
* support add treePane on the setting pane
|
|
* @param treePane see @ali/ve-tree-pane
|
|
* @param treeCore see @ali/ve-tree-pane
|
|
*/
|
|
registerTreePane(TreePane: Component, TreeCore: Component) {
|
|
if (TreePane && TreeCore) {
|
|
this.registerModule('TreePane', TreePane);
|
|
this.registerModule('TreeCore', TreeCore);
|
|
}
|
|
}
|
|
}
|
|
|
|
export default new VisualEngineContext();
|