| // 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. |
| |
| /** |
| * @fileoverview Common prefs behavior. |
| */ |
| |
| // clang-format off |
| import {assert} from 'chrome://resources/js/assert.m.js'; |
| import {dedupingMixin, PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js'; |
| // clang-format on |
| |
| type Constructor<T> = new (...args: any[]) => T; |
| |
| export const PrefsMixin = dedupingMixin( |
| <T extends Constructor<PolymerElement>>(superClass: T): T& |
| Constructor<PrefsMixinInterface> => { |
| class PrefsMixin extends superClass implements PrefsMixinInterface { |
| static get properties() { |
| return { |
| /** Preferences state. */ |
| prefs: { |
| type: Object, |
| notify: true, |
| }, |
| }; |
| } |
| |
| prefs: any; |
| |
| /** |
| * Gets the pref at the given prefPath. Throws if the pref is not found. |
| */ |
| getPref(prefPath: string) { |
| const pref = this.get(prefPath, this.prefs); |
| assert(typeof pref !== 'undefined', 'Pref is missing: ' + prefPath); |
| return pref; |
| } |
| |
| /** |
| * Sets the value of the pref at the given prefPath. Throws if the pref |
| * is not found. |
| */ |
| setPrefValue(prefPath: string, value: any) { |
| this.getPref(prefPath); // Ensures we throw if the pref is not found. |
| this.set('prefs.' + prefPath + '.value', value); |
| } |
| |
| /** |
| * Appends the item to the pref list at the given key if the item is not |
| * already in the list. Asserts if the pref itself is not found or is |
| * not an Array type. |
| */ |
| appendPrefListItem(key: string, item: any) { |
| const pref = this.getPref(key); |
| assert(pref && pref.type === chrome.settingsPrivate.PrefType.LIST); |
| if (pref.value.indexOf(item) === -1) { |
| this.push('prefs.' + key + '.value', item); |
| } |
| } |
| |
| /** |
| * Deletes the given item from the pref at the given key if the item is |
| * found. Asserts if the pref itself is not found or is not an Array |
| * type. |
| */ |
| deletePrefListItem(key: string, item: any) { |
| assert( |
| this.getPref(key).type === chrome.settingsPrivate.PrefType.LIST); |
| const index = this.getPref(key).value.indexOf(item); |
| if (index !== -1) { |
| this.splice(`prefs.${key}.value`, index, 1); |
| } |
| } |
| } |
| |
| return PrefsMixin; |
| }); |
| |
| export interface PrefsMixinInterface { |
| prefs: any; |
| getPref(prefPath: string): chrome.settingsPrivate.PrefObject; |
| setPrefValue(prefPath: string, value: any): void; |
| appendPrefListItem(key: string, item: any): void; |
| deletePrefListItem(key: string, item: any): void; |
| } |