UNPKG

@quick-game/cli

Version:

Command line interface for rapid qg development

157 lines 7.14 kB
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import * as Root from '../../core/root/root.js'; import * as SDK from '../../core/sdk/sdk.js'; import * as UI from '../../ui/legacy/legacy.js'; import * as EmulationModel from '../../models/emulation/emulation.js'; import { DeviceModeView } from './DeviceModeView.js'; let deviceModeWrapperInstance; export class DeviceModeWrapper extends UI.Widget.VBox { inspectedPagePlaceholder; deviceModeView; toggleDeviceModeAction; showDeviceModeSetting; constructor(inspectedPagePlaceholder) { super(); this.inspectedPagePlaceholder = inspectedPagePlaceholder; this.deviceModeView = null; this.toggleDeviceModeAction = UI.ActionRegistry.ActionRegistry.instance().action('emulation.toggle-device-mode'); const model = EmulationModel.DeviceModeModel.DeviceModeModel.instance(); this.showDeviceModeSetting = model.enabledSetting(); this.showDeviceModeSetting.setRequiresUserAction(Boolean(Root.Runtime.Runtime.queryParam('hasOtherClients'))); this.showDeviceModeSetting.addChangeListener(this.update.bind(this, false)); SDK.TargetManager.TargetManager.instance().addModelListener(SDK.OverlayModel.OverlayModel, SDK.OverlayModel.Events.ScreenshotRequested, this.screenshotRequestedFromOverlay, this); this.update(true); } static instance(opts = { forceNew: null, inspectedPagePlaceholder: null }) { const { forceNew, inspectedPagePlaceholder } = opts; if (!deviceModeWrapperInstance || forceNew) { if (!inspectedPagePlaceholder) { throw new Error(`Unable to create DeviceModeWrapper: inspectedPagePlaceholder must be provided: ${new Error().stack}`); } deviceModeWrapperInstance = new DeviceModeWrapper(inspectedPagePlaceholder); } return deviceModeWrapperInstance; } toggleDeviceMode() { this.showDeviceModeSetting.set(!this.showDeviceModeSetting.get()); } isDeviceModeOn() { return this.showDeviceModeSetting.get(); } captureScreenshot(fullSize, clip) { if (!this.deviceModeView) { this.deviceModeView = new DeviceModeView(); } this.deviceModeView.setNonEmulatedAvailableSize(this.inspectedPagePlaceholder.element); if (fullSize) { void this.deviceModeView.captureFullSizeScreenshot(); } else if (clip) { void this.deviceModeView.captureAreaScreenshot(clip); } else { void this.deviceModeView.captureScreenshot(); } return true; } screenshotRequestedFromOverlay(event) { const clip = event.data; this.captureScreenshot(false, clip); } update(force) { if (this.toggleDeviceModeAction) { this.toggleDeviceModeAction.setToggled(this.showDeviceModeSetting.get()); } if (!force) { const showing = this.deviceModeView && this.deviceModeView.isShowing(); if (this.showDeviceModeSetting.get() === showing) { return; } } if (this.showDeviceModeSetting.get()) { if (!this.deviceModeView) { this.deviceModeView = new DeviceModeView(); } this.deviceModeView.show(this.element); this.inspectedPagePlaceholder.clearMinimumSize(); this.inspectedPagePlaceholder.show(this.deviceModeView.element); } else { if (this.deviceModeView) { this.deviceModeView.exitHingeMode(); this.deviceModeView.detach(); } this.inspectedPagePlaceholder.restoreMinimumSize(); this.inspectedPagePlaceholder.show(this.element); } } } let actionDelegateInstance; export class ActionDelegate { handleAction(context, actionId) { if (DeviceModeWrapper.instance()) { switch (actionId) { case 'emulation.capture-screenshot': return DeviceModeWrapper.instance().captureScreenshot(); case 'emulation.capture-node-screenshot': { const node = UI.Context.Context.instance().flavor(SDK.DOMModel.DOMNode); if (!node) { return true; } async function captureClip() { if (!node) { return; } const object = await node.resolveToObject(); if (!object) { return; } const result = await object.callFunction(function () { const rect = this.getBoundingClientRect(); const docRect = this.ownerDocument.documentElement.getBoundingClientRect(); return JSON.stringify({ x: rect.left - docRect.left, y: rect.top - docRect.top, width: rect.width, height: rect.height, scale: 1, }); }); if (!result.object) { throw new Error('Clipping error: could not get object data.'); } const clip = (JSON.parse(result.object.value)); const response = await node.domModel().target().pageAgent().invoke_getLayoutMetrics(); const error = response.getError(); // TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration // eslint-disable-next-line @typescript-eslint/naming-convention const page_zoom = !error && response.visualViewport.zoom || 1; clip.x *= page_zoom; clip.y *= page_zoom; clip.width *= page_zoom; clip.height *= page_zoom; DeviceModeWrapper.instance().captureScreenshot(false, clip); } void captureClip(); return true; } case 'emulation.capture-full-height-screenshot': return DeviceModeWrapper.instance().captureScreenshot(true); case 'emulation.toggle-device-mode': DeviceModeWrapper.instance().toggleDeviceMode(); return true; } } return false; } static instance(opts = { forceNew: null }) { const { forceNew } = opts; if (!actionDelegateInstance || forceNew) { actionDelegateInstance = new ActionDelegate(); } return actionDelegateInstance; } } //# sourceMappingURL=DeviceModeWrapper.js.map