OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @fileoverview | 6 * @fileoverview |
7 * `cr-settings-checkbox` is a checkbox that controls a supplied preference. | 7 * `cr-settings-checkbox` is a checkbox that controls a supplied preference. |
8 * | 8 * |
9 * Example: | 9 * Example: |
10 * <cr-settings-checkbox pref="{{prefs.settings.enableFoo}}" | 10 * <cr-settings-checkbox pref="{{prefs.settings.enableFoo}}" |
11 * label="Enable foo setting." subLabel="(bar also)"> | 11 * label="Enable foo setting." subLabel="(bar also)"> |
12 * </cr-settings-checkbox> | 12 * </cr-settings-checkbox> |
13 * | 13 * |
14 * @element cr-settings-checkbox | 14 * @element cr-settings-checkbox |
15 */ | 15 */ |
16 Polymer({ | 16 Polymer({ |
17 is: 'cr-settings-checkbox', | 17 is: 'cr-settings-checkbox', |
18 | 18 |
19 properties: { | 19 properties: { |
20 /** | 20 /** |
21 * The boolean preference object to control. | 21 * The boolean preference object to control. |
22 * @type {?chrome.settingsPrivate.PrefObject} | 22 * @type {?chrome.settingsPrivate.PrefObject} |
23 */ | 23 */ |
24 pref: { | 24 pref: { |
25 type: Object, | 25 type: Object, |
26 notify: true, | 26 notify: true |
| 27 }, |
| 28 |
| 29 inverted: { |
| 30 type: Boolean, |
| 31 value: false |
| 32 }, |
| 33 |
| 34 checked: { |
| 35 type: Boolean, |
| 36 value: false, |
| 37 observer: 'checkedChanged_' |
27 }, | 38 }, |
28 | 39 |
29 label: { | 40 label: { |
30 type: String, | 41 type: String, |
31 value: '', | 42 value: '', |
32 }, | 43 }, |
33 | 44 |
34 subLabel: { | 45 subLabel: { |
35 type: String, | 46 type: String, |
36 value: '', | 47 value: '', |
37 }, | 48 }, |
38 }, | 49 }, |
39 | 50 |
| 51 observers: [ |
| 52 'prefValueChanged_(pref.value)' |
| 53 ], |
| 54 |
40 /** @override */ | 55 /** @override */ |
41 ready: function() { | 56 ready: function() { |
42 this.$.events.forward(this.$.checkbox, ['change']); | 57 this.$.events.forward(this.$.checkbox, ['change']); |
43 }, | 58 }, |
| 59 |
| 60 /** @private */ |
| 61 prefValueChanged_: function(prefValue) { |
| 62 // prefValue is initially undefined when Polymer initializes pref. |
| 63 if (prefValue !== undefined) { |
| 64 this.checked = this.getNewValue_(prefValue); |
| 65 } |
| 66 }, |
| 67 |
| 68 /** @private */ |
| 69 checkedChanged_: function() { |
| 70 if (this.pref) { |
| 71 this.pref.value = this.getNewValue_(this.checked); |
| 72 } |
| 73 }, |
| 74 |
| 75 /** @private */ |
| 76 getNewValue_: function(val) { |
| 77 return this.inverted ? !val : val; |
| 78 } |
44 }); | 79 }); |
OLD | NEW |