forked from ibm-js/delite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.js
426 lines (377 loc) · 15.6 KB
/
popup.js
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/**
* Show drop downs (ex: the select list of a ComboBox) or popups (ex: right-click context menus).
* @module delite/popup
*/
define([
"dcl/advise",
"dcl/dcl",
"requirejs-dplugins/has", // has("config-bgIframe")
"delite/keys",
"./place",
"./BackgroundIframe",
"./Viewport",
"./theme!" // d-popup class
], function (advise, dcl, has, keys, place, BackgroundIframe, Viewport) {
function isDocLtr(doc) {
return !(/^rtl$/i).test(doc.body.dir || doc.documentElement.dir);
}
/**
* Arguments to delite/popup#open() method.
* @typedef {Object} module:delite/popup.OpenArgs
* @property {module:delite/Widget} popup - The Widget to display.
* @property {module:delite/Widget} parent - The button etc. that is displaying this popup.
* @property {Element|Rectangle} around - DOM node (typically a button);
* place popup relative to this node. (Specify this *or* `x` and `y` properties.)
* @property {number} x - Absolute horizontal position (in pixels) to place node at.
* (Specify this *or* `around` parameter.)
* @property {number} y - Absolute vertical position (in pixels) to place node at.
* (Specify this *or* `around` parameter.)
* @property {string[]} orient - When the `around` parameter is specified, `orient` should be a
* list of positions to try, ex. `[ "below", "above" ]`
* delite/popup.open() tries to position the popup according to each specified position, in order,
* until the popup appears fully within the viewport. The default value is `["below", "above"]`.
* When an (x,y) position is specified rather than an around node, orient is either
* "R" or "L". R (for right) means that it tries to put the popup to the right of the mouse,
* specifically positioning the popup's top-right corner at the mouse position, and if that doesn't
* fit in the viewport, then it tries, in order, the bottom-right corner, the top left corner,
* and the top-right corner.
* @property {Function} onCancel - Callback when user has canceled the popup by:
* 1. hitting ESC or
* 2. by using the popup widget's proprietary cancel mechanism (like a cancel button in a dialog);
* i.e. whenever popupWidget.onCancel() is called, args.onCancel is called
* @property {Function} onClose - Callback whenever this popup is closed.
* @property {Position} padding - Adding a buffer around the opening position.
* This is only used when `around` is not set.
* @property {number} maxHeight
* The max height for the popup. Any popup taller than this will have scrollbars.
* Set to Infinity for no max height. Default is to limit height to available space in viewport,
* above or below the aroundNode or specified x/y position.
*/
/**
* Function to destroy wrapper when popup widget is destroyed.
*/
function destroyWrapper() {
if (this._popupWrapper) {
this._popupWrapper.parentNode.removeChild(this._popupWrapper);
delete this._popupWrapper;
}
}
// TODO: convert from singleton to just a hash of functions; easier to doc that way.
var PopupManager = dcl(null, /** @lends module:delite/popup */ {
/**
* Stack of currently popped up widgets.
* (someone opened _stack[0], and then it opened _stack[1], etc.)
* @member {module:delite/Widget[]} PopupManager._stack
*/
_stack: [],
/**
* Z-index of the first popup. (If first popup opens other popups they get a higher z-index.)
* @member {number} PopupManager._beginZIndex
*/
_beginZIndex: 1000,
_idGen: 1,
/**
* If screen has been scrolled, reposition all the popups in the stack. Then set timer to check again later.
* @private
*/
_repositionAll: function () {
if (this._firstAroundNode) { // guard for when clearTimeout() on IE doesn't work
var oldPos = this._firstAroundPosition,
newPos = place.position(this._firstAroundNode),
dx = newPos.x - oldPos.x,
dy = newPos.y - oldPos.y;
if (dx || dy) {
this._firstAroundPosition = newPos;
for (var i = 0; i < this._stack.length; i++) {
var style = this._stack[i].wrapper.style;
style.top = (parseFloat(style.top) + dy) + "px";
if (style.right === "auto") {
style.left = (parseFloat(style.left) + dx) + "px";
} else {
style.right = (parseFloat(style.right) - dx) + "px";
}
}
}
this._aroundMoveListener = setTimeout(this._repositionAll.bind(this), dx || dy ? 10 : 50);
}
},
/**
* Initialization for widgets that will be used as popups.
* Puts widget inside a wrapper DIV (if not already in one), and returns pointer to that wrapper DIV.
* @param {module:delite/Widget} widget
* @returns {HTMLElement} The wrapper DIV.
* @private
*/
_createWrapper: function (widget) {
var wrapper = widget._popupWrapper;
if (!wrapper) {
// Create wrapper <div> for when this widget [in the future] will be used as a popup.
// This is done early because of IE bugs where creating/moving DOM nodes causes focus
// to go wonky, see tests/robot/Toolbar.html to reproduce
wrapper = widget.ownerDocument.createElement("div");
wrapper.className = "d-popup";
wrapper.style.display = "none";
wrapper.setAttribute("role", "region");
wrapper.setAttribute("aria-label", widget["aria-label"] || widget.label || widget.name || widget.id);
widget.ownerDocument.body.appendChild(wrapper);
wrapper.appendChild(widget);
var s = widget.style;
s.display = "";
s.visibility = "";
s.position = "";
s.top = "0px";
widget._popupWrapper = wrapper;
advise.after(widget, "destroy", destroyWrapper);
// Workaround iOS problem where clicking a Menu can focus an <input> (or click a button) behind it.
// Need to be careful though that you can still focus <input>'s and click <button>'s in a TooltipDialog.
// Also, be careful not to break (native) scrolling of dropdown like ComboBox's options list.
if ("ontouchend" in document) {
wrapper.addEventListener("touchend", function (evt) {
if (!/^(input|button|textarea)$/i.test(evt.target.tagName)) {
evt.preventDefault();
}
});
}
}
return wrapper;
},
/**
* Moves the popup widget off-screen. Do not use this method to hide popups when not in use, because
* that will create an accessibility issue: the offscreen popup will still be in the tabbing order.
* @param {module:delite/Widget} widget
* @returns {HTMLElement}
*/
moveOffScreen: function (widget) {
// Create wrapper if not already there, then besides setting visibility:hidden,
// move it out of the viewport, see #5776, #10111, #13604
var wrapper = this._createWrapper(widget),
style = wrapper.style,
ltr = isDocLtr(widget.ownerDocument);
dcl.mix(style, {
visibility: "hidden",
top: "-9999px",
display: ""
});
style[ltr ? "left" : "right"] = "-9999px";
style[ltr ? "right" : "left"] = "auto";
return wrapper;
},
/**
* Hide this popup widget (until it is ready to be shown).
* Initialization for widgets that will be used as popups.
*
* Also puts widget inside a wrapper DIV (if not already in one).
*
* If popup widget needs to layout it should do so when it is made visible,
* and popup._onShow() is called.
* @param {module:delite/Widget} widget
*/
hide: function (widget) {
// Create wrapper if not already there
var wrapper = this._createWrapper(widget);
dcl.mix(wrapper.style, {
display: "none",
height: "auto", // Open may have limited the height to fit in the viewport
overflow: "visible",
border: "" // Open() may have moved border from popup to wrapper.
});
// Open() may have moved border from popup to wrapper. Move it back.
if ("_originalStyle" in widget) {
widget.style.cssText = widget._originalStyle;
}
},
/**
* Compute the closest ancestor popup that's *not* a child of another popup.
* Ex: For a TooltipDialog with a button that spawns a tree of menus, find the popup of the button.
* @returns {module:delite/Widget}
*/
getTopPopup: function () {
var stack = this._stack;
for (var pi = stack.length - 1; pi > 0 && stack[pi].parent === stack[pi - 1].widget; pi--) {
/* do nothing, just trying to get right value for pi */
}
return stack[pi];
},
/**
* Popup the widget at the specified position.
*
* Note that whatever widget called delite/popup.open() should also listen to its
* own _onBlur callback (fired from delite/focus.js) to know that focus has moved somewhere
* else and thus the popup should be closed.
*
* @param {module:delite/popup.OpenArgs} args
* @returns {*}
* @example
* // Open at the mouse position
* popup.open({popup: menuWidget, x: evt.pageX, y: evt.pageY});
* @example
* // Open the widget as a dropdown
* popup.open({parent: this, popup: menuWidget, around: this, onClose: function(){...}});
*/
open: function (args) {
/* jshint maxcomplexity:26 */
var stack = this._stack,
widget = args.popup,
orient = args.orient || ["below", "below-alt", "above", "above-alt"],
ltr = args.parent ? args.parent.isLeftToRight() : isDocLtr(widget.ownerDocument),
around = args.around,
id = args.around && args.around.id ? args.around.id + "_dropdown" : "popup_" + this._idGen++;
// If we are opening a new popup that isn't a child of a currently opened popup, then
// close currently opened popup(s). This should happen automatically when the old popups
// gets the _onBlur() event, except that the _onBlur() event isn't reliable on IE, see [22198].
while (stack.length && (!args.parent || !args.parent.contains(stack[stack.length - 1].widget))) {
this.close(stack[stack.length - 1].widget);
}
// Get pointer to popup wrapper, and create wrapper if it doesn't exist. Remove display:none (but keep
// off screen) so we can do sizing calculations.
var wrapper = this.moveOffScreen(widget);
if (widget.startup && !widget._started) {
widget.startup(); // this has to be done after being added to the DOM
}
// Limit height to space available in viewport either above or below aroundNode (whichever side has more
// room), adding scrollbar if necessary. Can't add scrollbar to widget because it may be a <table> (ex:
// deliteful/Menu), so add to wrapper, and then move popup's border to wrapper so scroll bar inside border.
var maxHeight;
if ("maxHeight" in args && args.maxHeight !== -1) {
maxHeight = args.maxHeight || Infinity;
} else {
var viewport = Viewport.getEffectiveBox(widget.ownerDocument),
aroundPos = around ? around.getBoundingClientRect() : {
top: args.y - (args.padding || 0),
height: (args.padding || 0) * 2
};
maxHeight = Math.floor(Math.max(aroundPos.top, viewport.h - (aroundPos.top + aroundPos.height)));
}
if (widget.offsetHeight > maxHeight) {
// Get style of popup's border. Unfortunately getComputedStyle(node).border doesn't work on FF or IE,
// and getComputedStyle(node).borderColor etc. doesn't work on FF, so need to use fully qualified names.
var cs = getComputedStyle(widget),
borderStyle = cs.borderLeftWidth + " " + cs.borderLeftStyle + " " + cs.borderLeftColor;
dcl.mix(wrapper.style, {
overflowY: "scroll",
height: maxHeight + "px",
border: borderStyle // so scrollbar is inside border
});
widget._originalStyle = widget.style.cssText;
widget.style.border = "none";
}
dcl.mix(wrapper, {
id: id,
className: "d-popup " + (widget.baseClass || widget["class"] || "").split(" ")[0] + "Popup"
});
wrapper.style.zIndex = this._beginZIndex + stack.length;
wrapper.setAttribute("d-popup-parent", args.parent ? args.parent.id : "");
if (stack.length === 0 && around) {
// First element on stack. Save position of aroundNode and setup listener for changes to that position.
this._firstAroundNode = around;
this._firstAroundPosition = place.position(around);
this._aroundMoveListener = setTimeout(this._repositionAll.bind(this), 50);
}
if (has("config-bgIframe") && !widget.bgIframe) {
// setting widget.bgIframe triggers cleanup in Widget.destroyRendering()
widget.bgIframe = new BackgroundIframe(wrapper);
}
// position the wrapper node and make it visible
var layoutFunc = widget.orient ? widget.orient.bind(widget) : null,
best = around ?
place.around(wrapper, around, orient, ltr, layoutFunc) :
place.at(wrapper, args, orient === "R" ? ["TR", "BR", "TL", "BL"] : ["TL", "BL", "TR", "BR"],
args.padding, layoutFunc);
wrapper.style.visibility = "visible";
widget.style.visibility = "visible"; // counteract effects from HasDropDown
var handlers = [];
// provide default escape and tab key handling
// (this will work for any widget, not just menu)
function onKeyDown(evt) {
if (evt.keyCode === keys.ESCAPE && args.onCancel) {
evt.stopPropagation();
evt.preventDefault();
args.onCancel();
} else if (evt.keyCode === keys.TAB) {
evt.stopPropagation();
evt.preventDefault();
var topPopup = this.getTopPopup();
if (topPopup && topPopup.onCancel) {
topPopup.onCancel();
}
}
}
wrapper.addEventListener("keydown", onKeyDown);
handlers.push({
remove: function () {
wrapper.removeEventListener("keydown", onKeyDown);
}
});
// watch for cancel/execute events on the popup and notify the caller
// (for a menu, "execute" means clicking an item)
if (widget.onCancel && args.onCancel) {
handlers.push(widget.on("cancel", args.onCancel));
}
handlers.push(widget.on(widget.onExecute ? "execute" : "change", function () {
var topPopup = this.getTopPopup();
if (topPopup && topPopup.onExecute) {
topPopup.onExecute();
}
}));
stack.push({
widget: widget,
wrapper: wrapper,
parent: args.parent,
onExecute: args.onExecute,
onCancel: args.onCancel,
onClose: args.onClose,
handlers: handlers
});
if (widget.onOpen) {
// TODO: in 2.0 standardize onShow() (used by StackContainer) and onOpen() (used here)
widget.onOpen(best);
}
return best;
},
/**
* Close specified popup and any popups that it parented. If no popup is specified, closes all popups.
* @param {module:delite/Widget} [popup]
*/
close: function (popup) {
var stack = this._stack;
// Basically work backwards from the top of the stack closing popups
// until we hit the specified popup, but IIRC there was some issue where closing
// a popup would cause others to close too. Thus if we are trying to close B in [A,B,C]
// closing C might close B indirectly and then the while() condition will run where stack===[A]...
// so the while condition is constructed defensively.
while ((popup && stack.some(function (elem) {
return elem.widget === popup;
})) ||
(!popup && stack.length)) {
var top = stack.pop(),
widget = top.widget,
onClose = top.onClose;
if (widget.bgIframe) {
// push the iframe back onto the stack.
widget.bgIframe.destroy();
delete widget.bgIframe;
}
if (widget.onClose) {
// TODO: in 2.0 standardize onHide() (used by StackContainer) and onClose() (used here).
// Actually, StackContainer also calls onClose(), but to mean that the pane is being deleted
// (i.e. that the TabContainer's tab's [x] icon was clicked)
widget.onClose();
}
var h;
while ((h = top.handlers.pop())) {
h.remove();
}
// Hide the widget and its wrapper unless it has already been destroyed in above onClose() etc.
this.hide(widget);
if (onClose) {
onClose();
}
}
if (stack.length === 0 && this._aroundMoveListener) {
clearTimeout(this._aroundMoveListener);
this._firstAroundNode = this._firstAroundPosition = this._aroundMoveListener = null;
}
}
});
return new PopupManager();
});