blob: 4812c0e2f02a9399fa6cc990b7b46a77cbb54cd1 [file] [log] [blame]
// Copyright (c) 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 Common from '../common/common.js';
import * as i18n from '../i18n/i18n.js';
import * as SDK from '../sdk/sdk.js';
import * as UI from '../ui/ui.js';
import {DeveloperResourcesListView} from './DeveloperResourcesListView.js';
export const UIStrings = {
/**
*@description Placeholder for a search field in a toolbar
*/
enterTextToSearchTheUrlAndError: 'Enter text to search the URL and Error columns',
/**
*@description Title for a checkbox in the toolbar of the developer resources view
*/
loadHttpsDeveloperResources: 'Load HTTP(S) developer resources through the inspected target',
/**
*@description Text for a checkbox in the toolbar of the developer resources view
*/
enableLoadingThroughTarget: 'Enable loading through target',
/**
*@description Text for resources load status
*@example {1} PH1
*@example {1} PH2
*/
resourcesCurrentlyLoading: '{PH1} resources, {PH2} currently loading',
/**
*@description Text for resources load status
*@example {1} PH1
*/
resources: '{PH1} resources',
};
const str_ = i18n.i18n.registerUIStrings('developer_resources/DeveloperResourcesView.js', UIStrings);
const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
/** @type {!DeveloperResourcesView} */
let developerResourcesViewInstance;
export class DeveloperResourcesView extends UI.Widget.VBox {
/** @private */
constructor() {
super(true);
this.registerRequiredCSS('developer_resources/developerResourcesView.css', {enableLegacyPatching: true});
const toolbarContainer = this.contentElement.createChild('div', 'developer-resource-view-toolbar-container');
const toolbar = new UI.Toolbar.Toolbar('developer-resource-view-toolbar', toolbarContainer);
/** @type {?RegExp} */
this._textFilterRegExp = null;
const accessiblePlaceholder = ''; // Indicates that ToobarInput should use the placeholder as ARIA label.
this._filterInput =
new UI.Toolbar.ToolbarInput(i18nString(UIStrings.enterTextToSearchTheUrlAndError), accessiblePlaceholder, 1);
this._filterInput.addEventListener(UI.Toolbar.ToolbarInput.Event.TextChanged, this._onFilterChanged, this);
toolbar.appendToolbarItem(this._filterInput);
const loadThroughTarget = SDK.PageResourceLoader.getLoadThroughTargetSetting();
const loadThroughTargetCheckbox = new UI.Toolbar.ToolbarSettingCheckbox(
loadThroughTarget, i18nString(UIStrings.loadHttpsDeveloperResources),
i18nString(UIStrings.enableLoadingThroughTarget));
toolbar.appendToolbarItem(loadThroughTargetCheckbox);
this._coverageResultsElement = this.contentElement.createChild('div', 'developer-resource-view-results');
this._listView = new DeveloperResourcesListView(this._isVisible.bind(this));
this._listView.show(this._coverageResultsElement);
this._statusToolbarElement = this.contentElement.createChild('div', 'developer-resource-view-toolbar-summary');
this._statusMessageElement = this._statusToolbarElement.createChild('div', 'developer-resource-view-message');
this._throttler = new Common.Throttler.Throttler(100);
this._loader = SDK.PageResourceLoader.PageResourceLoader.instance();
this._loader.addEventListener(SDK.PageResourceLoader.Events.Update, this._onUpdate, this);
this._onUpdate();
}
static instance() {
if (!developerResourcesViewInstance) {
developerResourcesViewInstance = new DeveloperResourcesView();
}
return developerResourcesViewInstance;
}
_onUpdate() {
this._throttler.schedule(this._update.bind(this));
}
async _update() {
this._listView.reset();
this._listView.update(this._loader.getResourcesLoaded().values());
this._updateStats();
}
_updateStats() {
const {loading, resources} = this._loader.getNumberOfResources();
if (loading > 0) {
this._statusMessageElement.textContent =
i18nString(UIStrings.resourcesCurrentlyLoading, {PH1: resources, PH2: loading});
} else {
this._statusMessageElement.textContent = i18nString(UIStrings.resources, {PH1: resources});
}
}
/**
* @param {!SDK.PageResourceLoader.PageResource} item
* @return {boolean}
*/
_isVisible(item) {
return !this._textFilterRegExp || this._textFilterRegExp.test(item.url) ||
this._textFilterRegExp.test(item.errorMessage || '');
}
/**
*
*/
_onFilterChanged() {
if (!this._listView) {
return;
}
const text = this._filterInput.value();
this._textFilterRegExp = text ? createPlainTextSearchRegex(text, 'i') : null;
this._listView.updateFilterAndHighlight(this._textFilterRegExp);
this._updateStats();
}
}