UNPKG

chrome-devtools-frontend

Version:
252 lines (216 loc) • 7.79 kB
/* * Copyright (C) 2012 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ import * as Common from '../common/common.js'; import * as Host from '../host/host.js'; import {ActionDelegate} from './ActionRegistration.js'; // eslint-disable-line no-unused-vars import {Context} from './Context.js'; // eslint-disable-line no-unused-vars import {Provider, ToolbarButton, ToolbarItem} from './Toolbar.js'; // eslint-disable-line no-unused-vars /** @type {!DockController} */ let dockControllerInstance; export class DockController extends Common.ObjectWrapper.ObjectWrapper { /** * @param {boolean} canDock */ constructor(canDock) { super(); this._canDock = canDock; this._closeButton = new ToolbarButton(Common.UIString.UIString('Close'), 'largeicon-delete'); this._closeButton.addEventListener( ToolbarButton.Events.Click, Host.InspectorFrontendHost.InspectorFrontendHostInstance.closeWindow.bind( Host.InspectorFrontendHost.InspectorFrontendHostInstance)); this._currentDockStateSetting = Common.Settings.Settings.instance().moduleSetting('currentDockState'); this._lastDockStateSetting = Common.Settings.Settings.instance().createSetting('lastDockState', 'bottom'); /** @type {string} */ this._dockSide; if (!canDock) { this._dockSide = State.Undocked; this._closeButton.setVisible(false); return; } this._currentDockStateSetting.addChangeListener(this._dockSideChanged, this); if (states.indexOf(this._currentDockStateSetting.get()) === -1) { this._currentDockStateSetting.set('right'); } if (states.indexOf(this._lastDockStateSetting.get()) === -1) { this._currentDockStateSetting.set('bottom'); } } /** * @param {{forceNew: ?boolean, canDock: boolean}} opts * @return {!DockController} */ static instance(opts = {forceNew: null, canDock: false}) { const {forceNew, canDock} = opts; if (!dockControllerInstance || forceNew) { dockControllerInstance = new DockController(canDock); } return dockControllerInstance; } initialize() { if (!this._canDock) { return; } this._titles = [ Common.UIString.UIString('Dock to right'), Common.UIString.UIString('Dock to bottom'), Common.UIString.UIString('Dock to left'), Common.UIString.UIString('Undock into separate window') ]; this._dockSideChanged(); } _dockSideChanged() { this.setDockSide(this._currentDockStateSetting.get()); } /** * @return {string} */ dockSide() { return this._dockSide; } /** * @return {boolean} */ canDock() { return this._canDock; } /** * @return {boolean} */ isVertical() { return this._dockSide === State.DockedToRight || this._dockSide === State.DockedToLeft; } /** * @param {string} dockSide */ setDockSide(dockSide) { if (states.indexOf(dockSide) === -1) { dockSide = states[0]; } if (this._dockSide === dockSide) { return; } if (this._dockSide) { this._lastDockStateSetting.set(this._dockSide); } this._savedFocus = document.deepActiveElement(); const eventData = {from: this._dockSide, to: dockSide}; this.dispatchEventToListeners(Events.BeforeDockSideChanged, eventData); console.timeStamp('DockController.setIsDocked'); this._dockSide = dockSide; this._currentDockStateSetting.set(dockSide); Host.InspectorFrontendHost.InspectorFrontendHostInstance.setIsDocked( dockSide !== State.Undocked, this._setIsDockedResponse.bind(this, eventData)); this._closeButton.setVisible(this._dockSide !== State.Undocked); this.dispatchEventToListeners(Events.DockSideChanged, eventData); } /** * @param {{from: string, to: string}} eventData */ _setIsDockedResponse(eventData) { this.dispatchEventToListeners(Events.AfterDockSideChanged, eventData); if (this._savedFocus) { /** @type {!HTMLElement} */ (this._savedFocus).focus(); this._savedFocus = null; } } _toggleDockSide() { if (this._lastDockStateSetting.get() === this._currentDockStateSetting.get()) { const index = states.indexOf(this._currentDockStateSetting.get()) || 0; this._lastDockStateSetting.set(states[(index + 1) % states.length]); } this.setDockSide(this._lastDockStateSetting.get()); } } export const State = { DockedToBottom: 'bottom', DockedToRight: 'right', DockedToLeft: 'left', Undocked: 'undocked' }; const states = [State.DockedToRight, State.DockedToBottom, State.DockedToLeft, State.Undocked]; // Use BeforeDockSideChanged to do something before all the UI bits are updated, // DockSideChanged to update UI, and AfterDockSideChanged to perform actions // after frontend is docked/undocked in the browser. /** @enum {symbol} */ export const Events = { BeforeDockSideChanged: Symbol('BeforeDockSideChanged'), DockSideChanged: Symbol('DockSideChanged'), AfterDockSideChanged: Symbol('AfterDockSideChanged') }; /** @type {!ToggleDockActionDelegate} */ let toggleDockActionDelegateInstance; /** * @implements {ActionDelegate} */ export class ToggleDockActionDelegate { /** * @param {{forceNew: ?boolean}} opts */ static instance(opts = {forceNew: null}) { const {forceNew} = opts; if (!toggleDockActionDelegateInstance || forceNew) { toggleDockActionDelegateInstance = new ToggleDockActionDelegate(); } return toggleDockActionDelegateInstance; } /** * @override * @param {!Context} context * @param {string} actionId * @return {boolean} */ handleAction(context, actionId) { DockController.instance()._toggleDockSide(); return true; } } /** @type {!CloseButtonProvider} */ let closeButtonProviderInstance; /** * @implements {Provider} */ export class CloseButtonProvider { /** * @param {{forceNew: ?boolean}} opts */ static instance(opts = {forceNew: null}) { const {forceNew} = opts; if (!closeButtonProviderInstance || forceNew) { closeButtonProviderInstance = new CloseButtonProvider(); } return closeButtonProviderInstance; } /** * @override * @return {?ToolbarItem} */ item() { return DockController.instance()._closeButton; } }