2020-06-25 16:05:36 -07:00
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-06-26 17:24:21 -07:00
|
|
|
import { BrowserBase, Browser } from '../../browser';
|
2020-06-25 16:05:36 -07:00
|
|
|
import { BrowserContextBase } from '../../browserContext';
|
|
|
|
|
import * as types from '../../types';
|
|
|
|
|
import { BrowserContextDispatcher } from './browserContextDispatcher';
|
2020-06-26 12:28:27 -07:00
|
|
|
import { BrowserChannel, BrowserContextChannel, PageChannel, BrowserInitializer } from '../channels';
|
2020-06-30 21:30:39 -07:00
|
|
|
import { Dispatcher, DispatcherScope, lookupDispatcher } from '../dispatcher';
|
2020-06-25 16:05:36 -07:00
|
|
|
import { PageDispatcher } from './pageDispatcher';
|
2020-06-30 10:55:11 -07:00
|
|
|
import { Events } from '../../events';
|
2020-06-25 16:05:36 -07:00
|
|
|
|
2020-06-26 17:24:21 -07:00
|
|
|
export class BrowserDispatcher extends Dispatcher<Browser, BrowserInitializer> implements BrowserChannel {
|
2020-06-25 16:05:36 -07:00
|
|
|
constructor(scope: DispatcherScope, browser: BrowserBase) {
|
2020-06-26 12:28:27 -07:00
|
|
|
super(scope, browser, 'browser', {});
|
2020-06-30 10:55:11 -07:00
|
|
|
browser.on(Events.Browser.Disconnected, () => this._dispatchEvent('close'));
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async newContext(params: { options?: types.BrowserContextOptions }): Promise<BrowserContextChannel> {
|
2020-06-30 21:30:39 -07:00
|
|
|
return new BrowserContextDispatcher(this._scope, await this._object.newContext(params.options) as BrowserContextBase);
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async newPage(params: { options?: types.BrowserContextOptions }): Promise<PageChannel> {
|
2020-06-30 21:30:39 -07:00
|
|
|
return lookupDispatcher<PageDispatcher>(await this._object.newPage(params.options))!;
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async close(): Promise<void> {
|
2020-06-26 17:24:21 -07:00
|
|
|
await this._object.close();
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
|
|
|
|
}
|