blob: 58b16c7a78371582e708640f6279b2050be5e2b6 [file] [log] [blame]
// 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.
export default class PersistenceUtils {
/**
* @param {!Workspace.UISourceCode} uiSourceCode
* @return {string}
*/
static tooltipForUISourceCode(uiSourceCode) {
const binding = Persistence.persistence.binding(uiSourceCode);
if (!binding) {
return '';
}
if (uiSourceCode === binding.network) {
return Persistence.FileSystemWorkspaceBinding.tooltipForUISourceCode(binding.fileSystem);
}
if (binding.network.contentType().isFromSourceMap()) {
return Common.UIString('Linked to source map: %s', binding.network.url().trimMiddle(150));
}
return Common.UIString('Linked to %s', binding.network.url().trimMiddle(150));
}
/**
* @param {!Workspace.UISourceCode} uiSourceCode
* @return {?UI.Icon}
*/
static iconForUISourceCode(uiSourceCode) {
const binding = Persistence.persistence.binding(uiSourceCode);
if (binding) {
if (!binding.fileSystem.url().startsWith('file://')) {
return null;
}
const icon = UI.Icon.create('mediumicon-file-sync');
icon.title = PersistenceUtils.tooltipForUISourceCode(binding.network);
// TODO(allada) This will not work properly with dark theme.
if (Persistence.networkPersistenceManager.project() === binding.fileSystem.project()) {
icon.style.filter = 'hue-rotate(160deg)';
}
return icon;
}
if (uiSourceCode.project().type() !== Workspace.projectTypes.FileSystem ||
!uiSourceCode.url().startsWith('file://')) {
return null;
}
const icon = UI.Icon.create('mediumicon-file');
icon.title = PersistenceUtils.tooltipForUISourceCode(uiSourceCode);
return icon;
}
}
/**
* @extends {Common.Object}
* @implements {Components.LinkDecorator}
*/
export class LinkDecorator extends Common.Object {
/**
* @param {!Persistence.Persistence} persistence
*/
constructor(persistence) {
super();
persistence.addEventListener(Persistence.Persistence.Events.BindingCreated, this._bindingChanged, this);
persistence.addEventListener(Persistence.Persistence.Events.BindingRemoved, this._bindingChanged, this);
}
/**
* @param {!Common.Event} event
*/
_bindingChanged(event) {
const binding = /** @type {!Persistence.PersistenceBinding} */ (event.data);
this.dispatchEventToListeners(Components.LinkDecorator.Events.LinkIconChanged, binding.network);
}
/**
* @override
* @param {!Workspace.UISourceCode} uiSourceCode
* @return {?UI.Icon}
*/
linkIcon(uiSourceCode) {
return PersistenceUtils.iconForUISourceCode(uiSourceCode);
}
}
/* Legacy exported object */
self.Persistence = self.Persistence || {};
/* Legacy exported object */
Persistence = Persistence || {};
/** @constructor */
Persistence.PersistenceUtils = PersistenceUtils;
/** @constructor */
Persistence.PersistenceUtils.LinkDecorator = LinkDecorator;