blob: 8973cbeaf99a0c495a1990343d6236242669308d [file] [log] [blame]
// Copyright 2017 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 'chrome://resources/cr_elements/cr_toggle/cr_toggle.m.js';
import 'chrome://resources/cr_elements/shared_style_css.m.js';
import {html, Polymer} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
/**
* An extensions-toggle-row provides a way of having a clickable row that can
* modify a cr-toggle, by leveraging the native <label> functionality. It uses
* a hidden native <input type="checkbox"> to achieve this.
*/
Polymer({
is: 'extensions-toggle-row',
_template: html`{__html_template__}`,
properties: {
checked: Boolean,
disabled: Boolean,
},
/**
* Exposing the clickable part of extensions-toggle-row for testing
* purposes.
* @return {!HTMLElement}
*/
getLabel() {
return /** @type {!HTMLElement} */ (this.$.label);
},
/**
* @param {!Event} e
* @private
*/
onNativeClick_(e) {
// Even though the native checkbox is hidden and can't be actually
// cilcked/tapped by the user, because it resides within the <label> the
// browser emits an extraneous event when the label is clicked. Stop
// propagation so that it does not interfere with |onLabelTap_| listener.
e.stopPropagation();
},
/**
* Fires when the native checkbox changes value. This happens when the user
* clicks directly on the <label>.
* @param {!Event} e
* @private
*/
onNativeChange_(e) {
e.stopPropagation();
// Sync value of native checkbox and cr-toggle and |checked|.
this.$.crToggle.checked = this.$.native.checked;
this.checked = this.$.native.checked;
this.fire('change', this.checked);
},
/**
* @param {!CustomEvent<boolean>} e
* @private
*/
onCrToggleChange_(e) {
e.stopPropagation();
// Sync value of native checkbox and cr-toggle.
this.$.native.checked = e.detail;
this.fire('change', this.checked);
},
});