lowcode-engine/packages/shell/src/simulator-host.ts
2022-09-23 11:46:29 +08:00

70 lines
1.3 KiB
TypeScript

import {
BuiltinSimulatorHost,
} from '@alilc/lowcode-designer';
import { simulatorHostSymbol, nodeSymbol } from './symbols';
import type Node from './node';
export default class SimulatorHost {
private readonly [simulatorHostSymbol]: BuiltinSimulatorHost;
constructor(simulator: BuiltinSimulatorHost) {
this[simulatorHostSymbol] = simulator;
}
static create(host: BuiltinSimulatorHost) {
if (!host) return null;
return new SimulatorHost(host);
}
/**
* 获取 contentWindow
*/
get contentWindow() {
return this[simulatorHostSymbol].contentWindow;
}
/**
* 获取 contentDocument
*/
get contentDocument() {
return this[simulatorHostSymbol].contentDocument;
}
get renderer() {
return this[simulatorHostSymbol].renderer;
}
/**
* 设置 host 配置值
* @param key
* @param value
*/
set(key: string, value: any) {
this[simulatorHostSymbol].set(key, value);
}
/**
* 获取 host 配置值
* @param key
* @returns
*/
get(key: string) {
return this[simulatorHostSymbol].get(key);
}
/**
* scroll to specific node
* @param node
*/
scrollToNode(node: Node) {
this[simulatorHostSymbol].scrollToNode(node[nodeSymbol]);
}
/**
* 刷新渲染画布
*/
rerender() {
this[simulatorHostSymbol].rerender();
}
}