// ***************************************************************************** // Copyright (C) 2018 Red Hat, Inc. and others. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** import { URI } from './types-impl'; import { WindowState } from '@theia/plugin'; import { WindowStateExt, WindowMain, PLUGIN_RPC_CONTEXT } from '../common/plugin-api-rpc'; import { Event, Emitter } from '@theia/core/lib/common/event'; import { RPCProtocol } from '../common/rpc-protocol'; export class WindowStateExtImpl implements WindowStateExt { private windowStateCached: WindowState; private windowStateChangedEmitter = new Emitter(); public readonly onDidChangeWindowState: Event = this.windowStateChangedEmitter.event; private readonly proxy: WindowMain; constructor(rpc: RPCProtocol) { this.proxy = rpc.getProxy(PLUGIN_RPC_CONTEXT.WINDOW_MAIN); this.windowStateCached = { focused: true, active: true }; // supposed tab is active on start } getWindowState(): WindowState { return this.windowStateCached; } $onDidChangeWindowFocus(focused: boolean): void { this.onDidChangeWindowProperty('focused', focused); } $onDidChangeWindowActive(active: boolean): void { this.onDidChangeWindowProperty('active', active); } onDidChangeWindowProperty(property: keyof WindowState, value: boolean): void { if (value === this.windowStateCached[property]) { return; } this.windowStateCached = { ...this.windowStateCached, [property]: value }; this.windowStateChangedEmitter.fire(this.windowStateCached); } async openUri(uriOrString: URI | string): Promise { let uri: URI; if (typeof uriOrString === 'string') { uri = URI.parse(uriOrString); } else { uri = uriOrString; } if (!uri.scheme.trim().length) { throw new Error('Invalid scheme - cannot be empty'); } return this.proxy.$openUri(uri); } async asExternalUri(target: URI): Promise { if (!target.scheme.trim().length) { throw new Error('Invalid scheme - cannot be empty'); } const uri = await this.proxy.$asExternalUri(target); return URI.revive(uri); } }