3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
11 <link rel=
"import" href=
"../polymer/polymer.html">
16 * @demo demo/index.html
19 Polymer
.IronControlState
= {
24 * If true, the element currently has focus.
31 reflectToAttribute
: true
35 * If true, the user cannot interact with this element.
41 observer
: '_disabledChanged',
42 reflectToAttribute
: true
49 _boundFocusBlurHandler
: {
52 return this._focusBlurHandler
.bind(this);
59 '_changedControlState(focused, disabled)'
63 // TODO(sjmiles): ensure read-only property is valued so the compound
65 if (this.focused
=== undefined) {
66 this._setFocused(false);
68 this.addEventListener('focus', this._boundFocusBlurHandler
, true);
69 this.addEventListener('blur', this._boundFocusBlurHandler
, true);
72 _focusBlurHandler: function(event
) {
73 var target
= event
.path
? event
.path
[0] : event
.target
;
74 if (target
=== this) {
75 var focused
= event
.type
=== 'focus';
76 this._setFocused(focused
);
77 } else if (!this.shadowRoot
) {
78 event
.stopPropagation();
79 this.fire(event
.type
, {sourceEvent
: event
}, {
81 bubbles
: event
.bubbles
,
82 cancelable
: event
.cancelable
87 _disabledChanged: function(disabled
, old
) {
88 this.setAttribute('aria-disabled', disabled
? 'true' : 'false');
89 this.style
.pointerEvents
= disabled
? 'none' : '';
91 this._oldTabIndex
= this.tabIndex
;
94 } else if (this._oldTabIndex
!== undefined) {
95 this.tabIndex
= this._oldTabIndex
;
99 _changedControlState: function() {
100 // _controlStateChanged is abstract, follow-on behaviors may implement it
101 if (this._controlStateChanged
) {
102 this._controlStateChanged();