OLD | NEW |
(Empty) | |
| 1 |
| 2 Polymer({ |
| 3 is: 'paper-checkbox', |
| 4 |
| 5 // The custom properties shim is currently an opt-in feature. |
| 6 enableCustomStyleProperties: true, |
| 7 |
| 8 hostAttributes: { |
| 9 role: 'checkbox', |
| 10 'aria-checked': false, |
| 11 tabindex: 0 |
| 12 }, |
| 13 |
| 14 properties: { |
| 15 /** |
| 16 * Fired when the checked state changes due to user interaction. |
| 17 * |
| 18 * @event change |
| 19 */ |
| 20 |
| 21 /** |
| 22 * Fired when the checked state changes. |
| 23 * |
| 24 * @event iron-change |
| 25 */ |
| 26 |
| 27 /** |
| 28 * Gets or sets the state, `true` is checked and `false` is unchecked. |
| 29 * |
| 30 * @attribute checked |
| 31 * @type boolean |
| 32 * @default false |
| 33 */ |
| 34 checked: { |
| 35 type: Boolean, |
| 36 value: false, |
| 37 reflectToAttribute: true, |
| 38 observer: '_checkedChanged' |
| 39 }, |
| 40 |
| 41 /** |
| 42 * If true, the user cannot interact with this element. |
| 43 * |
| 44 * @attribute disabled |
| 45 * @type boolean |
| 46 * @default false |
| 47 */ |
| 48 disabled: { |
| 49 type: Boolean |
| 50 } |
| 51 }, |
| 52 |
| 53 listeners: { |
| 54 keydown: '_onKeyDown', |
| 55 mousedown: '_onMouseDown' |
| 56 }, |
| 57 |
| 58 ready: function() { |
| 59 if (this.$.checkboxLabel.textContent == '') { |
| 60 this.$.checkboxLabel.hidden = true; |
| 61 } else { |
| 62 this.setAttribute('aria-label', this.$.checkboxLabel.textContent); |
| 63 } |
| 64 }, |
| 65 |
| 66 _computeCheckboxClass: function(checked) { |
| 67 if (checked) { |
| 68 return 'checked'; |
| 69 } |
| 70 }, |
| 71 |
| 72 _computeCheckmarkClass: function(checked) { |
| 73 if (!checked) { |
| 74 return 'hidden'; |
| 75 } |
| 76 }, |
| 77 |
| 78 _onKeyDown: function(e) { |
| 79 // Enter key. |
| 80 if (e.keyCode === 13) { |
| 81 this._onMouseDown(); |
| 82 e.preventDefault(); |
| 83 } |
| 84 }, |
| 85 |
| 86 _onMouseDown: function() { |
| 87 if (this.disabled) { |
| 88 return; |
| 89 } |
| 90 |
| 91 var old = this.checked; |
| 92 this.checked = !this.checked; |
| 93 |
| 94 if (this.checked !== old) { |
| 95 this.fire('iron-change'); |
| 96 } |
| 97 }, |
| 98 |
| 99 _checkedChanged: function() { |
| 100 this.setAttribute('aria-checked', this.checked ? 'true' : 'false'); |
| 101 this.fire('iron-change'); |
| 102 } |
| 103 }) |
OLD | NEW |