UNPKG

debug-server-next

Version:

Dev server for hippy-core.

763 lines (762 loc) 32.4 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. */ /* eslint-disable rulesdir/no_underscored_properties */ import * as Common from '../../core/common/common.js'; import * as Platform from '../../core/platform/platform.js'; import { Constraints } from './Geometry.js'; import { Events as ResizerWidgetEvents, SimpleResizerWidget } from './ResizerWidget.js'; import { ToolbarButton } from './Toolbar.js'; import { Widget } from './Widget.js'; import { ZoomManager } from './ZoomManager.js'; export class SplitWidget extends Widget { _sidebarElement; _mainElement; _resizerElement; _resizerElementSize; _resizerWidget; _defaultSidebarWidth; _defaultSidebarHeight; _constraintsInDip; _resizeStartSizeDIP; // TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration // eslint-disable-next-line @typescript-eslint/no-explicit-any _setting; _totalSizeCSS; _totalSizeOtherDimensionCSS; _mainWidget; _sidebarWidget; _animationFrameHandle; _animationCallback; _showSidebarButtonTitle; _hideSidebarButtonTitle; _showHideSidebarButton; _isVertical; _sidebarMinimized; _detaching; _sidebarSizeDIP; _savedSidebarSizeDIP; _secondIsSidebar; _shouldSaveShowMode; _savedVerticalMainSize; _savedHorizontalMainSize; _showMode; _savedShowMode; constructor(isVertical, secondIsSidebar, settingName, defaultSidebarWidth, defaultSidebarHeight, constraintsInDip) { super(true); this.element.classList.add('split-widget'); this.registerRequiredCSS('ui/legacy/splitWidget.css'); this.contentElement.classList.add('shadow-split-widget'); this._sidebarElement = this.contentElement.createChild('div', 'shadow-split-widget-contents shadow-split-widget-sidebar vbox'); this._mainElement = this.contentElement.createChild('div', 'shadow-split-widget-contents shadow-split-widget-main vbox'); this._mainElement.createChild('slot').name = 'insertion-point-main'; this._sidebarElement.createChild('slot').name = 'insertion-point-sidebar'; this._resizerElement = this.contentElement.createChild('div', 'shadow-split-widget-resizer'); this._resizerElementSize = null; this._resizerWidget = new SimpleResizerWidget(); this._resizerWidget.setEnabled(true); this._resizerWidget.addEventListener(ResizerWidgetEvents.ResizeStart, this._onResizeStart, this); this._resizerWidget.addEventListener(ResizerWidgetEvents.ResizeUpdate, this._onResizeUpdate, this); this._resizerWidget.addEventListener(ResizerWidgetEvents.ResizeEnd, this._onResizeEnd, this); this._defaultSidebarWidth = defaultSidebarWidth || 200; this._defaultSidebarHeight = defaultSidebarHeight || this._defaultSidebarWidth; this._constraintsInDip = Boolean(constraintsInDip); this._resizeStartSizeDIP = 0; this._setting = settingName ? Common.Settings.Settings.instance().createSetting(settingName, /** @type {*} */ ({})) : null; this._totalSizeCSS = 0; this._totalSizeOtherDimensionCSS = 0; this._mainWidget = null; this._sidebarWidget = null; this._animationFrameHandle = 0; this._animationCallback = null; this._showSidebarButtonTitle = Common.UIString.LocalizedEmptyString; this._hideSidebarButtonTitle = Common.UIString.LocalizedEmptyString; this._showHideSidebarButton = null; this._isVertical = false; this._sidebarMinimized = false; this._detaching = false; this._sidebarSizeDIP = -1; this._savedSidebarSizeDIP = this._sidebarSizeDIP; this._secondIsSidebar = false; this._shouldSaveShowMode = false; this._savedVerticalMainSize = null; this._savedHorizontalMainSize = null; this.setSecondIsSidebar(secondIsSidebar); this._innerSetVertical(isVertical); this._showMode = ShowMode.Both; this._savedShowMode = this._showMode; // Should be called after isVertical has the right value. this.installResizer(this._resizerElement); } isVertical() { return this._isVertical; } setVertical(isVertical) { if (this._isVertical === isVertical) { return; } this._innerSetVertical(isVertical); if (this.isShowing()) { this._updateLayout(); } } _innerSetVertical(isVertical) { this.contentElement.classList.toggle('vbox', !isVertical); this.contentElement.classList.toggle('hbox', isVertical); this._isVertical = isVertical; this._resizerElementSize = null; this._sidebarSizeDIP = -1; this._restoreSidebarSizeFromSettings(); if (this._shouldSaveShowMode) { this._restoreAndApplyShowModeFromSettings(); } this._updateShowHideSidebarButton(); // FIXME: reverse SplitWidget.isVertical meaning. this._resizerWidget.setVertical(!isVertical); this.invalidateConstraints(); } _updateLayout(animate) { this._totalSizeCSS = 0; // Lazy update. this._totalSizeOtherDimensionCSS = 0; // Remove properties that might affect total size calculation. this._mainElement.style.removeProperty('width'); this._mainElement.style.removeProperty('height'); this._sidebarElement.style.removeProperty('width'); this._sidebarElement.style.removeProperty('height'); this._innerSetSidebarSizeDIP(this._preferredSidebarSizeDIP(), Boolean(animate)); } setMainWidget(widget) { if (this._mainWidget === widget) { return; } this.suspendInvalidations(); if (this._mainWidget) { this._mainWidget.detach(); } this._mainWidget = widget; if (widget) { widget.element.slot = 'insertion-point-main'; if (this._showMode === ShowMode.OnlyMain || this._showMode === ShowMode.Both) { widget.show(this.element); } } this.resumeInvalidations(); } setSidebarWidget(widget) { if (this._sidebarWidget === widget) { return; } this.suspendInvalidations(); if (this._sidebarWidget) { this._sidebarWidget.detach(); } this._sidebarWidget = widget; if (widget) { widget.element.slot = 'insertion-point-sidebar'; if (this._showMode === ShowMode.OnlySidebar || this._showMode === ShowMode.Both) { widget.show(this.element); } } this.resumeInvalidations(); } mainWidget() { return this._mainWidget; } sidebarWidget() { return this._sidebarWidget; } sidebarElement() { return /** @type {!HTMLElement} */ this._sidebarElement; } childWasDetached(widget) { if (this._detaching) { return; } if (this._mainWidget === widget) { this._mainWidget = null; } if (this._sidebarWidget === widget) { this._sidebarWidget = null; } this.invalidateConstraints(); } isSidebarSecond() { return this._secondIsSidebar; } enableShowModeSaving() { this._shouldSaveShowMode = true; this._restoreAndApplyShowModeFromSettings(); } showMode() { return this._showMode; } setSecondIsSidebar(secondIsSidebar) { if (secondIsSidebar === this._secondIsSidebar) { return; } this._secondIsSidebar = secondIsSidebar; if (!this._mainWidget || !this._mainWidget.shouldHideOnDetach()) { if (secondIsSidebar) { this.contentElement.insertBefore(this._mainElement, this._sidebarElement); } else { this.contentElement.insertBefore(this._mainElement, this._resizerElement); } } else if (!this._sidebarWidget || !this._sidebarWidget.shouldHideOnDetach()) { if (secondIsSidebar) { this.contentElement.insertBefore(this._sidebarElement, this._resizerElement); } else { this.contentElement.insertBefore(this._sidebarElement, this._mainElement); } } else { console.error('Could not swap split widget side. Both children widgets contain iframes.'); this._secondIsSidebar = !secondIsSidebar; } } sidebarSide() { if (this._showMode !== ShowMode.Both) { return null; } return this._isVertical ? (this._secondIsSidebar ? 'right' : 'left') : (this._secondIsSidebar ? 'bottom' : 'top'); } resizerElement() { return this._resizerElement; } hideMain(animate) { this._showOnly(this._sidebarWidget, this._mainWidget, this._sidebarElement, this._mainElement, animate); this._updateShowMode(ShowMode.OnlySidebar); } hideSidebar(animate) { this._showOnly(this._mainWidget, this._sidebarWidget, this._mainElement, this._sidebarElement, animate); this._updateShowMode(ShowMode.OnlyMain); } setSidebarMinimized(minimized) { this._sidebarMinimized = minimized; this.invalidateConstraints(); } isSidebarMinimized() { return this._sidebarMinimized; } _showOnly(sideToShow, sideToHide, shadowToShow, shadowToHide, animate) { this._cancelAnimation(); function callback() { if (sideToShow) { // Make sure main is first in the children list. if (sideToShow === this._mainWidget) { this._mainWidget.show(this.element, this._sidebarWidget ? this._sidebarWidget.element : null); } else if (this._sidebarWidget) { this._sidebarWidget.show(this.element); } } if (sideToHide) { this._detaching = true; sideToHide.detach(); this._detaching = false; } this._resizerElement.classList.add('hidden'); shadowToShow.classList.remove('hidden'); shadowToShow.classList.add('maximized'); shadowToHide.classList.add('hidden'); shadowToHide.classList.remove('maximized'); this._removeAllLayoutProperties(); this.doResize(); this._showFinishedForTest(); } if (animate) { this._animate(true, callback.bind(this)); } else { callback.call(this); } this._sidebarSizeDIP = -1; this.setResizable(false); } _showFinishedForTest() { // This method is sniffed in tests. } _removeAllLayoutProperties() { this._sidebarElement.style.removeProperty('flexBasis'); this._mainElement.style.removeProperty('width'); this._mainElement.style.removeProperty('height'); this._sidebarElement.style.removeProperty('width'); this._sidebarElement.style.removeProperty('height'); this._resizerElement.style.removeProperty('left'); this._resizerElement.style.removeProperty('right'); this._resizerElement.style.removeProperty('top'); this._resizerElement.style.removeProperty('bottom'); this._resizerElement.style.removeProperty('margin-left'); this._resizerElement.style.removeProperty('margin-right'); this._resizerElement.style.removeProperty('margin-top'); this._resizerElement.style.removeProperty('margin-bottom'); } showBoth(animate) { if (this._showMode === ShowMode.Both) { animate = false; } this._cancelAnimation(); this._mainElement.classList.remove('maximized', 'hidden'); this._sidebarElement.classList.remove('maximized', 'hidden'); this._resizerElement.classList.remove('hidden'); this.setResizable(true); // Make sure main is the first in the children list. this.suspendInvalidations(); if (this._sidebarWidget) { this._sidebarWidget.show(this.element); } if (this._mainWidget) { this._mainWidget.show(this.element, this._sidebarWidget ? this._sidebarWidget.element : null); } this.resumeInvalidations(); // Order widgets in DOM properly. this.setSecondIsSidebar(this._secondIsSidebar); this._sidebarSizeDIP = -1; this._updateShowMode(ShowMode.Both); this._updateLayout(animate); } setResizable(resizable) { this._resizerWidget.setEnabled(resizable); } isResizable() { return this._resizerWidget.isEnabled(); } setSidebarSize(size) { const sizeDIP = ZoomManager.instance().cssToDIP(size); this._savedSidebarSizeDIP = sizeDIP; this._saveSetting(); this._innerSetSidebarSizeDIP(sizeDIP, false, true); } sidebarSize() { const sizeDIP = Math.max(0, this._sidebarSizeDIP); return ZoomManager.instance().dipToCSS(sizeDIP); } /** * Returns total size in DIP. */ _totalSizeDIP() { if (!this._totalSizeCSS) { this._totalSizeCSS = this._isVertical ? this.contentElement.offsetWidth : this.contentElement.offsetHeight; this._totalSizeOtherDimensionCSS = this._isVertical ? this.contentElement.offsetHeight : this.contentElement.offsetWidth; } return ZoomManager.instance().cssToDIP(this._totalSizeCSS); } _updateShowMode(showMode) { this._showMode = showMode; this._saveShowModeToSettings(); this._updateShowHideSidebarButton(); this.dispatchEventToListeners(Events.ShowModeChanged, showMode); this.invalidateConstraints(); } _innerSetSidebarSizeDIP(sizeDIP, animate, userAction) { if (this._showMode !== ShowMode.Both || !this.isShowing()) { return; } sizeDIP = this._applyConstraints(sizeDIP, userAction); if (this._sidebarSizeDIP === sizeDIP) { return; } if (!this._resizerElementSize) { this._resizerElementSize = this._isVertical ? this._resizerElement.offsetWidth : this._resizerElement.offsetHeight; } // Invalidate layout below. this._removeAllLayoutProperties(); // this._totalSizeDIP is available below since we successfully applied constraints. const roundSizeCSS = Math.round(ZoomManager.instance().dipToCSS(sizeDIP)); const sidebarSizeValue = roundSizeCSS + 'px'; const mainSizeValue = (this._totalSizeCSS - roundSizeCSS) + 'px'; this._sidebarElement.style.flexBasis = sidebarSizeValue; // Make both sides relayout boundaries. if (this._isVertical) { this._sidebarElement.style.width = sidebarSizeValue; this._mainElement.style.width = mainSizeValue; this._sidebarElement.style.height = this._totalSizeOtherDimensionCSS + 'px'; this._mainElement.style.height = this._totalSizeOtherDimensionCSS + 'px'; } else { this._sidebarElement.style.height = sidebarSizeValue; this._mainElement.style.height = mainSizeValue; this._sidebarElement.style.width = this._totalSizeOtherDimensionCSS + 'px'; this._mainElement.style.width = this._totalSizeOtherDimensionCSS + 'px'; } // Position resizer. if (this._isVertical) { if (this._secondIsSidebar) { this._resizerElement.style.right = sidebarSizeValue; this._resizerElement.style.marginRight = -this._resizerElementSize / 2 + 'px'; } else { this._resizerElement.style.left = sidebarSizeValue; this._resizerElement.style.marginLeft = -this._resizerElementSize / 2 + 'px'; } } else { if (this._secondIsSidebar) { this._resizerElement.style.bottom = sidebarSizeValue; this._resizerElement.style.marginBottom = -this._resizerElementSize / 2 + 'px'; } else { this._resizerElement.style.top = sidebarSizeValue; this._resizerElement.style.marginTop = -this._resizerElementSize / 2 + 'px'; } } this._sidebarSizeDIP = sizeDIP; // Force layout. if (animate) { this._animate(false); } else { // No need to recalculate this._sidebarSizeDIP and this._totalSizeDIP again. this.doResize(); this.dispatchEventToListeners(Events.SidebarSizeChanged, this.sidebarSize()); } } _animate(reverse, callback) { const animationTime = 50; this._animationCallback = callback || null; let animatedMarginPropertyName; if (this._isVertical) { animatedMarginPropertyName = this._secondIsSidebar ? 'margin-right' : 'margin-left'; } else { animatedMarginPropertyName = this._secondIsSidebar ? 'margin-bottom' : 'margin-top'; } const marginFrom = reverse ? '0' : '-' + ZoomManager.instance().dipToCSS(this._sidebarSizeDIP) + 'px'; const marginTo = reverse ? '-' + ZoomManager.instance().dipToCSS(this._sidebarSizeDIP) + 'px' : '0'; // This order of things is important. // 1. Resize main element early and force layout. this.contentElement.style.setProperty(animatedMarginPropertyName, marginFrom); if (!reverse) { suppressUnused(this._mainElement.offsetWidth); suppressUnused(this._sidebarElement.offsetWidth); } // 2. Issue onresize to the sidebar element, its size won't change. if (!reverse && this._sidebarWidget) { this._sidebarWidget.doResize(); } // 3. Configure and run animation this.contentElement.style.setProperty('transition', animatedMarginPropertyName + ' ' + animationTime + 'ms linear'); const boundAnimationFrame = animationFrame.bind(this); let startTime = null; function animationFrame() { this._animationFrameHandle = 0; if (!startTime) { // Kick animation on first frame. this.contentElement.style.setProperty(animatedMarginPropertyName, marginTo); startTime = window.performance.now(); } else if (window.performance.now() < startTime + animationTime) { // Process regular animation frame. if (this._mainWidget) { this._mainWidget.doResize(); } } else { // Complete animation. this._cancelAnimation(); if (this._mainWidget) { this._mainWidget.doResize(); } this.dispatchEventToListeners(Events.SidebarSizeChanged, this.sidebarSize()); return; } this._animationFrameHandle = this.contentElement.window().requestAnimationFrame(boundAnimationFrame); } this._animationFrameHandle = this.contentElement.window().requestAnimationFrame(boundAnimationFrame); } _cancelAnimation() { this.contentElement.style.removeProperty('margin-top'); this.contentElement.style.removeProperty('margin-right'); this.contentElement.style.removeProperty('margin-bottom'); this.contentElement.style.removeProperty('margin-left'); this.contentElement.style.removeProperty('transition'); if (this._animationFrameHandle) { this.contentElement.window().cancelAnimationFrame(this._animationFrameHandle); this._animationFrameHandle = 0; } if (this._animationCallback) { this._animationCallback(); this._animationCallback = null; } } _applyConstraints(sidebarSize, userAction) { const totalSize = this._totalSizeDIP(); const zoomFactor = this._constraintsInDip ? 1 : ZoomManager.instance().zoomFactor(); let constraints = this._sidebarWidget ? this._sidebarWidget.constraints() : new Constraints(); let minSidebarSize = this.isVertical() ? constraints.minimum.width : constraints.minimum.height; if (!minSidebarSize) { minSidebarSize = MinPadding; } minSidebarSize *= zoomFactor; if (this._sidebarMinimized) { sidebarSize = minSidebarSize; } let preferredSidebarSize = this.isVertical() ? constraints.preferred.width : constraints.preferred.height; if (!preferredSidebarSize) { preferredSidebarSize = MinPadding; } preferredSidebarSize *= zoomFactor; // Allow sidebar to be less than preferred by explicit user action. if (sidebarSize < preferredSidebarSize) { preferredSidebarSize = Math.max(sidebarSize, minSidebarSize); } preferredSidebarSize += zoomFactor; // 1 css pixel for splitter border. constraints = this._mainWidget ? this._mainWidget.constraints() : new Constraints(); let minMainSize = this.isVertical() ? constraints.minimum.width : constraints.minimum.height; if (!minMainSize) { minMainSize = MinPadding; } minMainSize *= zoomFactor; let preferredMainSize = this.isVertical() ? constraints.preferred.width : constraints.preferred.height; if (!preferredMainSize) { preferredMainSize = MinPadding; } preferredMainSize *= zoomFactor; const savedMainSize = this.isVertical() ? this._savedVerticalMainSize : this._savedHorizontalMainSize; if (savedMainSize !== null) { preferredMainSize = Math.min(preferredMainSize, savedMainSize * zoomFactor); } if (userAction) { preferredMainSize = minMainSize; } // Enough space for preferred. const totalPreferred = preferredMainSize + preferredSidebarSize; if (totalPreferred <= totalSize) { return Platform.NumberUtilities.clamp(sidebarSize, preferredSidebarSize, totalSize - preferredMainSize); } // Enough space for minimum. if (minMainSize + minSidebarSize <= totalSize) { const delta = totalPreferred - totalSize; const sidebarDelta = delta * preferredSidebarSize / totalPreferred; sidebarSize = preferredSidebarSize - sidebarDelta; return Platform.NumberUtilities.clamp(sidebarSize, minSidebarSize, totalSize - minMainSize); } // Not enough space even for minimum sizes. return Math.max(0, totalSize - minMainSize); } wasShown() { this._forceUpdateLayout(); ZoomManager.instance().addEventListener("ZoomChanged" /* ZoomChanged */, this._onZoomChanged, this); } willHide() { ZoomManager.instance().removeEventListener("ZoomChanged" /* ZoomChanged */, this._onZoomChanged, this); } onResize() { this._updateLayout(); } onLayout() { this._updateLayout(); } calculateConstraints() { if (this._showMode === ShowMode.OnlyMain) { return this._mainWidget ? this._mainWidget.constraints() : new Constraints(); } if (this._showMode === ShowMode.OnlySidebar) { return this._sidebarWidget ? this._sidebarWidget.constraints() : new Constraints(); } let mainConstraints = this._mainWidget ? this._mainWidget.constraints() : new Constraints(); let sidebarConstraints = this._sidebarWidget ? this._sidebarWidget.constraints() : new Constraints(); const min = MinPadding; if (this._isVertical) { mainConstraints = mainConstraints.widthToMax(min).addWidth(1); // 1 for splitter sidebarConstraints = sidebarConstraints.widthToMax(min); return mainConstraints.addWidth(sidebarConstraints).heightToMax(sidebarConstraints); } mainConstraints = mainConstraints.heightToMax(min).addHeight(1); // 1 for splitter sidebarConstraints = sidebarConstraints.heightToMax(min); return mainConstraints.widthToMax(sidebarConstraints).addHeight(sidebarConstraints); } _onResizeStart(_event) { this._resizeStartSizeDIP = this._sidebarSizeDIP; } _onResizeUpdate(event) { const offset = event.data.currentPosition - event.data.startPosition; const offsetDIP = ZoomManager.instance().cssToDIP(offset); const newSizeDIP = this._secondIsSidebar ? this._resizeStartSizeDIP - offsetDIP : this._resizeStartSizeDIP + offsetDIP; const constrainedSizeDIP = this._applyConstraints(newSizeDIP, true); this._savedSidebarSizeDIP = constrainedSizeDIP; this._saveSetting(); this._innerSetSidebarSizeDIP(constrainedSizeDIP, false, true); if (this.isVertical()) { this._savedVerticalMainSize = this._totalSizeDIP() - this._sidebarSizeDIP; } else { this._savedHorizontalMainSize = this._totalSizeDIP() - this._sidebarSizeDIP; } } _onResizeEnd(_event) { this._resizeStartSizeDIP = 0; } hideDefaultResizer(noSplitter) { this.uninstallResizer(this._resizerElement); this._sidebarElement.classList.toggle('no-default-splitter', Boolean(noSplitter)); } installResizer(resizerElement) { this._resizerWidget.addElement(resizerElement); } uninstallResizer(resizerElement) { this._resizerWidget.removeElement(resizerElement); } hasCustomResizer() { const elements = this._resizerWidget.elements(); return elements.length > 1 || (elements.length === 1 && elements[0] !== this._resizerElement); } toggleResizer(resizer, on) { if (on) { this.installResizer(resizer); } else { this.uninstallResizer(resizer); } } _settingForOrientation() { const state = this._setting ? this._setting.get() : {}; return this._isVertical ? state.vertical : state.horizontal; } _preferredSidebarSizeDIP() { let size = this._savedSidebarSizeDIP; if (!size) { size = this._isVertical ? this._defaultSidebarWidth : this._defaultSidebarHeight; // If we have default value in percents, calculate it on first use. if (0 < size && size < 1) { size *= this._totalSizeDIP(); } } return size; } _restoreSidebarSizeFromSettings() { const settingForOrientation = this._settingForOrientation(); this._savedSidebarSizeDIP = settingForOrientation ? settingForOrientation.size : 0; } _restoreAndApplyShowModeFromSettings() { const orientationState = this._settingForOrientation(); this._savedShowMode = orientationState && orientationState.showMode ? orientationState.showMode : this._showMode; this._showMode = this._savedShowMode; switch (this._savedShowMode) { case ShowMode.Both: this.showBoth(); break; case ShowMode.OnlyMain: this.hideSidebar(); break; case ShowMode.OnlySidebar: this.hideMain(); break; } } _saveShowModeToSettings() { this._savedShowMode = this._showMode; this._saveSetting(); } _saveSetting() { if (!this._setting) { return; } const state = this._setting.get(); const orientationState = (this._isVertical ? state.vertical : state.horizontal) || {}; orientationState.size = this._savedSidebarSizeDIP; if (this._shouldSaveShowMode) { orientationState.showMode = this._savedShowMode; } if (this._isVertical) { state.vertical = orientationState; } else { state.horizontal = orientationState; } this._setting.set(state); } _forceUpdateLayout() { // Force layout even if sidebar size does not change. this._sidebarSizeDIP = -1; this._updateLayout(); } _onZoomChanged(_event) { this._forceUpdateLayout(); } createShowHideSidebarButton(showTitle, hideTitle) { this._showSidebarButtonTitle = showTitle; this._hideSidebarButtonTitle = hideTitle; this._showHideSidebarButton = new ToolbarButton('', ''); this._showHideSidebarButton.addEventListener(ToolbarButton.Events.Click, buttonClicked, this); this._updateShowHideSidebarButton(); function buttonClicked(_event) { if (this._showMode !== ShowMode.Both) { this.showBoth(true); } else { this.hideSidebar(true); } } return this._showHideSidebarButton; } _updateShowHideSidebarButton() { if (!this._showHideSidebarButton) { return; } const sidebarHidden = this._showMode === ShowMode.OnlyMain; let glyph = ''; if (sidebarHidden) { glyph = this.isVertical() ? (this.isSidebarSecond() ? 'largeicon-show-right-sidebar' : 'largeicon-show-left-sidebar') : (this.isSidebarSecond() ? 'largeicon-show-bottom-sidebar' : 'largeicon-show-top-sidebar'); } else { glyph = this.isVertical() ? (this.isSidebarSecond() ? 'largeicon-hide-right-sidebar' : 'largeicon-hide-left-sidebar') : (this.isSidebarSecond() ? 'largeicon-hide-bottom-sidebar' : 'largeicon-hide-top-sidebar'); } this._showHideSidebarButton.setGlyph(glyph); this._showHideSidebarButton.setTitle(sidebarHidden ? this._showSidebarButtonTitle : this._hideSidebarButtonTitle); } } // TODO(crbug.com/1167717): Make this a const enum again // eslint-disable-next-line rulesdir/const_enum export var ShowMode; (function (ShowMode) { ShowMode["Both"] = "Both"; ShowMode["OnlyMain"] = "OnlyMain"; ShowMode["OnlySidebar"] = "OnlySidebar"; })(ShowMode || (ShowMode = {})); // TODO(crbug.com/1167717): Make this a const enum again // eslint-disable-next-line rulesdir/const_enum export var Events; (function (Events) { Events["SidebarSizeChanged"] = "SidebarSizeChanged"; Events["ShowModeChanged"] = "ShowModeChanged"; })(Events || (Events = {})); const MinPadding = 20; const suppressUnused = function (_value) { };