mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-14 21:12:53 +00:00
389 lines
11 KiB
TypeScript
389 lines
11 KiB
TypeScript
import { createElement, ReactInstance } from 'react';
|
|
import { render as reactRender } from 'react-dom';
|
|
import { host } from './host';
|
|
import SimulatorRendererView from './renderer-view';
|
|
import { computed, obx } from '@recore/obx';
|
|
import { RootSchema, NpmInfo } from '../../../designer/schema';
|
|
import { getClientRects } from '../../../utils/get-client-rects';
|
|
import { Asset } from '../utils/asset';
|
|
import loader from '../utils/loader';
|
|
import { reactFindDOMNodes, FIBER_KEY } from '../utils/react-find-dom-nodes';
|
|
import { isESModule } from '../../../../../utils/is-es-module';
|
|
import { NodeInstance } from '../../../designer/simulator';
|
|
import { isElement } from '../../../utils/is-element';
|
|
import cursor from '../../../designer/helper/cursor';
|
|
import { setNativeSelection } from '../../../designer/helper/navtive-selection';
|
|
|
|
export class SimulatorRenderer {
|
|
readonly isSimulatorRenderer = true;
|
|
private dispose?: () => void;
|
|
constructor() {
|
|
if (!host) {
|
|
return;
|
|
}
|
|
this.dispose = host.connect(this, () => {
|
|
// sync layout config
|
|
|
|
// sync schema
|
|
this._schema = host.document.schema;
|
|
|
|
// todo: split with others, not all should recompute
|
|
if (this._libraryMap !== host.libraryMap || this._componentsMap !== host.designer.componentsMap) {
|
|
this._libraryMap = host.libraryMap || {};
|
|
this._componentsMap = host.designer.componentsMap;
|
|
this.buildComponents();
|
|
}
|
|
|
|
// sync designMode
|
|
|
|
// sync suspended
|
|
|
|
// sync scope
|
|
|
|
// sync device
|
|
});
|
|
host.componentsConsumer.consume(async componentsAsset => {
|
|
if (componentsAsset) {
|
|
await this.load(componentsAsset);
|
|
this.buildComponents();
|
|
}
|
|
});
|
|
host.injectionConsumer.consume(data => {
|
|
// sync utils, i18n, contants,... config
|
|
this._appContext = {
|
|
utils: {},
|
|
constants: {
|
|
name: 'demo',
|
|
},
|
|
};
|
|
});
|
|
}
|
|
|
|
@computed get layout(): any {
|
|
// TODO: parse layout Component
|
|
return null;
|
|
}
|
|
|
|
@obx.ref private _schema?: RootSchema;
|
|
@computed get schema(): any {
|
|
return this._schema;
|
|
}
|
|
private _libraryMap: { [key: string]: string } = {};
|
|
private buildComponents() {
|
|
this._components = buildComponents(this._libraryMap, this._componentsMap);
|
|
}
|
|
@obx.ref private _components: any = {};
|
|
@computed get components(): object {
|
|
// 根据 device 选择不同组件,进行响应式
|
|
// 更好的做法是,根据 device 选择加载不同的组件资源,甚至是 simulatorUrl
|
|
return this._components;
|
|
}
|
|
// context from: utils、constants、history、location、match
|
|
@obx.ref private _appContext = {};
|
|
@computed get context(): any {
|
|
return this._appContext;
|
|
}
|
|
|
|
@computed get designMode(): any {
|
|
return 'border';
|
|
}
|
|
@obx.ref private _componentsMap = {};
|
|
@computed get componentsMap(): any {
|
|
return this._componentsMap;
|
|
}
|
|
@computed get suspended(): any {
|
|
return false;
|
|
}
|
|
@computed get scope(): any {
|
|
return null;
|
|
}
|
|
/**
|
|
* 加载资源
|
|
*/
|
|
load(asset: Asset): Promise<any> {
|
|
return loader.load(asset);
|
|
}
|
|
|
|
private instancesMap = new Map<string, ReactInstance[]>();
|
|
private unmountIntance(id: string, instance: ReactInstance) {
|
|
const instances = this.instancesMap.get(id);
|
|
if (instances) {
|
|
const i = instances.indexOf(instance);
|
|
if (i > -1) {
|
|
instances.splice(i, 1);
|
|
host.setInstance(id, instances);
|
|
}
|
|
}
|
|
}
|
|
mountInstance(id: string, instance: ReactInstance | null) {
|
|
const instancesMap = this.instancesMap;
|
|
if (instance == null) {
|
|
let instances = this.instancesMap.get(id);
|
|
if (instances) {
|
|
instances = instances.filter(checkInstanceMounted);
|
|
if (instances.length > 0) {
|
|
instancesMap.set(id, instances);
|
|
host.setInstance(id, instances);
|
|
} else {
|
|
instancesMap.delete(id);
|
|
host.setInstance(id, null);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
const unmountIntance = this.unmountIntance.bind(this);
|
|
const origId = (instance as any)[SYMBOL_VNID];
|
|
if (origId && origId !== id) {
|
|
// 另外一个节点的 instance 在此被复用了,需要从原来地方卸载
|
|
unmountIntance(origId, instance);
|
|
}
|
|
if (isElement(instance)) {
|
|
cacheReactKey(instance);
|
|
} else if (origId !== id) {
|
|
// 涵盖 origId == null || origId !== id 的情况
|
|
let origUnmount: any = instance.componentWillUnmount;
|
|
if (origUnmount && origUnmount.origUnmount) {
|
|
origUnmount = origUnmount.origUnmount;
|
|
}
|
|
// hack! delete instance from map
|
|
const newUnmount = function(this: any) {
|
|
unmountIntance(id, instance);
|
|
origUnmount && origUnmount.call(this);
|
|
};
|
|
(newUnmount as any).origUnmount = origUnmount;
|
|
instance.componentWillUnmount = newUnmount;
|
|
}
|
|
|
|
(instance as any)[SYMBOL_VNID] = id;
|
|
let instances = this.instancesMap.get(id);
|
|
if (instances) {
|
|
const l = instances.length;
|
|
instances = instances.filter(checkInstanceMounted);
|
|
let updated = instances.length !== l;
|
|
if (!instances.includes(instance)) {
|
|
instances.push(instance);
|
|
updated = true;
|
|
}
|
|
if (!updated) {
|
|
return;
|
|
}
|
|
} else {
|
|
instances = [instance];
|
|
}
|
|
instancesMap.set(id, instances);
|
|
host.setInstance(id, instances);
|
|
}
|
|
|
|
private ctxMap = new Map<string, object>();
|
|
mountContext(id: string, ctx: object) {
|
|
this.ctxMap.set(id, ctx);
|
|
}
|
|
|
|
getComponent(componentName: string) {
|
|
const paths = componentName.split('.');
|
|
const subs: string[] = [];
|
|
|
|
while (true) {
|
|
const component = this._components[componentName];
|
|
if (component) {
|
|
return getSubComponent(component, subs);
|
|
}
|
|
|
|
const sub = paths.pop();
|
|
if (!sub) {
|
|
return null;
|
|
}
|
|
subs.unshift(sub);
|
|
componentName = paths.join('.');
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
getComponentInstances(id: string): ReactInstance[] | null {
|
|
return this.instancesMap.get(id) || null;
|
|
}
|
|
|
|
getClosestNodeInstance(from: ReactInstance, nodeId?: string): NodeInstance<ReactInstance> | null {
|
|
return getClosestNodeInstance(from, nodeId);
|
|
}
|
|
|
|
findDOMNodes(instance: ReactInstance): Array<Element | Text> | null {
|
|
return reactFindDOMNodes(instance);
|
|
}
|
|
|
|
getClientRects(element: Element | Text) {
|
|
return getClientRects(element);
|
|
}
|
|
|
|
setNativeSelection(enableFlag: boolean) {
|
|
setNativeSelection(enableFlag);
|
|
}
|
|
setDraggingState(state: boolean) {
|
|
cursor.setDragging(state);
|
|
}
|
|
setCopyState(state: boolean) {
|
|
cursor.setCopy(state);
|
|
}
|
|
clearState() {
|
|
cursor.release();
|
|
}
|
|
|
|
private _running = false;
|
|
run() {
|
|
if (this._running) {
|
|
return;
|
|
}
|
|
this._running = true;
|
|
const containerId = 'app';
|
|
let container = document.getElementById(containerId);
|
|
if (!container) {
|
|
container = document.createElement('div');
|
|
document.body.appendChild(container);
|
|
container.id = containerId;
|
|
}
|
|
|
|
reactRender(createElement(SimulatorRendererView, { renderer: this }), container);
|
|
}
|
|
}
|
|
|
|
function accessLibrary(library: string | object) {
|
|
if (typeof library !== 'string') {
|
|
return library;
|
|
}
|
|
|
|
return (window as any)[library];
|
|
}
|
|
|
|
function getSubComponent(library: any, paths: string[]) {
|
|
const l = paths.length;
|
|
if (l < 1 || !library) {
|
|
return library;
|
|
}
|
|
let i = 0;
|
|
let component: any;
|
|
while (i < l) {
|
|
const key = paths[i]!;
|
|
let ex: any;
|
|
try {
|
|
component = library[key];
|
|
} catch (e) {
|
|
ex = e;
|
|
component = null;
|
|
}
|
|
if (i === 0 && component == null && key === 'default') {
|
|
if (ex) {
|
|
return l === 1 ? library : null;
|
|
}
|
|
component = library;
|
|
} else if (component == null) {
|
|
return null;
|
|
}
|
|
library = component;
|
|
i++;
|
|
}
|
|
return component;
|
|
}
|
|
|
|
function findComponent(libraryMap: LibraryMap, componentName: string, npm?: NpmInfo) {
|
|
if (!npm) {
|
|
return accessLibrary(componentName);
|
|
}
|
|
// libraryName the key access to global
|
|
// export { exportName } from xxx exportName === global.libraryName.exportName
|
|
// export exportName from xxx exportName === global.libraryName.default || global.libraryName
|
|
// export { exportName as componentName } from package
|
|
// if exportName == null exportName === componentName;
|
|
// const componentName = exportName.subName, if exportName empty subName donot use
|
|
const exportName = npm.exportName || npm.componentName || componentName;
|
|
const libraryName = libraryMap[npm.package] || exportName;
|
|
const library = accessLibrary(libraryName);
|
|
const paths = npm.exportName && npm.subName ? npm.subName.split('.') : [];
|
|
if (npm.destructuring) {
|
|
paths.unshift(exportName);
|
|
} else if (isESModule(library)) {
|
|
paths.unshift('default');
|
|
}
|
|
return getSubComponent(library, paths);
|
|
}
|
|
|
|
export interface LibraryMap {
|
|
[key: string]: string;
|
|
}
|
|
|
|
function buildComponents(libraryMap: LibraryMap, componentsMap: { [componentName: string]: NpmInfo }) {
|
|
const components: any = {};
|
|
Object.keys(componentsMap).forEach(componentName => {
|
|
const component = findComponent(libraryMap, componentName, componentsMap[componentName]);
|
|
if (component) {
|
|
components[componentName] = component;
|
|
}
|
|
});
|
|
return components;
|
|
}
|
|
|
|
let REACT_KEY = '';
|
|
function cacheReactKey(el: Element): Element {
|
|
if (REACT_KEY !== '') {
|
|
return el;
|
|
}
|
|
REACT_KEY = Object.keys(el).find(key => key.startsWith('__reactInternalInstance$')) || '';
|
|
if (!REACT_KEY && (el as HTMLElement).parentElement) {
|
|
return cacheReactKey((el as HTMLElement).parentElement!);
|
|
}
|
|
return el;
|
|
}
|
|
|
|
const SYMBOL_VNID = Symbol('_LCNodeId');
|
|
|
|
function getClosestNodeInstance(from: ReactInstance, specId?: string): NodeInstance<ReactInstance> | null {
|
|
let el: any = from;
|
|
if (el) {
|
|
if (isElement(el)) {
|
|
el = cacheReactKey(el);
|
|
} else {
|
|
return getNodeInstance(el[FIBER_KEY], specId);
|
|
}
|
|
}
|
|
while (el) {
|
|
if (SYMBOL_VNID in el) {
|
|
const nodeId = el[SYMBOL_VNID];
|
|
if (!specId || specId === nodeId) {
|
|
return {
|
|
nodeId: nodeId,
|
|
instance: el,
|
|
};
|
|
}
|
|
}
|
|
// get fiberNode from element
|
|
if (el[REACT_KEY]) {
|
|
return getNodeInstance(el[REACT_KEY], specId);
|
|
}
|
|
el = el.parentElement;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
function getNodeInstance(fiberNode: any, specId?: string): NodeInstance<ReactInstance> | null {
|
|
const instance = fiberNode.stateNode;
|
|
if (instance && SYMBOL_VNID in instance) {
|
|
const nodeId = instance[SYMBOL_VNID];
|
|
if (!specId || specId === nodeId) {
|
|
return {
|
|
nodeId: nodeId,
|
|
instance: instance,
|
|
};
|
|
}
|
|
}
|
|
return getNodeInstance(fiberNode.return);
|
|
}
|
|
|
|
function checkInstanceMounted(instance: any): boolean {
|
|
if (isElement(instance)) {
|
|
return instance.parentElement != null;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
export default new SimulatorRenderer();
|