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">
15 * `IronResizableBehavior` is a behavior that can be used in Polymer elements to
16 * coordinate the flow of resize events between "resizers" (elements that control the
17 * size or hidden state of their children) and "resizables" (elements that need to be
18 * notified when they are resized or un-hidden by their parents in order to take
19 * action on their new measurements).
20 * Elements that perform measurement should add the `IronResizableBehavior` behavior to
21 * their element definition and listen for the `iron-resize` event on themselves.
22 * This event will be fired when they become showing after having been hidden,
23 * when they are resized explicitly by another resizable, or when the window has been
25 * Note, the `iron-resize` event is non-bubbling.
27 * @polymerBehavior Polymer.IronResizableBehavior
28 * @demo demo/index.html
30 Polymer
.IronResizableBehavior
= {
33 * The closest ancestor element that implements `IronResizableBehavior`.
37 observer
: '_parentResizableChanged'
41 * True if this element is currently notifying its descedant elements of
44 _notifyingDescendant
: {
51 'iron-request-resize-notifications': '_onIronRequestResizeNotifications'
55 // We don't really need property effects on these, and also we want them
56 // to be created before the `_parentResizable` observer fires:
57 this._interestedResizables
= [];
58 this._boundNotifyResize
= this.notifyResize
.bind(this);
61 attached: function() {
62 this.fire('iron-request-resize-notifications', null, {
68 if (!this._parentResizable
) {
69 window
.addEventListener('resize', this._boundNotifyResize
);
74 detached: function() {
75 if (this._parentResizable
) {
76 this._parentResizable
.stopResizeNotificationsFor(this);
78 window
.removeEventListener('resize', this._boundNotifyResize
);
81 this._parentResizable
= null;
85 * Can be called to manually notify a resizable and its descendant
86 * resizables of a resize change.
88 notifyResize: function() {
89 if (!this.isAttached
) {
93 this._interestedResizables
.forEach(function(resizable
) {
94 if (this.resizerShouldNotify(resizable
)) {
95 this._notifyDescendant(resizable
);
103 * Used to assign the closest resizable ancestor to this resizable
104 * if the ancestor detects a request for notifications.
106 assignParentResizable: function(parentResizable
) {
107 this._parentResizable
= parentResizable
;
111 * Used to remove a resizable descendant from the list of descendants
112 * that should be notified of a resize change.
114 stopResizeNotificationsFor: function(target
) {
115 var index
= this._interestedResizables
.indexOf(target
);
118 this._interestedResizables
.splice(index
, 1);
119 this.unlisten(target
, 'iron-resize', '_onDescendantIronResize');
124 * This method can be overridden to filter nested elements that should or
125 * should not be notified by the current element. Return true if an element
126 * should be notified, or false if it should not be notified.
128 * @param {HTMLElement} element A candidate descendant element that
129 * implements `IronResizableBehavior`.
130 * @return {boolean} True if the `element` should be notified of resize.
132 resizerShouldNotify: function(element
) { return true; },
134 _onDescendantIronResize: function(event
) {
135 if (this._notifyingDescendant
) {
136 event
.stopPropagation();
140 // NOTE(cdata): In ShadowDOM, event retargetting makes echoing of the
141 // otherwise non-bubbling event "just work." We do it manually here for
142 // the case where Polymer is not using shadow roots for whatever reason:
143 if (!Polymer
.Settings
.useShadow
) {
148 _fireResize: function() {
149 this.fire('iron-resize', null, {
155 _onIronRequestResizeNotifications: function(event
) {
156 var target
= event
.path
? event
.path
[0] : event
.target
;
158 if (target
=== this) {
162 if (this._interestedResizables
.indexOf(target
) === -1) {
163 this._interestedResizables
.push(target
);
164 this.listen(target
, 'iron-resize', '_onDescendantIronResize');
167 target
.assignParentResizable(this);
168 this._notifyDescendant(target
);
170 event
.stopPropagation();
173 _parentResizableChanged: function(parentResizable
) {
174 if (parentResizable
) {
175 window
.removeEventListener('resize', this._boundNotifyResize
);
179 _notifyDescendant: function(descendant
) {
180 // NOTE(cdata): In IE10, attached is fired on children first, so it's
181 // important not to notify them if the parent is not attached yet (or
182 // else they will get redundantly notified when the parent attaches).
183 if (!this.isAttached
) {
187 this._notifyingDescendant
= true;
188 descendant
.notifyResize();
189 this._notifyingDescendant
= false;