-
Notifications
You must be signed in to change notification settings - Fork 8
/
app-submenu.html
308 lines (257 loc) · 7.81 KB
/
app-submenu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-menu-behavior/iron-menu-behavior.html">
<link rel="import" href="../iron-behaviors/iron-control-state.html">
<link rel="import" href="../iron-collapse/iron-collapse.html">
<link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
<link rel="import" href="app-menu-shared-styles.html">
<dom-module id="app-submenu">
<template>
<style include="app-menu-shared-styles"></style>
<style>
:host {
display: block;
}
#collapse ::slotted(app-menu) {
padding: 0;
}
.selectable-content ::slotted(.app-menu-item.iron-selected) {
background-color: transparent;
}
:host(:focus) .selectable-content ::slotted(.app-menu-item) {
background-color: var(--app-menu-selected-bg-color, var(--primary-background-color));
}
.selectable-content ::slotted(.app-menu-item.iron-selected:hover) {
background-color: var(--app-menu-selected-bg-color, var(--primary-background-color));
}
:host([disabled]) .selectable-content ::slotted(.app-menu-item) {
color: var(--app-menu-disabled-color, var(--disabled-text-color));
pointer-events: none;
}
</style>
<div id="triggerHolder" class="selectable-content" on-tap="_onTap">
<slot id="trigger" name="submenu-trigger"></slot>
</div>
<iron-collapse id="collapse" opened="{{opened}}">
<slot id="content" name="submenu-content"></slot>
</iron-collapse>
</template>
<script>
(function() {
'use strict';
Polymer({
is: 'app-submenu',
properties: {
/**
* Fired when the submenu is opened.
*
* @event app-submenu-open
*/
/**
* Fired when the submenu is closed.
*
* @event app-submenu-close
*/
/**
* Set opened to true to show the collapse element and to false to hide it.
*
* @attribute opened
*/
opened: {
type: Boolean,
value: false,
notify: true,
observer: '_openedChanged'
},
/**
* Set noAutoClose to true to prevent submenu from auto closing.
*
* @attribute noAutoClose
*/
noAutoClose: {
type: Boolean,
value: false,
observer: '_closeOthers'
},
/**
* Set noAutoClose to true to prevent submenu from closing when its deactivated.
*
* @attribute noAutoClose
*/
noAutoCloseOnDeactivate: {
type: Boolean,
value: false
}
},
behaviors: [
Polymer.IronControlState,
Polymer.IronA11yKeysBehavior
],
listeners: {
'focus': '_onFocus',
'iron-select': '_onIronSelect',
'iron-deselect': '_onIronDeselect'
},
keyBindings: {
'enter:keydown': '_asyncClick',
'space:keydown': '_spaceKeyDownHandler',
'space:keyup': '_spaceKeyUpHandler'
},
get __parent() {
return Polymer.dom(this).parentNode;
},
get __childNodes() {
return Polymer.dom(this.__parent).childNodes;
},
get __trigger() {
return Polymer.dom(this.$.trigger).getDistributedNodes()[0];
},
get __content() {
return Polymer.dom(this.$.content).getDistributedNodes()[0];
},
attached: function() {
this.listen(this.__parent, 'iron-activate', '_onParentIronActivate');
},
detached: function() {
this.unlisten(this.__parent, 'iron-activate', '_onParentIronActivate');
},
/**
* Expand the submenu content.
*/
open: function() {
if (!this.disabled) {
this.opened = true;
}
},
/**
* Collapse the submenu content.
*/
close: function() {
this.opened = false;
},
/**
* Toggle the submenu.
*/
toggle: function() {
if (this.opened) {
this.close();
} else {
this.open();
}
},
_spaceKeyDownHandler: function(event) {
var keyboardEvent = event.detail.keyboardEvent;
var target = Polymer.dom(keyboardEvent).localTarget;
// Ignore the event if this is coming from a focused light child, since that
// element will deal with it.
if (this.isLightDescendant( /** @type {Node} */ (target)))
return;
keyboardEvent.preventDefault();
keyboardEvent.stopImmediatePropagation();
this._submenuBtnPressed = true;
},
_spaceKeyUpHandler: function(event) {
var keyboardEvent = event.detail.keyboardEvent;
var target = Polymer.dom(keyboardEvent).localTarget;
// Ignore the event if this is coming from a focused light child, since that
// element will deal with it.
if (this.isLightDescendant( /** @type {Node} */ (target)))
return;
if (this._submenuBtnPressed) {
this._asyncClick();
}
this._submenuBtnPressed = false;
},
_asyncClick: function() {
this.async(function() {
this.$.trigger.click();
}, 1);
},
_closeOthers: function() {
if (!this.noAutoClose) {
this.__childNodes.forEach(function(item) {
if (item !== this && item.nodeName === 'APP-SUBMENU' && item.opened) {
item.close();
}
}.bind(this));
}
},
/**
* A handler that is called when the trigger is tapped.
*/
_onTap: function(e) {
e.stopPropagation();
if (!this.disabled) {
this.toggle();
this._closeOthers();
}
},
/**
* Toggles the submenu content when the trigger is tapped.
*/
_openedChanged: function(opened, oldOpened) {
if (opened) {
this.fire('app-submenu-open');
} else if (oldOpened != null) {
this.fire('app-submenu-close');
}
},
/**
* A handler that is called when `iron-activate` is fired.
*
* @param {CustomEvent} event An `iron-activate` event.
*/
_onParentIronActivate: function(event) {
var parent = this.__parent;
var submenuList = Polymer.dom(event).localTarget;
var localTarget = Polymer.dom(submenuList).parentNode;
if (localTarget === parent || localTarget !== this) {
if (!this.noAutoCloseOnDeactivate && !this.noAutoClose) {
this.close();
}
this.__content.selectIndex(-1);
}
},
/**
* If the dropdown is open when disabled becomes true, close the
* dropdown.
*
* @param {boolean} disabled True if disabled, otherwise false.
*/
_disabledChanged: function(disabled) {
Polymer.IronControlState._disabledChanged.apply(this, arguments);
if (disabled && this.opened) {
this.close();
}
},
/**
* Handler that is called when the menu item is selected
*
*/
_onIronSelect: function() {
if (this.__parent.nodeName === 'APP-MENU') {
this.__parent.selectIndex(-1);
}
if (!this.opened) {
this.open();
}
this.__trigger && this.__trigger.classList.add('iron-selected');
},
/**
* Handler that is called when menu item is deselected
*
*/
_onIronDeselect: function() {
this.__trigger && this.__trigger.classList.remove('iron-selected');
},
/**
* Handler that is called when the menu receives focus.
*
* @param {FocusEvent} event A focus event.
*/
_onFocus: function(event) {
this.__trigger && this.__trigger.focus();
}
});
}());
</script>
</dom-module>