/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import { html, styleMap } from "chrome://global/content/vendor/lit.all.mjs"; import { SidebarPage } from "./sidebar-page.mjs"; // eslint-disable-next-line import/no-unassigned-import import "chrome://global/content/elements/moz-button.mjs"; const l10nMap = new Map([ ["viewHistorySidebar", "sidebar-customize-history"], ["viewTabsSidebar", "sidebar-customize-synced-tabs"], ]); export class SidebarCustomize extends SidebarPage { static queries = { toolInputs: { all: ".customize-firefox-tools input" }, }; connectedCallback() { super.connectedCallback(); window.addEventListener("SidebarItemChanged", this); } disconnectedCallback() { super.disconnectedCallback(); window.removeEventListener("SidebarItemChanged", this); } get sidebarLauncher() { return this.getWindow().document.querySelector("sidebar-launcher"); } getWindow() { return window.browsingContext.embedderWindowGlobal.browsingContext.window; } closeCustomizeView(e) { e.preventDefault(); let view = e.target.getAttribute("view"); this.getWindow().SidebarController.toggle(view); } getTools() { const toolsMap = new Map( [...this.getWindow().SidebarController.toolsAndExtensions] // eslint-disable-next-line no-unused-vars .filter(([key, val]) => !val.extensionId) ); return toolsMap; } handleEvent(e) { switch (e.type) { case "SidebarItemChanged": this.requestUpdate(); break; } } async onToggleInput(e) { e.preventDefault(); this.getWindow().SidebarController.toggleTool(e.target.id); } getInputL10nId(view) { return l10nMap.get(view); } inputTemplate(tool) { return html`
`; } render() { return html` ${this.stylesheet()}

${[...this.getTools().values()].map(tool => this.inputTemplate(tool))}
`; } } customElements.define("sidebar-customize", SidebarCustomize);