blob: 805b337dab1422576e92ab59fadc36e598d5b3d9 [file] [log] [blame]
// Copyright 2018 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.
Audits2.RadioSetting = class {
/**
* @param {!Array<!{value: string, label: string}>} options
* @param {!Common.Setting} setting
*/
constructor(options, setting) {
this._setting = setting;
this._options = options;
this.element = createElement('div', 'audits2-radio-group');
this._radioElements = [];
for (const option of this._options) {
const fragment = UI.Fragment.build`
<label $="label" class="audits2-radio">
<input $="input" type="radio" value=${option.value} name=${setting.name}>
${option.label}
</label>
`;
this.element.appendChild(fragment.element());
if (option.title)
UI.Tooltip.install(fragment.$('label'), option.title);
const radioElement = fragment.$('input');
radioElement.addEventListener('change', this._valueChanged.bind(this));
this._radioElements.push(radioElement);
}
this._ignoreChangeEvents = false;
this._selectedIndex = -1;
setting.addChangeListener(this._settingChanged, this);
this._settingChanged();
}
_updateUI() {
this._ignoreChangeEvents = true;
this._radioElements[this._selectedIndex].checked = true;
this._ignoreChangeEvents = false;
}
_settingChanged() {
const value = this._setting.get();
this._selectedIndex = this._options.findIndex(option => option.value === value);
this._updateUI();
}
/**
* @param {!Event} event
*/
_valueChanged(event) {
if (this._ignoreChangeEvents)
return;
const selectedRadio = this._radioElements.find(radio => radio.checked);
this._setting.set(selectedRadio.value);
}
};