blob: fdace935d4beb7f96d4fd2d375805a24b370ce13 [file] [log] [blame]
// Copyright 2015 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.
/**
* The |name| is shown in the gui. The |value| us use to set or compare with
* the preference value.
* @typedef {{
* name: string,
* value: (number|string)
* }}
*/
let DropdownMenuOption;
/**
* @typedef {!Array<!DropdownMenuOption>}
*/
let DropdownMenuOptionList;
/**
* 'settings-dropdown-menu' is a control for displaying options
* in the settings.
*
* Example:
*
* <settings-dropdown-menu pref="{{prefs.foo}}">
* </settings-dropdown-menu>
*/
Polymer({
is: 'settings-dropdown-menu',
behaviors: [CrPolicyPrefBehavior, PrefControlBehavior],
properties: {
/**
* List of options for the drop-down menu.
* @type {?DropdownMenuOptionList}
*/
menuOptions: {
type: Array,
value: null,
},
/** Whether the dropdown menu should be disabled. */
disabled: {
type: Boolean,
reflectToAttribute: true,
value: false,
},
/**
* The value of the "custom" item.
* @private
*/
notFoundValue_: {
type: String,
value: 'SETTINGS_DROPDOWN_NOT_FOUND_ITEM',
readOnly: true,
},
/** Label for a11y purposes */
label: String,
},
observers: [
'updateSelected_(menuOptions, pref.value)',
],
/**
* Pass the selection change to the pref value.
* @private
*/
onChange_: function() {
const selected = this.$.dropdownMenu.value;
if (selected == this.notFoundValue_)
return;
const prefValue =
Settings.PrefUtil.stringToPrefValue(selected, assert(this.pref));
if (prefValue !== undefined)
this.set('pref.value', prefValue);
},
/**
* Updates the selected item when the pref or menuOptions change.
* @private
*/
updateSelected_: function() {
if (this.menuOptions === null || !this.menuOptions.length)
return;
const prefValue = this.pref.value;
const option = this.menuOptions.find(function(menuItem) {
return menuItem.value == prefValue;
});
// Wait for the dom-repeat to populate the <select> before setting
// <select>#value so the correct option gets selected.
this.async(() => {
this.$.dropdownMenu.value = option == undefined ?
this.notFoundValue_ :
Settings.PrefUtil.prefToString(assert(this.pref));
});
},
/**
* @param {?DropdownMenuOptionList} menuOptions
* @param {string} prefValue
* @return {boolean}
* @private
*/
showNotFoundValue_: function(menuOptions, prefValue) {
// Don't show "Custom" before the options load.
if (!menuOptions || !menuOptions.length)
return false;
const option = menuOptions.find(function(menuItem) {
return menuItem.value == prefValue;
});
return !option;
},
/**
* @return {boolean}
* @private
*/
shouldDisableMenu_: function() {
return this.disabled || this.isPrefEnforced() ||
this.menuOptions === null || this.menuOptions.length == 0;
},
});