67 lines
3.3 KiB
TypeScript
67 lines
3.3 KiB
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the 'License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Dispatcher, DispatcherScope, lookupDispatcher } from './dispatcher';
|
|
import { Electron, ElectronApplication, ElectronPage } from '../server/electron/electron';
|
|
import * as channels from '../protocol/channels';
|
|
import { BrowserContextDispatcher } from './browserContextDispatcher';
|
|
import { PageDispatcher } from './pageDispatcher';
|
|
import { parseArgument, serializeResult } from './jsHandleDispatcher';
|
|
import { createHandle } from './elementHandlerDispatcher';
|
|
|
|
export class ElectronDispatcher extends Dispatcher<Electron, channels.ElectronInitializer> implements channels.ElectronChannel {
|
|
constructor(scope: DispatcherScope, electron: Electron) {
|
|
super(scope, electron, 'Electron', {}, true);
|
|
}
|
|
|
|
async launch(params: channels.ElectronLaunchParams): Promise<channels.ElectronLaunchResult> {
|
|
const electronApplication = await this._object.launch(params);
|
|
return { electronApplication: new ElectronApplicationDispatcher(this._scope, electronApplication) };
|
|
}
|
|
}
|
|
|
|
export class ElectronApplicationDispatcher extends Dispatcher<ElectronApplication, channels.ElectronApplicationInitializer> implements channels.ElectronApplicationChannel {
|
|
constructor(scope: DispatcherScope, electronApplication: ElectronApplication) {
|
|
super(scope, electronApplication, 'ElectronApplication', {}, true);
|
|
this._dispatchEvent('context', { context: new BrowserContextDispatcher(this._scope, electronApplication.context()) });
|
|
electronApplication.on(ElectronApplication.Events.Close, () => {
|
|
this._dispatchEvent('close');
|
|
this._dispose();
|
|
});
|
|
electronApplication.on(ElectronApplication.Events.Window, (page: ElectronPage) => {
|
|
this._dispatchEvent('window', {
|
|
page: lookupDispatcher<PageDispatcher>(page),
|
|
browserWindow: createHandle(this._scope, page.browserWindow),
|
|
});
|
|
});
|
|
}
|
|
|
|
async evaluateExpression(params: channels.ElectronApplicationEvaluateExpressionParams): Promise<channels.ElectronApplicationEvaluateExpressionResult> {
|
|
const handle = this._object._nodeElectronHandle!;
|
|
return { value: serializeResult(await handle._evaluateExpression(params.expression, params.isFunction, true /* returnByValue */, parseArgument(params.arg))) };
|
|
}
|
|
|
|
async evaluateExpressionHandle(params: channels.ElectronApplicationEvaluateExpressionHandleParams): Promise<channels.ElectronApplicationEvaluateExpressionHandleResult> {
|
|
const handle = this._object._nodeElectronHandle!;
|
|
const result = await handle._evaluateExpression(params.expression, params.isFunction, false /* returnByValue */, parseArgument(params.arg));
|
|
return { handle: createHandle(this._scope, result) };
|
|
}
|
|
|
|
async close(): Promise<void> {
|
|
await this._object.close();
|
|
}
|
|
}
|