import { jsObtainContext, jsCallEntityMethod } from 'doric/src/runtime/sandbox' import { Panel } from 'doric' import { DoricPlugin } from "./DoricPlugin" import { createContext, destroyContext } from "./DoricDriver" import { DoricStackNode } from './shader/DoricStackNode' import { DoricViewNode } from './shader/DoricViewNode' const doricContexts: Map = new Map let __contextId__ = 0 function getContextId() { return `context_${__contextId__++}` } export function getDoricContext(contextId: string) { return doricContexts.get(contextId) } export class DoricContext { contextId = getContextId() pluginInstances: Map = new Map rootNode: DoricStackNode headNodes: Map> = new Map constructor(content: string) { createContext(this.contextId, content) doricContexts.set(this.contextId, this) this.rootNode = new DoricStackNode(this) } get panel() { return jsObtainContext(this.contextId)?.entity as Panel } invokeEntityMethod(method: string, ...otherArgs: any) { const argumentsList: any = [this.contextId] for (let i = 0; i < arguments.length; i++) { argumentsList.push(arguments[i]) } return Reflect.apply(jsCallEntityMethod, this.panel, argumentsList) } init(data?: string) { this.invokeEntityMethod("__init__", data) } onCreate() { this.invokeEntityMethod("__onCreate__") } onDestroy() { this.invokeEntityMethod("__onDestroy__") } onShow() { this.invokeEntityMethod("__onShow__") } onHidden() { this.invokeEntityMethod("__onHidden__") } build(frame: { width: number, height: number, }) { this.invokeEntityMethod("__build__", frame) } teardown() { for (let plugin of this.pluginInstances.values()) { plugin.onTearDown() } destroyContext(this.contextId) } }