UNPKG

chrome-devtools-frontend

Version:
69 lines (56 loc) 2.27 kB
// Copyright 2021 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 i18n from '../../core/i18n/i18n.js'; import type * as Platform from '../../core/platform/platform.js'; import type * as IssuesManager from '../../models/issues_manager/issues_manager.js'; import {AffectedResourcesView} from './AffectedResourcesView.js'; const UIStrings = { /** *@description Label for number of affected resources indication in issue view */ nResources: '{n, plural, =1 {# resource} other {# resources}}', /** *@description Title for the 'Frame' column. */ frameId: 'Frame', }; const str_ = i18n.i18n.registerUIStrings('panels/issues/GenericIssueDetailsView.ts', UIStrings); const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_); export class GenericIssueDetailsView extends AffectedResourcesView { protected getResourceNameWithCount(count: number): Platform.UIString.LocalizedString { return i18nString(UIStrings.nResources, {n: count}); } #appendDetails(genericIssues: ReadonlySet<IssuesManager.GenericIssue.GenericIssue>): void { const header = document.createElement('tr'); const sampleIssueDetails = genericIssues.values().next().value.details(); if (sampleIssueDetails.frameId) { this.appendColumnTitle(header, i18nString(UIStrings.frameId)); } this.affectedResources.appendChild(header); let count = 0; for (const genericIssue of genericIssues) { count++; this.#appendDetail(genericIssue); } this.updateAffectedResourceCount(count); } #appendDetail(genericIssue: IssuesManager.GenericIssue.GenericIssue): void { const element = document.createElement('tr'); element.classList.add('affected-resource-directive'); const details = genericIssue.details(); if (details.frameId) { element.appendChild(this.createFrameCell(details.frameId, genericIssue.getCategory())); } this.affectedResources.appendChild(element); } update(): void { this.clear(); const issues = this.issue.getGenericIssues(); if (issues.size > 0) { this.#appendDetails(issues); } else { this.updateAffectedResourceCount(0); } } }