import {getIpcInstance as getIPCInstance} from "../../../ipc/BrowserIPC"; import {AppParameters} from "../../../settings"; import { Controller2PopoutMessages, EventControllerBase, PopoutIPCMessage } from "../../../ui/react-elements/external-modal/IPCMessage"; import {Registry, RegistryMap} from "../../../events"; let controller: PopoutController; export function getPopoutController() { if(!controller) controller = new PopoutController(); return controller; } class PopoutController extends EventControllerBase<"popout"> { private userData: any; private callbackControllerHello: (accepted: boolean | string) => void; constructor() { super(); this.ipcRemoteId = AppParameters.getValue(AppParameters.KEY_IPC_REMOTE_ADDRESS, "invalid"); this.ipcChannel = getIPCInstance().createChannel(this.ipcRemoteId, AppParameters.getValue(AppParameters.KEY_IPC_REMOTE_ADDRESS, "invalid")); this.ipcChannel.messageHandler = this.handleIPCMessage.bind(this); } getEventRegistries() : RegistryMap { return this.localRegistries; } async initialize() { this.sendIPCMessage("hello-popout", { version: __build.version }); await new Promise((resolve, reject) => { const timeout = setTimeout(() => { this.callbackControllerHello = undefined; reject("controller haven't called back"); }, 5000); this.callbackControllerHello = result => { this.callbackControllerHello = undefined; clearTimeout(timeout); if(typeof result === "string") { reject(result); } else if(!result) { reject(); } else { resolve(); } }; }); } protected handleTypedIPCMessage(type: T, payload: PopoutIPCMessage[T]) { super.handleTypedIPCMessage(type, payload); switch (type) { case "hello-controller": { const tpayload = payload as PopoutIPCMessage["hello-controller"]; console.log("Received Hello World from controller. Window instance accpected: %o", tpayload.accepted); if(!this.callbackControllerHello) { return; } if(this.getEventRegistries()) { const registries = this.getEventRegistries(); const invalidIndex = tpayload.registries.findIndex(reg => !registries[reg]); if(invalidIndex !== -1) { console.error("Received miss matching event registry keys (missing %s)", tpayload.registries[invalidIndex]); this.callbackControllerHello("miss matching registry keys (locally)"); } } else { let map = {}; tpayload.registries.forEach(reg => map[reg] = new Registry()); this.initializeRegistries(map); } this.userData = tpayload.userData; this.callbackControllerHello(tpayload.accepted ? true : tpayload.message || false); break; } case "fire-event-callback": case "fire-event": /* handled by out base class */ break; default: console.warn("Received unknown message type from controller: %s", type); return; } } getUserData() { return this.userData; } doClose() { this.sendIPCMessage("invoke-modal-action", { action: "close" }); } doMinimize() { this.sendIPCMessage("invoke-modal-action", { action: "minimize" }); } }