blob: 06bca31fabb98344c4b113eaaaa6d09c2549cc36 [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.
/**
* @fileoverview 'settings-omnibox-extension-entry' is a component for showing
* an omnibox extension with its name and keyword.
*/
import 'chrome://resources/cr_elements/cr_icon_button/cr_icon_button.js';
import 'chrome://resources/cr_elements/icons.m.js';
import './search_engine_entry.css.js';
import '../settings_shared.css.js';
import '../site_favicon.js';
import {AnchorAlignment} from 'chrome://resources/cr_elements/cr_action_menu/cr_action_menu.js';
import {assert} from 'chrome://resources/js/assert_ts.js';
import {FocusRowBehavior} from 'chrome://resources/js/cr/ui/focus_row_behavior.m.js';
import {mixinBehaviors, PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {ExtensionControlBrowserProxy, ExtensionControlBrowserProxyImpl} from '../extension_control_browser_proxy.js';
import {getTemplate} from './omnibox_extension_entry.html.js';
import {SearchEngine} from './search_engines_browser_proxy.js';
export interface SettingsOmniboxExtensionEntryElement {
$: {
disable: HTMLButtonElement,
manage: HTMLButtonElement,
};
}
const SettingsOmniboxExtensionEntryElementBase =
mixinBehaviors([FocusRowBehavior], PolymerElement) as
{new (): PolymerElement & FocusRowBehavior};
export class SettingsOmniboxExtensionEntryElement extends
SettingsOmniboxExtensionEntryElementBase {
static get is() {
return 'settings-omnibox-extension-entry';
}
static get template() {
return getTemplate();
}
static get properties() {
return {
engine: Object,
};
}
engine: SearchEngine;
private browserProxy_: ExtensionControlBrowserProxy =
ExtensionControlBrowserProxyImpl.getInstance();
private onManageTap_() {
this.closePopupMenu_();
this.browserProxy_.manageExtension(this.engine.extension!.id);
}
private onDisableTap_() {
this.closePopupMenu_();
this.browserProxy_.disableExtension(this.engine.extension!.id);
}
private closePopupMenu_() {
this.shadowRoot!.querySelector('cr-action-menu')!.close();
}
private onDotsTap_() {
const dots = this.shadowRoot!.querySelector('cr-icon-button');
assert(dots);
this.shadowRoot!.querySelector('cr-action-menu')!.showAt(dots, {
anchorAlignmentY: AnchorAlignment.AFTER_END,
});
}
}
declare global {
interface HTMLElementTagNameMap {
'settings-omnibox-extension-entry': SettingsOmniboxExtensionEntryElement;
}
}
customElements.define(
SettingsOmniboxExtensionEntryElement.is,
SettingsOmniboxExtensionEntryElement);