mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-05 09:47:20 +00:00
219 lines
6.0 KiB
TypeScript
219 lines
6.0 KiB
TypeScript
/* eslint-disable no-param-reassign */
|
|
import { createElement } from 'react';
|
|
import { render, unmountComponentAtNode } from 'react-dom';
|
|
import {
|
|
globalContext,
|
|
Editor,
|
|
engineConfig,
|
|
Setters as InnerSetters,
|
|
Hotkey as InnerHotkey,
|
|
} from '@alilc/lowcode-editor-core';
|
|
import { EngineOptions,
|
|
IPublicModelDocumentModel,
|
|
} from '@alilc/lowcode-types';
|
|
import {
|
|
Designer,
|
|
LowCodePluginManager,
|
|
ILowCodePluginContextPrivate,
|
|
ILowCodePluginContextApiAssembler,
|
|
PluginPreference,
|
|
} from '@alilc/lowcode-designer';
|
|
import {
|
|
Skeleton as InnerSkeleton,
|
|
registerDefaults,
|
|
} from '@alilc/lowcode-editor-skeleton';
|
|
import {
|
|
WorkSpace,
|
|
Workbench as WorkSpaceWorkbench,
|
|
} from '@alilc/lowcode-workspace';
|
|
|
|
import {
|
|
Hotkey,
|
|
Project,
|
|
Skeleton,
|
|
Setters,
|
|
Material,
|
|
Event,
|
|
Plugins,
|
|
DocumentModel,
|
|
Common,
|
|
} from '@alilc/lowcode-shell';
|
|
import { getLogger, isPlainObject } from '@alilc/lowcode-utils';
|
|
import './modules/live-editing';
|
|
import classes from './modules/classes';
|
|
import symbols from './modules/symbols';
|
|
import { componentMetaParser } from './inner-plugins/component-meta-parser';
|
|
import { setterRegistry } from './inner-plugins/setter-registry';
|
|
import { defaultPanelRegistry } from './inner-plugins/default-panel-registry';
|
|
import { shellModelFactory } from './modules/shell-model-factory';
|
|
import { builtinHotkey } from './inner-plugins/builtin-hotkey';
|
|
|
|
export * from './modules/skeleton-types';
|
|
export * from './modules/designer-types';
|
|
export * from './modules/lowcode-types';
|
|
|
|
registerDefaults();
|
|
|
|
const workSpace = new WorkSpace();
|
|
const editor = new Editor();
|
|
globalContext.register(editor, Editor);
|
|
globalContext.register(editor, 'editor');
|
|
globalContext.register(workSpace, 'workSpace');
|
|
|
|
const innerSkeleton = new InnerSkeleton(editor);
|
|
editor.set('skeleton' as any, innerSkeleton);
|
|
|
|
const designer = new Designer({ editor, shellModelFactory });
|
|
editor.set('designer' as any, designer);
|
|
const { project: innerProject } = designer;
|
|
|
|
const innerHotkey = new InnerHotkey();
|
|
const hotkey = new Hotkey(innerHotkey);
|
|
const project = new Project(innerProject);
|
|
const skeleton = new Skeleton(innerSkeleton);
|
|
const innerSetters = new InnerSetters();
|
|
const setters = new Setters(innerSetters);
|
|
|
|
const material = new Material(editor);
|
|
editor.set('project', project);
|
|
editor.set('setters' as any, setters);
|
|
editor.set('material', material);
|
|
editor.set('innerHotkey', innerHotkey);
|
|
const config = engineConfig;
|
|
const event = new Event(editor, { prefix: 'common' });
|
|
const logger = getLogger({ level: 'warn', bizName: 'common' });
|
|
const common = new Common(editor, innerSkeleton);
|
|
let plugins: Plugins;
|
|
|
|
const pluginContextApiAssembler: ILowCodePluginContextApiAssembler = {
|
|
assembleApis: (context: ILowCodePluginContextPrivate) => {
|
|
context.hotkey = hotkey;
|
|
context.project = project;
|
|
context.skeleton = skeleton;
|
|
context.setters = setters;
|
|
context.material = material;
|
|
context.event = event;
|
|
context.config = config;
|
|
context.common = common;
|
|
context.plugins = plugins;
|
|
},
|
|
};
|
|
|
|
const innerPlugins = new LowCodePluginManager(pluginContextApiAssembler);
|
|
plugins = new Plugins(innerPlugins).toProxy();
|
|
editor.set('innerPlugins' as any, innerPlugins);
|
|
editor.set('plugins' as any, plugins);
|
|
|
|
export {
|
|
skeleton,
|
|
plugins,
|
|
project,
|
|
setters,
|
|
material,
|
|
config,
|
|
event,
|
|
logger,
|
|
hotkey,
|
|
common,
|
|
// 兼容原 editor 的事件功能
|
|
event as editor,
|
|
workSpace,
|
|
};
|
|
// declare this is open-source version
|
|
export const isOpenSource = true;
|
|
export const __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = {
|
|
symbols,
|
|
classes,
|
|
};
|
|
config.set('isOpenSource', isOpenSource);
|
|
|
|
// container which will host LowCodeEngine DOM
|
|
let engineContainer: HTMLElement;
|
|
// @ts-ignore webpack Define variable
|
|
export const version = VERSION_PLACEHOLDER;
|
|
engineConfig.set('ENGINE_VERSION', version);
|
|
|
|
export async function init(
|
|
container?: HTMLElement,
|
|
options?: EngineOptions,
|
|
pluginPreference?: PluginPreference,
|
|
) {
|
|
|
|
await destroy();
|
|
let engineOptions = null;
|
|
if (isPlainObject(container)) {
|
|
engineOptions = container;
|
|
engineContainer = document.createElement('div');
|
|
engineContainer.id = 'engine';
|
|
document.body.appendChild(engineContainer);
|
|
} else {
|
|
engineOptions = options;
|
|
engineContainer = container;
|
|
if (!container) {
|
|
engineContainer = document.createElement('div');
|
|
engineContainer.id = 'engine';
|
|
document.body.appendChild(engineContainer);
|
|
}
|
|
}
|
|
engineConfig.setEngineOptions(engineOptions as any);
|
|
|
|
|
|
if (options && options.enableWorkspaceMode) {
|
|
render(
|
|
createElement(WorkSpaceWorkbench, {
|
|
workSpace,
|
|
className: 'engine-main',
|
|
topAreaItemClassName: 'engine-actionitem',
|
|
}),
|
|
engineContainer,
|
|
);
|
|
workSpace.setActive(true);
|
|
return;
|
|
}
|
|
|
|
// 注册一批内置插件
|
|
await plugins.register(componentMetaParser(designer));
|
|
await plugins.register(setterRegistry);
|
|
await plugins.register(defaultPanelRegistry(editor, designer));
|
|
await plugins.register(builtinHotkey);
|
|
|
|
await plugins.init(pluginPreference as any);
|
|
|
|
const { Workbench } = common.skeletonCabin;
|
|
if (options && options.enableWorkspaceMode) {
|
|
render(
|
|
createElement(WorkSpaceWorkbench, {
|
|
workSpace,
|
|
// skeleton: workSpace.skeleton,
|
|
className: 'engine-main',
|
|
topAreaItemClassName: 'engine-actionitem',
|
|
}),
|
|
engineContainer,
|
|
);
|
|
return;
|
|
}
|
|
|
|
render(
|
|
createElement(Workbench, {
|
|
skeleton: innerSkeleton,
|
|
className: 'engine-main',
|
|
topAreaItemClassName: 'engine-actionitem',
|
|
}),
|
|
engineContainer,
|
|
);
|
|
}
|
|
|
|
export async function destroy() {
|
|
// remove all documents
|
|
const { documents } = project;
|
|
if (Array.isArray(documents) && documents.length > 0) {
|
|
documents.forEach(((doc: IPublicModelDocumentModel) => project.removeDocument(doc)));
|
|
}
|
|
|
|
// TODO: delete plugins except for core plugins
|
|
|
|
// unmount DOM container, this will trigger React componentWillUnmount lifeCycle,
|
|
// so necessary cleanups will be done.
|
|
engineContainer && unmountComponentAtNode(engineContainer);
|
|
}
|