123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.RawTouchscreenImpl = exports.RawMouseImpl = exports.RawKeyboardImpl = void 0;
- var input = _interopRequireWildcard(require("../input"));
- var _macEditingCommands = require("../macEditingCommands");
- var _utils = require("../../utils");
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
- /**
- * Copyright 2017 Google Inc. All rights reserved.
- * Modifications 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.
- */
- function toModifiersMask(modifiers) {
- // From Source/WebKit/Shared/WebEvent.h
- let mask = 0;
- if (modifiers.has('Shift')) mask |= 1;
- if (modifiers.has('Control')) mask |= 2;
- if (modifiers.has('Alt')) mask |= 4;
- if (modifiers.has('Meta')) mask |= 8;
- return mask;
- }
- function toButtonsMask(buttons) {
- let mask = 0;
- if (buttons.has('left')) mask |= 1;
- if (buttons.has('right')) mask |= 2;
- if (buttons.has('middle')) mask |= 4;
- return mask;
- }
- class RawKeyboardImpl {
- constructor(session) {
- this._pageProxySession = void 0;
- this._session = void 0;
- this._pageProxySession = session;
- }
- setSession(session) {
- this._session = session;
- }
- async keydown(modifiers, code, keyCode, keyCodeWithoutLocation, key, location, autoRepeat, text) {
- const parts = [];
- for (const modifier of ['Shift', 'Control', 'Alt', 'Meta']) {
- if (modifiers.has(modifier)) parts.push(modifier);
- }
- parts.push(code);
- const shortcut = parts.join('+');
- let commands = _macEditingCommands.macEditingCommands[shortcut];
- if ((0, _utils.isString)(commands)) commands = [commands];
- await this._pageProxySession.send('Input.dispatchKeyEvent', {
- type: 'keyDown',
- modifiers: toModifiersMask(modifiers),
- windowsVirtualKeyCode: keyCode,
- code,
- key,
- text,
- unmodifiedText: text,
- autoRepeat,
- macCommands: commands,
- isKeypad: location === input.keypadLocation
- });
- }
- async keyup(modifiers, code, keyCode, keyCodeWithoutLocation, key, location) {
- await this._pageProxySession.send('Input.dispatchKeyEvent', {
- type: 'keyUp',
- modifiers: toModifiersMask(modifiers),
- key,
- windowsVirtualKeyCode: keyCode,
- code,
- isKeypad: location === input.keypadLocation
- });
- }
- async sendText(text) {
- await this._session.send('Page.insertText', {
- text
- });
- }
- }
- exports.RawKeyboardImpl = RawKeyboardImpl;
- class RawMouseImpl {
- constructor(session) {
- this._pageProxySession = void 0;
- this._session = void 0;
- this._page = void 0;
- this._pageProxySession = session;
- }
- setSession(session) {
- this._session = session;
- }
- async move(x, y, button, buttons, modifiers, forClick) {
- await this._pageProxySession.send('Input.dispatchMouseEvent', {
- type: 'move',
- button,
- buttons: toButtonsMask(buttons),
- x,
- y,
- modifiers: toModifiersMask(modifiers)
- });
- }
- async down(x, y, button, buttons, modifiers, clickCount) {
- await this._pageProxySession.send('Input.dispatchMouseEvent', {
- type: 'down',
- button,
- buttons: toButtonsMask(buttons),
- x,
- y,
- modifiers: toModifiersMask(modifiers),
- clickCount
- });
- }
- async up(x, y, button, buttons, modifiers, clickCount) {
- await this._pageProxySession.send('Input.dispatchMouseEvent', {
- type: 'up',
- button,
- buttons: toButtonsMask(buttons),
- x,
- y,
- modifiers: toModifiersMask(modifiers),
- clickCount
- });
- }
- async wheel(x, y, buttons, modifiers, deltaX, deltaY) {
- var _this$_page;
- if ((_this$_page = this._page) !== null && _this$_page !== void 0 && _this$_page._browserContext._options.isMobile) throw new Error('Mouse wheel is not supported in mobile WebKit');
- await this._session.send('Page.updateScrollingState');
- // Wheel events hit the compositor first, so wait one frame for it to be synced.
- await this._page.mainFrame().evaluateExpression(`new Promise(requestAnimationFrame)`, {
- world: 'utility'
- });
- await this._pageProxySession.send('Input.dispatchWheelEvent', {
- x,
- y,
- deltaX,
- deltaY,
- modifiers: toModifiersMask(modifiers)
- });
- }
- setPage(page) {
- this._page = page;
- }
- }
- exports.RawMouseImpl = RawMouseImpl;
- class RawTouchscreenImpl {
- constructor(session) {
- this._pageProxySession = void 0;
- this._pageProxySession = session;
- }
- async tap(x, y, modifiers) {
- await this._pageProxySession.send('Input.dispatchTapEvent', {
- x,
- y,
- modifiers: toModifiersMask(modifiers)
- });
- }
- }
- exports.RawTouchscreenImpl = RawTouchscreenImpl;
|