| // Copyright 2022 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import * as Host from '../../core/host/host.js'; |
| import * as i18n from '../../core/i18n/i18n.js'; |
| import type * as Platform from '../../core/platform/platform.js'; |
| import * as SDK from '../../core/sdk/sdk.js'; |
| import type * as Protocol from '../../generated/protocol.js'; |
| import {createIcon} from '../../ui/kit/kit.js'; |
| |
| import {ApplicationPanelTreeElement} from './ApplicationPanelTreeElement.js'; |
| import {InterestGroupStorageView} from './InterestGroupStorageView.js'; |
| import type {ResourcesPanel} from './ResourcesPanel.js'; |
| |
| const UIStrings = { |
| /** |
| * @description Label for an item in the Application Panel Sidebar of the Application panel |
| * An interest group is an ad targeting group stored on the browser that can |
| * be used to show a certain set of advertisements in the future as the |
| * outcome of a FLEDGE auction. (https://developer.chrome.com/blog/fledge-api/) |
| */ |
| interestGroups: 'Interest groups', |
| } as const; |
| const str_ = i18n.i18n.registerUIStrings('panels/application/InterestGroupTreeElement.ts', UIStrings); |
| export const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_); |
| |
| export class InterestGroupTreeElement extends ApplicationPanelTreeElement { |
| private view: InterestGroupStorageView; |
| |
| constructor(storagePanel: ResourcesPanel) { |
| super(storagePanel, i18nString(UIStrings.interestGroups), false, 'interest-groups'); |
| const interestGroupIcon = createIcon('database'); |
| this.setLeadingIcons([interestGroupIcon]); |
| this.view = new InterestGroupStorageView(this); |
| } |
| |
| override get itemURL(): Platform.DevToolsPath.UrlString { |
| return 'interest-groups://' as Platform.DevToolsPath.UrlString; |
| } |
| |
| async getInterestGroupDetails(owner: string, name: string): Promise<object|null> { |
| const mainTarget = SDK.TargetManager.TargetManager.instance().primaryPageTarget(); |
| if (!mainTarget) { |
| return null; |
| } |
| const response = await mainTarget.storageAgent().invoke_getInterestGroupDetails({ownerOrigin: owner, name}); |
| return response.details; |
| } |
| |
| override onselect(selectedByUser?: boolean): boolean { |
| super.onselect(selectedByUser); |
| this.showView(this.view); |
| Host.userMetrics.panelShown('interest-groups'); |
| return false; |
| } |
| |
| addEvent(event: Protocol.Storage.InterestGroupAccessedEvent): void { |
| this.view.addEvent(event); |
| } |
| |
| clearEvents(): void { |
| this.view.clearEvents(); |
| } |
| } |