META-INF.dirigible.dev-tools.changes.ChangesSidebar.js Maven / Gradle / Ivy
// Copyright 2017 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 Common from '../common/common.js';
import * as Snippets from '../snippets/snippets.js';
import * as UI from '../ui/ui.js';
import * as Workspace from '../workspace/workspace.js';
import * as WorkspaceDiff from '../workspace_diff/workspace_diff.js';
export class ChangesSidebar extends UI.Widget.Widget {
/**
* @param {!WorkspaceDiff.WorkspaceDiff.WorkspaceDiffImpl} workspaceDiff
*/
constructor(workspaceDiff) {
super();
this._treeoutline = new UI.TreeOutline.TreeOutlineInShadow();
this._treeoutline.registerRequiredCSS('changes/changesSidebar.css');
this._treeoutline.setComparator((a, b) => a.titleAsText().compareTo(b.titleAsText()));
this._treeoutline.addEventListener(UI.TreeOutline.Events.ElementSelected, this._selectionChanged, this);
UI.ARIAUtils.markAsTablist(this._treeoutline.contentElement);
this.element.appendChild(this._treeoutline.element);
/** @type {!Map} */
this._treeElements = new Map();
this._workspaceDiff = workspaceDiff;
this._workspaceDiff.modifiedUISourceCodes().forEach(this._addUISourceCode.bind(this));
this._workspaceDiff.addEventListener(
WorkspaceDiff.WorkspaceDiff.Events.ModifiedStatusChanged, this._uiSourceCodeMofiedStatusChanged, this);
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
* @param {boolean=} omitFocus
*/
selectUISourceCode(uiSourceCode, omitFocus) {
const treeElement = this._treeElements.get(uiSourceCode);
if (!treeElement) {
return;
}
treeElement.select(omitFocus);
}
/**
* @return {?Workspace.UISourceCode.UISourceCode}
*/
selectedUISourceCode() {
return this._treeoutline.selectedTreeElement ? this._treeoutline.selectedTreeElement.uiSourceCode : null;
}
_selectionChanged() {
this.dispatchEventToListeners(Events.SelectedUISourceCodeChanged);
}
/**
* @param {!Common.EventTarget.EventTargetEvent} event
*/
_uiSourceCodeMofiedStatusChanged(event) {
if (event.data.isModified) {
this._addUISourceCode(event.data.uiSourceCode);
} else {
this._removeUISourceCode(event.data.uiSourceCode);
}
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
*/
_removeUISourceCode(uiSourceCode) {
const treeElement = this._treeElements.get(uiSourceCode);
this._treeElements.delete(uiSourceCode);
if (this._treeoutline.selectedTreeElement === treeElement) {
const nextElementToSelect = treeElement.previousSibling || treeElement.nextSibling;
if (nextElementToSelect) {
nextElementToSelect.select(true);
} else {
treeElement.deselect();
this._selectionChanged();
}
}
this._treeoutline.removeChild(treeElement);
treeElement.dispose();
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
*/
_addUISourceCode(uiSourceCode) {
const treeElement = new UISourceCodeTreeElement(uiSourceCode);
this._treeElements.set(uiSourceCode, treeElement);
this._treeoutline.appendChild(treeElement);
if (!this._treeoutline.selectedTreeElement) {
treeElement.select(true);
}
}
}
/**
* @enum {symbol}
*/
export const Events = {
SelectedUISourceCodeChanged: Symbol('SelectedUISourceCodeChanged')
};
export class UISourceCodeTreeElement extends UI.TreeOutline.TreeElement {
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
*/
constructor(uiSourceCode) {
super();
this.uiSourceCode = uiSourceCode;
this.listItemElement.classList.add('navigator-' + uiSourceCode.contentType().name() + '-tree-item');
UI.ARIAUtils.markAsTab(this.listItemElement);
let iconType = 'largeicon-navigator-file';
if (Snippets.ScriptSnippetFileSystem.isSnippetsUISourceCode(this.uiSourceCode)) {
iconType = 'largeicon-navigator-snippet';
}
const defaultIcon = UI.Icon.Icon.create(iconType, 'icon');
this.setLeadingIcons([defaultIcon]);
this._eventListeners = [
uiSourceCode.addEventListener(Workspace.UISourceCode.Events.TitleChanged, this._updateTitle, this),
uiSourceCode.addEventListener(Workspace.UISourceCode.Events.WorkingCopyChanged, this._updateTitle, this),
uiSourceCode.addEventListener(Workspace.UISourceCode.Events.WorkingCopyCommitted, this._updateTitle, this)
];
this._updateTitle();
}
_updateTitle() {
let titleText = this.uiSourceCode.displayName();
if (this.uiSourceCode.isDirty()) {
titleText = '*' + titleText;
}
this.title = titleText;
let tooltip = this.uiSourceCode.url();
if (this.uiSourceCode.contentType().isFromSourceMap()) {
tooltip = Common.UIString.UIString('%s (from source map)', this.uiSourceCode.displayName());
}
this.tooltip = tooltip;
}
dispose() {
Common.EventTarget.EventTarget.removeEventListeners(this._eventListeners);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy