@spscommerce/positioning 5.18.1 → 5.18.3-ie2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/out-tsc/index.d.ts +4 -0
- package/dist/out-tsc/index.js +5 -0
- package/dist/out-tsc/index.js.map +1 -0
- package/dist/out-tsc/position-anchor.enum.d.ts +7 -0
- package/dist/out-tsc/position-anchor.enum.js +9 -0
- package/dist/out-tsc/position-anchor.enum.js.map +1 -0
- package/dist/out-tsc/position.enum.d.ts +18 -0
- package/dist/out-tsc/position.enum.js +20 -0
- package/dist/out-tsc/position.enum.js.map +1 -0
- package/dist/out-tsc/positioning-options.interface.d.ts +37 -0
- package/dist/out-tsc/positioning-options.interface.js +8 -0
- package/dist/out-tsc/positioning-options.interface.js.map +1 -0
- package/dist/out-tsc/positioning.service.d.ts +55 -0
- package/dist/out-tsc/positioning.service.js +466 -0
- package/dist/out-tsc/positioning.service.js.map +1 -0
- package/lib/index.cjs.js +1857 -1
- package/lib/index.es.js +1762 -973
- package/package.json +7 -7
- package/vite.config.js +1 -1
package/lib/index.es.js
CHANGED
|
@@ -1,1063 +1,1852 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
-
var __spreadValues = (a, b) => {
|
|
9
|
-
for (var prop in b || (b = {}))
|
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
|
12
|
-
if (__getOwnPropSymbols)
|
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
-
if (__propIsEnum.call(b, prop))
|
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
|
16
|
-
}
|
|
17
|
-
return a;
|
|
18
|
-
};
|
|
19
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
-
import { onNextTick, lockedToAnimationFrames } from "@spscommerce/utils";
|
|
1
|
+
import { lockedToAnimationFrames, onNextTick } from '@spscommerce/utils';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* These are the possibilities for the `position` option of
|
|
5
|
+
* `PositioningOptions` when using `relativeTo`.
|
|
6
|
+
*/
|
|
21
7
|
var Position;
|
|
22
|
-
(function(
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
8
|
+
(function (Position) {
|
|
9
|
+
Position["TOP_LEFT"] = "top left";
|
|
10
|
+
Position["TOP_MIDDLE"] = "top middle";
|
|
11
|
+
Position["TOP_RIGHT"] = "top right";
|
|
12
|
+
Position["RIGHT_TOP"] = "right top";
|
|
13
|
+
Position["RIGHT_MIDDLE"] = "right middle";
|
|
14
|
+
Position["RIGHT_BOTTOM"] = "right bottom";
|
|
15
|
+
Position["BOTTOM_RIGHT"] = "bottom right";
|
|
16
|
+
Position["BOTTOM_MIDDLE"] = "bottom middle";
|
|
17
|
+
Position["BOTTOM_LEFT"] = "bottom left";
|
|
18
|
+
Position["LEFT_BOTTOM"] = "left bottom";
|
|
19
|
+
Position["LEFT_MIDDLE"] = "left middle";
|
|
20
|
+
Position["LEFT_TOP"] = "left top";
|
|
35
21
|
})(Position || (Position = {}));
|
|
22
|
+
|
|
23
|
+
/** Indicates which point on a positioned element it should be positioned by. */
|
|
36
24
|
var PositionAnchor;
|
|
37
|
-
(function(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
25
|
+
(function (PositionAnchor) {
|
|
26
|
+
PositionAnchor["TOP_LEFT"] = "top left";
|
|
27
|
+
PositionAnchor["TOP_RIGHT"] = "top right";
|
|
28
|
+
PositionAnchor["BOTTOM_LEFT"] = "bottom left";
|
|
29
|
+
PositionAnchor["BOTTOM_RIGHT"] = "bottom right";
|
|
42
30
|
})(PositionAnchor || (PositionAnchor = {}));
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
31
|
+
|
|
32
|
+
var DEFAULT_POSITIONING_OPTIONS = {
|
|
33
|
+
anchor: PositionAnchor.TOP_LEFT,
|
|
34
|
+
offsets: [],
|
|
35
|
+
position: Position.TOP_LEFT,
|
|
47
36
|
};
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Copyright 2016 Google Inc. All Rights Reserved.
|
|
40
|
+
*
|
|
41
|
+
* Licensed under the W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE.
|
|
42
|
+
*
|
|
43
|
+
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
|
|
44
|
+
*
|
|
45
|
+
*/
|
|
48
46
|
(function() {
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
|
|
48
|
+
// Exit early if we're not running in a browser.
|
|
49
|
+
if (typeof window !== 'object') {
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Exit early if all IntersectionObserver and IntersectionObserverEntry
|
|
54
|
+
// features are natively supported.
|
|
55
|
+
if ('IntersectionObserver' in window &&
|
|
56
|
+
'IntersectionObserverEntry' in window &&
|
|
57
|
+
'intersectionRatio' in window.IntersectionObserverEntry.prototype) {
|
|
58
|
+
|
|
59
|
+
// Minimal polyfill for Edge 15's lack of `isIntersecting`
|
|
60
|
+
// See: https://github.com/w3c/IntersectionObserver/issues/211
|
|
61
|
+
if (!('isIntersecting' in window.IntersectionObserverEntry.prototype)) {
|
|
62
|
+
Object.defineProperty(window.IntersectionObserverEntry.prototype,
|
|
63
|
+
'isIntersecting', {
|
|
64
|
+
get: function () {
|
|
65
|
+
return this.intersectionRatio > 0;
|
|
66
|
+
}
|
|
67
|
+
});
|
|
51
68
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Returns the embedding frame element, if any.
|
|
74
|
+
* @param {!Document} doc
|
|
75
|
+
* @return {!Element}
|
|
76
|
+
*/
|
|
77
|
+
function getFrameElement(doc) {
|
|
78
|
+
try {
|
|
79
|
+
return doc.defaultView && doc.defaultView.frameElement || null;
|
|
80
|
+
} catch (e) {
|
|
81
|
+
// Ignore the error.
|
|
82
|
+
return null;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* A local reference to the root document.
|
|
88
|
+
*/
|
|
89
|
+
var document = (function(startDoc) {
|
|
90
|
+
var doc = startDoc;
|
|
91
|
+
var frame = getFrameElement(doc);
|
|
92
|
+
while (frame) {
|
|
93
|
+
doc = frame.ownerDocument;
|
|
94
|
+
frame = getFrameElement(doc);
|
|
95
|
+
}
|
|
96
|
+
return doc;
|
|
97
|
+
})(window.document);
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* An IntersectionObserver registry. This registry exists to hold a strong
|
|
101
|
+
* reference to IntersectionObserver instances currently observing a target
|
|
102
|
+
* element. Without this registry, instances without another reference may be
|
|
103
|
+
* garbage collected.
|
|
104
|
+
*/
|
|
105
|
+
var registry = [];
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* The signal updater for cross-origin intersection. When not null, it means
|
|
109
|
+
* that the polyfill is configured to work in a cross-origin mode.
|
|
110
|
+
* @type {function(DOMRect|ClientRect, DOMRect|ClientRect)}
|
|
111
|
+
*/
|
|
112
|
+
var crossOriginUpdater = null;
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* The current cross-origin intersection. Only used in the cross-origin mode.
|
|
116
|
+
* @type {DOMRect|ClientRect}
|
|
117
|
+
*/
|
|
118
|
+
var crossOriginRect = null;
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Creates the global IntersectionObserverEntry constructor.
|
|
123
|
+
* https://w3c.github.io/IntersectionObserver/#intersection-observer-entry
|
|
124
|
+
* @param {Object} entry A dictionary of instance properties.
|
|
125
|
+
* @constructor
|
|
126
|
+
*/
|
|
127
|
+
function IntersectionObserverEntry(entry) {
|
|
128
|
+
this.time = entry.time;
|
|
129
|
+
this.target = entry.target;
|
|
130
|
+
this.rootBounds = ensureDOMRect(entry.rootBounds);
|
|
131
|
+
this.boundingClientRect = ensureDOMRect(entry.boundingClientRect);
|
|
132
|
+
this.intersectionRect = ensureDOMRect(entry.intersectionRect || getEmptyRect());
|
|
133
|
+
this.isIntersecting = !!entry.intersectionRect;
|
|
134
|
+
|
|
135
|
+
// Calculates the intersection ratio.
|
|
136
|
+
var targetRect = this.boundingClientRect;
|
|
137
|
+
var targetArea = targetRect.width * targetRect.height;
|
|
138
|
+
var intersectionRect = this.intersectionRect;
|
|
139
|
+
var intersectionArea = intersectionRect.width * intersectionRect.height;
|
|
140
|
+
|
|
141
|
+
// Sets intersection ratio.
|
|
142
|
+
if (targetArea) {
|
|
143
|
+
// Round the intersection ratio to avoid floating point math issues:
|
|
144
|
+
// https://github.com/w3c/IntersectionObserver/issues/324
|
|
145
|
+
this.intersectionRatio = Number((intersectionArea / targetArea).toFixed(4));
|
|
146
|
+
} else {
|
|
147
|
+
// If area is zero and is intersecting, sets to 1, otherwise to 0
|
|
148
|
+
this.intersectionRatio = this.isIntersecting ? 1 : 0;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Creates the global IntersectionObserver constructor.
|
|
155
|
+
* https://w3c.github.io/IntersectionObserver/#intersection-observer-interface
|
|
156
|
+
* @param {Function} callback The function to be invoked after intersection
|
|
157
|
+
* changes have queued. The function is not invoked if the queue has
|
|
158
|
+
* been emptied by calling the `takeRecords` method.
|
|
159
|
+
* @param {Object=} opt_options Optional configuration options.
|
|
160
|
+
* @constructor
|
|
161
|
+
*/
|
|
162
|
+
function IntersectionObserver(callback, opt_options) {
|
|
163
|
+
|
|
164
|
+
var options = opt_options || {};
|
|
165
|
+
|
|
166
|
+
if (typeof callback != 'function') {
|
|
167
|
+
throw new Error('callback must be a function');
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
if (
|
|
171
|
+
options.root &&
|
|
172
|
+
options.root.nodeType != 1 &&
|
|
173
|
+
options.root.nodeType != 9
|
|
174
|
+
) {
|
|
175
|
+
throw new Error('root must be a Document or Element');
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Binds and throttles `this._checkForIntersections`.
|
|
179
|
+
this._checkForIntersections = throttle(
|
|
180
|
+
this._checkForIntersections.bind(this), this.THROTTLE_TIMEOUT);
|
|
181
|
+
|
|
182
|
+
// Private properties.
|
|
183
|
+
this._callback = callback;
|
|
184
|
+
this._observationTargets = [];
|
|
185
|
+
this._queuedEntries = [];
|
|
186
|
+
this._rootMarginValues = this._parseRootMargin(options.rootMargin);
|
|
187
|
+
|
|
188
|
+
// Public properties.
|
|
189
|
+
this.thresholds = this._initThresholds(options.threshold);
|
|
190
|
+
this.root = options.root || null;
|
|
191
|
+
this.rootMargin = this._rootMarginValues.map(function(margin) {
|
|
192
|
+
return margin.value + margin.unit;
|
|
193
|
+
}).join(' ');
|
|
194
|
+
|
|
195
|
+
/** @private @const {!Array<!Document>} */
|
|
196
|
+
this._monitoringDocuments = [];
|
|
197
|
+
/** @private @const {!Array<function()>} */
|
|
198
|
+
this._monitoringUnsubscribes = [];
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* The minimum interval within which the document will be checked for
|
|
204
|
+
* intersection changes.
|
|
205
|
+
*/
|
|
206
|
+
IntersectionObserver.prototype.THROTTLE_TIMEOUT = 100;
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* The frequency in which the polyfill polls for intersection changes.
|
|
211
|
+
* this can be updated on a per instance basis and must be set prior to
|
|
212
|
+
* calling `observe` on the first target.
|
|
213
|
+
*/
|
|
214
|
+
IntersectionObserver.prototype.POLL_INTERVAL = null;
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Use a mutation observer on the root element
|
|
218
|
+
* to detect intersection changes.
|
|
219
|
+
*/
|
|
220
|
+
IntersectionObserver.prototype.USE_MUTATION_OBSERVER = true;
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* Sets up the polyfill in the cross-origin mode. The result is the
|
|
225
|
+
* updater function that accepts two arguments: `boundingClientRect` and
|
|
226
|
+
* `intersectionRect` - just as these fields would be available to the
|
|
227
|
+
* parent via `IntersectionObserverEntry`. This function should be called
|
|
228
|
+
* each time the iframe receives intersection information from the parent
|
|
229
|
+
* window, e.g. via messaging.
|
|
230
|
+
* @return {function(DOMRect|ClientRect, DOMRect|ClientRect)}
|
|
231
|
+
*/
|
|
232
|
+
IntersectionObserver._setupCrossOriginUpdater = function() {
|
|
233
|
+
if (!crossOriginUpdater) {
|
|
234
|
+
/**
|
|
235
|
+
* @param {DOMRect|ClientRect} boundingClientRect
|
|
236
|
+
* @param {DOMRect|ClientRect} intersectionRect
|
|
237
|
+
*/
|
|
238
|
+
crossOriginUpdater = function(boundingClientRect, intersectionRect) {
|
|
239
|
+
if (!boundingClientRect || !intersectionRect) {
|
|
240
|
+
crossOriginRect = getEmptyRect();
|
|
241
|
+
} else {
|
|
242
|
+
crossOriginRect = convertFromParentRect(boundingClientRect, intersectionRect);
|
|
243
|
+
}
|
|
244
|
+
registry.forEach(function(observer) {
|
|
245
|
+
observer._checkForIntersections();
|
|
58
246
|
});
|
|
59
|
-
}
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
return crossOriginUpdater;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Resets the cross-origin mode.
|
|
255
|
+
*/
|
|
256
|
+
IntersectionObserver._resetCrossOriginUpdater = function() {
|
|
257
|
+
crossOriginUpdater = null;
|
|
258
|
+
crossOriginRect = null;
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Starts observing a target element for intersection changes based on
|
|
264
|
+
* the thresholds values.
|
|
265
|
+
* @param {Element} target The DOM element to observe.
|
|
266
|
+
*/
|
|
267
|
+
IntersectionObserver.prototype.observe = function(target) {
|
|
268
|
+
var isTargetAlreadyObserved = this._observationTargets.some(function(item) {
|
|
269
|
+
return item.element == target;
|
|
270
|
+
});
|
|
271
|
+
|
|
272
|
+
if (isTargetAlreadyObserved) {
|
|
60
273
|
return;
|
|
61
274
|
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
} catch (e) {
|
|
66
|
-
return null;
|
|
67
|
-
}
|
|
275
|
+
|
|
276
|
+
if (!(target && target.nodeType == 1)) {
|
|
277
|
+
throw new Error('target must be an Element');
|
|
68
278
|
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
var targetArea = targetRect.width * targetRect.height;
|
|
90
|
-
var intersectionRect = this.intersectionRect;
|
|
91
|
-
var intersectionArea = intersectionRect.width * intersectionRect.height;
|
|
92
|
-
if (targetArea) {
|
|
93
|
-
this.intersectionRatio = Number((intersectionArea / targetArea).toFixed(4));
|
|
94
|
-
} else {
|
|
95
|
-
this.intersectionRatio = this.isIntersecting ? 1 : 0;
|
|
96
|
-
}
|
|
279
|
+
|
|
280
|
+
this._registerInstance();
|
|
281
|
+
this._observationTargets.push({element: target, entry: null});
|
|
282
|
+
this._monitorIntersections(target.ownerDocument);
|
|
283
|
+
this._checkForIntersections();
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Stops observing a target element for intersection changes.
|
|
289
|
+
* @param {Element} target The DOM element to observe.
|
|
290
|
+
*/
|
|
291
|
+
IntersectionObserver.prototype.unobserve = function(target) {
|
|
292
|
+
this._observationTargets =
|
|
293
|
+
this._observationTargets.filter(function(item) {
|
|
294
|
+
return item.element != target;
|
|
295
|
+
});
|
|
296
|
+
this._unmonitorIntersections(target.ownerDocument);
|
|
297
|
+
if (this._observationTargets.length == 0) {
|
|
298
|
+
this._unregisterInstance();
|
|
97
299
|
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Stops observing all target elements for intersection changes.
|
|
305
|
+
*/
|
|
306
|
+
IntersectionObserver.prototype.disconnect = function() {
|
|
307
|
+
this._observationTargets = [];
|
|
308
|
+
this._unmonitorAllIntersections();
|
|
309
|
+
this._unregisterInstance();
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Returns any queue entries that have not yet been reported to the
|
|
315
|
+
* callback and clears the queue. This can be used in conjunction with the
|
|
316
|
+
* callback to obtain the absolute most up-to-date intersection information.
|
|
317
|
+
* @return {Array} The currently queued entries.
|
|
318
|
+
*/
|
|
319
|
+
IntersectionObserver.prototype.takeRecords = function() {
|
|
320
|
+
var records = this._queuedEntries.slice();
|
|
321
|
+
this._queuedEntries = [];
|
|
322
|
+
return records;
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* Accepts the threshold value from the user configuration object and
|
|
328
|
+
* returns a sorted array of unique threshold values. If a value is not
|
|
329
|
+
* between 0 and 1 and error is thrown.
|
|
330
|
+
* @private
|
|
331
|
+
* @param {Array|number=} opt_threshold An optional threshold value or
|
|
332
|
+
* a list of threshold values, defaulting to [0].
|
|
333
|
+
* @return {Array} A sorted list of unique and valid threshold values.
|
|
334
|
+
*/
|
|
335
|
+
IntersectionObserver.prototype._initThresholds = function(opt_threshold) {
|
|
336
|
+
var threshold = opt_threshold || [0];
|
|
337
|
+
if (!Array.isArray(threshold)) threshold = [threshold];
|
|
338
|
+
|
|
339
|
+
return threshold.sort().filter(function(t, i, a) {
|
|
340
|
+
if (typeof t != 'number' || isNaN(t) || t < 0 || t > 1) {
|
|
341
|
+
throw new Error('threshold must be a number between 0 and 1 inclusively');
|
|
102
342
|
}
|
|
103
|
-
|
|
104
|
-
|
|
343
|
+
return t !== a[i - 1];
|
|
344
|
+
});
|
|
345
|
+
};
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* Accepts the rootMargin value from the user configuration object
|
|
350
|
+
* and returns an array of the four margin values as an object containing
|
|
351
|
+
* the value and unit properties. If any of the values are not properly
|
|
352
|
+
* formatted or use a unit other than px or %, and error is thrown.
|
|
353
|
+
* @private
|
|
354
|
+
* @param {string=} opt_rootMargin An optional rootMargin value,
|
|
355
|
+
* defaulting to '0px'.
|
|
356
|
+
* @return {Array<Object>} An array of margin objects with the keys
|
|
357
|
+
* value and unit.
|
|
358
|
+
*/
|
|
359
|
+
IntersectionObserver.prototype._parseRootMargin = function(opt_rootMargin) {
|
|
360
|
+
var marginString = opt_rootMargin || '0px';
|
|
361
|
+
var margins = marginString.split(/\s+/).map(function(margin) {
|
|
362
|
+
var parts = /^(-?\d*\.?\d+)(px|%)$/.exec(margin);
|
|
363
|
+
if (!parts) {
|
|
364
|
+
throw new Error('rootMargin must be specified in pixels or percent');
|
|
105
365
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
366
|
+
return {value: parseFloat(parts[1]), unit: parts[2]};
|
|
367
|
+
});
|
|
368
|
+
|
|
369
|
+
// Handles shorthand.
|
|
370
|
+
margins[1] = margins[1] || margins[0];
|
|
371
|
+
margins[2] = margins[2] || margins[0];
|
|
372
|
+
margins[3] = margins[3] || margins[1];
|
|
373
|
+
|
|
374
|
+
return margins;
|
|
375
|
+
};
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* Starts polling for intersection changes if the polling is not already
|
|
380
|
+
* happening, and if the page's visibility state is visible.
|
|
381
|
+
* @param {!Document} doc
|
|
382
|
+
* @private
|
|
383
|
+
*/
|
|
384
|
+
IntersectionObserver.prototype._monitorIntersections = function(doc) {
|
|
385
|
+
var win = doc.defaultView;
|
|
386
|
+
if (!win) {
|
|
387
|
+
// Already destroyed.
|
|
388
|
+
return;
|
|
118
389
|
}
|
|
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
|
-
if (isTargetAlreadyObserved) {
|
|
146
|
-
return;
|
|
147
|
-
}
|
|
148
|
-
if (!(target && target.nodeType == 1)) {
|
|
149
|
-
throw new Error("target must be an Element");
|
|
150
|
-
}
|
|
151
|
-
this._registerInstance();
|
|
152
|
-
this._observationTargets.push({ element: target, entry: null });
|
|
153
|
-
this._monitorIntersections(target.ownerDocument);
|
|
154
|
-
this._checkForIntersections();
|
|
155
|
-
};
|
|
156
|
-
IntersectionObserver2.prototype.unobserve = function(target) {
|
|
157
|
-
this._observationTargets = this._observationTargets.filter(function(item) {
|
|
158
|
-
return item.element != target;
|
|
159
|
-
});
|
|
160
|
-
this._unmonitorIntersections(target.ownerDocument);
|
|
161
|
-
if (this._observationTargets.length == 0) {
|
|
162
|
-
this._unregisterInstance();
|
|
390
|
+
if (this._monitoringDocuments.indexOf(doc) != -1) {
|
|
391
|
+
// Already monitoring.
|
|
392
|
+
return;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
// Private state for monitoring.
|
|
396
|
+
var callback = this._checkForIntersections;
|
|
397
|
+
var monitoringInterval = null;
|
|
398
|
+
var domObserver = null;
|
|
399
|
+
|
|
400
|
+
// If a poll interval is set, use polling instead of listening to
|
|
401
|
+
// resize and scroll events or DOM mutations.
|
|
402
|
+
if (this.POLL_INTERVAL) {
|
|
403
|
+
monitoringInterval = win.setInterval(callback, this.POLL_INTERVAL);
|
|
404
|
+
} else {
|
|
405
|
+
addEvent(win, 'resize', callback, true);
|
|
406
|
+
addEvent(doc, 'scroll', callback, true);
|
|
407
|
+
if (this.USE_MUTATION_OBSERVER && 'MutationObserver' in win) {
|
|
408
|
+
domObserver = new win.MutationObserver(callback);
|
|
409
|
+
domObserver.observe(doc, {
|
|
410
|
+
attributes: true,
|
|
411
|
+
childList: true,
|
|
412
|
+
characterData: true,
|
|
413
|
+
subtree: true
|
|
414
|
+
});
|
|
163
415
|
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
IntersectionObserver2.prototype.takeRecords = function() {
|
|
171
|
-
var records = this._queuedEntries.slice();
|
|
172
|
-
this._queuedEntries = [];
|
|
173
|
-
return records;
|
|
174
|
-
};
|
|
175
|
-
IntersectionObserver2.prototype._initThresholds = function(opt_threshold) {
|
|
176
|
-
var threshold = opt_threshold || [0];
|
|
177
|
-
if (!Array.isArray(threshold))
|
|
178
|
-
threshold = [threshold];
|
|
179
|
-
return threshold.sort().filter(function(t, i, a) {
|
|
180
|
-
if (typeof t != "number" || isNaN(t) || t < 0 || t > 1) {
|
|
181
|
-
throw new Error("threshold must be a number between 0 and 1 inclusively");
|
|
182
|
-
}
|
|
183
|
-
return t !== a[i - 1];
|
|
184
|
-
});
|
|
185
|
-
};
|
|
186
|
-
IntersectionObserver2.prototype._parseRootMargin = function(opt_rootMargin) {
|
|
187
|
-
var marginString = opt_rootMargin || "0px";
|
|
188
|
-
var margins = marginString.split(/\s+/).map(function(margin) {
|
|
189
|
-
var parts = /^(-?\d*\.?\d+)(px|%)$/.exec(margin);
|
|
190
|
-
if (!parts) {
|
|
191
|
-
throw new Error("rootMargin must be specified in pixels or percent");
|
|
192
|
-
}
|
|
193
|
-
return { value: parseFloat(parts[1]), unit: parts[2] };
|
|
194
|
-
});
|
|
195
|
-
margins[1] = margins[1] || margins[0];
|
|
196
|
-
margins[2] = margins[2] || margins[0];
|
|
197
|
-
margins[3] = margins[3] || margins[1];
|
|
198
|
-
return margins;
|
|
199
|
-
};
|
|
200
|
-
IntersectionObserver2.prototype._monitorIntersections = function(doc) {
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
this._monitoringDocuments.push(doc);
|
|
419
|
+
this._monitoringUnsubscribes.push(function() {
|
|
420
|
+
// Get the window object again. When a friendly iframe is destroyed, it
|
|
421
|
+
// will be null.
|
|
201
422
|
var win = doc.defaultView;
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
return;
|
|
207
|
-
}
|
|
208
|
-
var callback = this._checkForIntersections;
|
|
209
|
-
var monitoringInterval = null;
|
|
210
|
-
var domObserver = null;
|
|
211
|
-
if (this.POLL_INTERVAL) {
|
|
212
|
-
monitoringInterval = win.setInterval(callback, this.POLL_INTERVAL);
|
|
213
|
-
} else {
|
|
214
|
-
addEvent(win, "resize", callback, true);
|
|
215
|
-
addEvent(doc, "scroll", callback, true);
|
|
216
|
-
if (this.USE_MUTATION_OBSERVER && "MutationObserver" in win) {
|
|
217
|
-
domObserver = new win.MutationObserver(callback);
|
|
218
|
-
domObserver.observe(doc, {
|
|
219
|
-
attributes: true,
|
|
220
|
-
childList: true,
|
|
221
|
-
characterData: true,
|
|
222
|
-
subtree: true
|
|
223
|
-
});
|
|
423
|
+
|
|
424
|
+
if (win) {
|
|
425
|
+
if (monitoringInterval) {
|
|
426
|
+
win.clearInterval(monitoringInterval);
|
|
224
427
|
}
|
|
428
|
+
removeEvent(win, 'resize', callback, true);
|
|
225
429
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
if (monitoringInterval) {
|
|
231
|
-
win2.clearInterval(monitoringInterval);
|
|
232
|
-
}
|
|
233
|
-
removeEvent(win2, "resize", callback, true);
|
|
234
|
-
}
|
|
235
|
-
removeEvent(doc, "scroll", callback, true);
|
|
236
|
-
if (domObserver) {
|
|
237
|
-
domObserver.disconnect();
|
|
238
|
-
}
|
|
239
|
-
});
|
|
240
|
-
var rootDoc = this.root && (this.root.ownerDocument || this.root) || document2;
|
|
241
|
-
if (doc != rootDoc) {
|
|
242
|
-
var frame = getFrameElement(doc);
|
|
243
|
-
if (frame) {
|
|
244
|
-
this._monitorIntersections(frame.ownerDocument);
|
|
245
|
-
}
|
|
430
|
+
|
|
431
|
+
removeEvent(doc, 'scroll', callback, true);
|
|
432
|
+
if (domObserver) {
|
|
433
|
+
domObserver.disconnect();
|
|
246
434
|
}
|
|
247
|
-
};
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
435
|
+
});
|
|
436
|
+
|
|
437
|
+
// Also monitor the parent.
|
|
438
|
+
var rootDoc =
|
|
439
|
+
(this.root && (this.root.ownerDocument || this.root)) || document;
|
|
440
|
+
if (doc != rootDoc) {
|
|
441
|
+
var frame = getFrameElement(doc);
|
|
442
|
+
if (frame) {
|
|
443
|
+
this._monitorIntersections(frame.ownerDocument);
|
|
252
444
|
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
445
|
+
}
|
|
446
|
+
};
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
/**
|
|
450
|
+
* Stops polling for intersection changes.
|
|
451
|
+
* @param {!Document} doc
|
|
452
|
+
* @private
|
|
453
|
+
*/
|
|
454
|
+
IntersectionObserver.prototype._unmonitorIntersections = function(doc) {
|
|
455
|
+
var index = this._monitoringDocuments.indexOf(doc);
|
|
456
|
+
if (index == -1) {
|
|
457
|
+
return;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
var rootDoc =
|
|
461
|
+
(this.root && (this.root.ownerDocument || this.root)) || document;
|
|
462
|
+
|
|
463
|
+
// Check if any dependent targets are still remaining.
|
|
464
|
+
var hasDependentTargets =
|
|
465
|
+
this._observationTargets.some(function(item) {
|
|
466
|
+
var itemDoc = item.element.ownerDocument;
|
|
467
|
+
// Target is in this context.
|
|
262
468
|
if (itemDoc == doc) {
|
|
263
469
|
return true;
|
|
264
470
|
}
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
471
|
+
// Target is nested in this context.
|
|
472
|
+
while (itemDoc && itemDoc != rootDoc) {
|
|
473
|
+
var frame = getFrameElement(itemDoc);
|
|
474
|
+
itemDoc = frame && frame.ownerDocument;
|
|
475
|
+
if (itemDoc == doc) {
|
|
476
|
+
return true;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
return false;
|
|
480
|
+
});
|
|
481
|
+
if (hasDependentTargets) {
|
|
482
|
+
return;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
// Unsubscribe.
|
|
486
|
+
var unsubscribe = this._monitoringUnsubscribes[index];
|
|
487
|
+
this._monitoringDocuments.splice(index, 1);
|
|
488
|
+
this._monitoringUnsubscribes.splice(index, 1);
|
|
489
|
+
unsubscribe();
|
|
490
|
+
|
|
491
|
+
// Also unmonitor the parent.
|
|
492
|
+
if (doc != rootDoc) {
|
|
493
|
+
var frame = getFrameElement(doc);
|
|
494
|
+
if (frame) {
|
|
495
|
+
this._unmonitorIntersections(frame.ownerDocument);
|
|
288
496
|
}
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
497
|
+
}
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* Stops polling for intersection changes.
|
|
503
|
+
* @param {!Document} doc
|
|
504
|
+
* @private
|
|
505
|
+
*/
|
|
506
|
+
IntersectionObserver.prototype._unmonitorAllIntersections = function() {
|
|
507
|
+
var unsubscribes = this._monitoringUnsubscribes.slice(0);
|
|
508
|
+
this._monitoringDocuments.length = 0;
|
|
509
|
+
this._monitoringUnsubscribes.length = 0;
|
|
510
|
+
for (var i = 0; i < unsubscribes.length; i++) {
|
|
511
|
+
unsubscribes[i]();
|
|
512
|
+
}
|
|
513
|
+
};
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* Scans each observation target for intersection changes and adds them
|
|
518
|
+
* to the internal entries queue. If new entries are found, it
|
|
519
|
+
* schedules the callback to be invoked.
|
|
520
|
+
* @private
|
|
521
|
+
*/
|
|
522
|
+
IntersectionObserver.prototype._checkForIntersections = function() {
|
|
523
|
+
if (!this.root && crossOriginUpdater && !crossOriginRect) {
|
|
524
|
+
// Cross origin monitoring, but no initial data available yet.
|
|
525
|
+
return;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
var rootIsInDom = this._rootIsInDom();
|
|
529
|
+
var rootRect = rootIsInDom ? this._getRootRect() : getEmptyRect();
|
|
530
|
+
|
|
531
|
+
this._observationTargets.forEach(function(item) {
|
|
532
|
+
var target = item.element;
|
|
533
|
+
var targetRect = getBoundingClientRect(target);
|
|
534
|
+
var rootContainsTarget = this._rootContainsTarget(target);
|
|
535
|
+
var oldEntry = item.entry;
|
|
536
|
+
var intersectionRect = rootIsInDom && rootContainsTarget &&
|
|
537
|
+
this._computeTargetAndRootIntersection(target, targetRect, rootRect);
|
|
538
|
+
|
|
539
|
+
var rootBounds = null;
|
|
540
|
+
if (!this._rootContainsTarget(target)) {
|
|
541
|
+
rootBounds = getEmptyRect();
|
|
542
|
+
} else if (!crossOriginUpdater || this.root) {
|
|
543
|
+
rootBounds = rootRect;
|
|
293
544
|
}
|
|
294
|
-
|
|
295
|
-
var
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
545
|
+
|
|
546
|
+
var newEntry = item.entry = new IntersectionObserverEntry({
|
|
547
|
+
time: now(),
|
|
548
|
+
target: target,
|
|
549
|
+
boundingClientRect: targetRect,
|
|
550
|
+
rootBounds: rootBounds,
|
|
551
|
+
intersectionRect: intersectionRect
|
|
552
|
+
});
|
|
553
|
+
|
|
554
|
+
if (!oldEntry) {
|
|
555
|
+
this._queuedEntries.push(newEntry);
|
|
556
|
+
} else if (rootIsInDom && rootContainsTarget) {
|
|
557
|
+
// If the new entry intersection ratio has crossed any of the
|
|
558
|
+
// thresholds, add a new entry.
|
|
559
|
+
if (this._hasCrossedThreshold(oldEntry, newEntry)) {
|
|
560
|
+
this._queuedEntries.push(newEntry);
|
|
307
561
|
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
intersectionRect
|
|
314
|
-
});
|
|
315
|
-
if (!oldEntry) {
|
|
562
|
+
} else {
|
|
563
|
+
// If the root is not in the DOM or target is not contained within
|
|
564
|
+
// root but the previous entry for this target had an intersection,
|
|
565
|
+
// add a new record indicating removal.
|
|
566
|
+
if (oldEntry && oldEntry.isIntersecting) {
|
|
316
567
|
this._queuedEntries.push(newEntry);
|
|
317
|
-
} else if (rootIsInDom && rootContainsTarget) {
|
|
318
|
-
if (this._hasCrossedThreshold(oldEntry, newEntry)) {
|
|
319
|
-
this._queuedEntries.push(newEntry);
|
|
320
|
-
}
|
|
321
|
-
} else {
|
|
322
|
-
if (oldEntry && oldEntry.isIntersecting) {
|
|
323
|
-
this._queuedEntries.push(newEntry);
|
|
324
|
-
}
|
|
325
568
|
}
|
|
326
|
-
}, this);
|
|
327
|
-
if (this._queuedEntries.length) {
|
|
328
|
-
this._callback(this.takeRecords(), this);
|
|
329
569
|
}
|
|
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
|
-
|
|
570
|
+
}, this);
|
|
571
|
+
|
|
572
|
+
if (this._queuedEntries.length) {
|
|
573
|
+
this._callback(this.takeRecords(), this);
|
|
574
|
+
}
|
|
575
|
+
};
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* Accepts a target and root rect computes the intersection between then
|
|
580
|
+
* following the algorithm in the spec.
|
|
581
|
+
* TODO(philipwalton): at this time clip-path is not considered.
|
|
582
|
+
* https://w3c.github.io/IntersectionObserver/#calculate-intersection-rect-algo
|
|
583
|
+
* @param {Element} target The target DOM element
|
|
584
|
+
* @param {Object} targetRect The bounding rect of the target.
|
|
585
|
+
* @param {Object} rootRect The bounding rect of the root after being
|
|
586
|
+
* expanded by the rootMargin value.
|
|
587
|
+
* @return {?Object} The final intersection rect object or undefined if no
|
|
588
|
+
* intersection is found.
|
|
589
|
+
* @private
|
|
590
|
+
*/
|
|
591
|
+
IntersectionObserver.prototype._computeTargetAndRootIntersection =
|
|
592
|
+
function(target, targetRect, rootRect) {
|
|
593
|
+
// If the element isn't displayed, an intersection can't happen.
|
|
594
|
+
if (window.getComputedStyle(target).display == 'none') return;
|
|
595
|
+
|
|
596
|
+
var intersectionRect = targetRect;
|
|
597
|
+
var parent = getParentNode(target);
|
|
598
|
+
var atRoot = false;
|
|
599
|
+
|
|
600
|
+
while (!atRoot && parent) {
|
|
601
|
+
var parentRect = null;
|
|
602
|
+
var parentComputedStyle = parent.nodeType == 1 ?
|
|
603
|
+
window.getComputedStyle(parent) : {};
|
|
604
|
+
|
|
605
|
+
// If the parent isn't displayed, an intersection can't happen.
|
|
606
|
+
if (parentComputedStyle.display == 'none') return null;
|
|
607
|
+
|
|
608
|
+
if (parent == this.root || parent.nodeType == /* DOCUMENT */ 9) {
|
|
609
|
+
atRoot = true;
|
|
610
|
+
if (parent == this.root || parent == document) {
|
|
611
|
+
if (crossOriginUpdater && !this.root) {
|
|
612
|
+
if (!crossOriginRect ||
|
|
613
|
+
crossOriginRect.width == 0 && crossOriginRect.height == 0) {
|
|
614
|
+
// A 0-size cross-origin intersection means no-intersection.
|
|
364
615
|
parent = null;
|
|
616
|
+
parentRect = null;
|
|
365
617
|
intersectionRect = null;
|
|
618
|
+
} else {
|
|
619
|
+
parentRect = crossOriginRect;
|
|
366
620
|
}
|
|
621
|
+
} else {
|
|
622
|
+
parentRect = rootRect;
|
|
367
623
|
}
|
|
368
624
|
} else {
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
625
|
+
// Check if there's a frame that can be navigated to.
|
|
626
|
+
var frame = getParentNode(parent);
|
|
627
|
+
var frameRect = frame && getBoundingClientRect(frame);
|
|
628
|
+
var frameIntersect =
|
|
629
|
+
frame &&
|
|
630
|
+
this._computeTargetAndRootIntersection(frame, frameRect, rootRect);
|
|
631
|
+
if (frameRect && frameIntersect) {
|
|
632
|
+
parent = frame;
|
|
633
|
+
parentRect = convertFromParentRect(frameRect, frameIntersect);
|
|
634
|
+
} else {
|
|
635
|
+
parent = null;
|
|
636
|
+
intersectionRect = null;
|
|
372
637
|
}
|
|
373
638
|
}
|
|
374
|
-
if (parentRect) {
|
|
375
|
-
intersectionRect = computeRectIntersection(parentRect, intersectionRect);
|
|
376
|
-
}
|
|
377
|
-
if (!intersectionRect)
|
|
378
|
-
break;
|
|
379
|
-
parent = parent && getParentNode(parent);
|
|
380
|
-
}
|
|
381
|
-
return intersectionRect;
|
|
382
|
-
};
|
|
383
|
-
IntersectionObserver2.prototype._getRootRect = function() {
|
|
384
|
-
var rootRect;
|
|
385
|
-
if (this.root && !isDoc(this.root)) {
|
|
386
|
-
rootRect = getBoundingClientRect(this.root);
|
|
387
639
|
} else {
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
height: html.clientHeight || body.clientHeight
|
|
398
|
-
};
|
|
399
|
-
}
|
|
400
|
-
return this._expandRectByRootMargin(rootRect);
|
|
401
|
-
};
|
|
402
|
-
IntersectionObserver2.prototype._expandRectByRootMargin = function(rect) {
|
|
403
|
-
var margins = this._rootMarginValues.map(function(margin, i) {
|
|
404
|
-
return margin.unit == "px" ? margin.value : margin.value * (i % 2 ? rect.width : rect.height) / 100;
|
|
405
|
-
});
|
|
406
|
-
var newRect = {
|
|
407
|
-
top: rect.top - margins[0],
|
|
408
|
-
right: rect.right + margins[1],
|
|
409
|
-
bottom: rect.bottom + margins[2],
|
|
410
|
-
left: rect.left - margins[3]
|
|
411
|
-
};
|
|
412
|
-
newRect.width = newRect.right - newRect.left;
|
|
413
|
-
newRect.height = newRect.bottom - newRect.top;
|
|
414
|
-
return newRect;
|
|
415
|
-
};
|
|
416
|
-
IntersectionObserver2.prototype._hasCrossedThreshold = function(oldEntry, newEntry) {
|
|
417
|
-
var oldRatio = oldEntry && oldEntry.isIntersecting ? oldEntry.intersectionRatio || 0 : -1;
|
|
418
|
-
var newRatio = newEntry.isIntersecting ? newEntry.intersectionRatio || 0 : -1;
|
|
419
|
-
if (oldRatio === newRatio)
|
|
420
|
-
return;
|
|
421
|
-
for (var i = 0; i < this.thresholds.length; i++) {
|
|
422
|
-
var threshold = this.thresholds[i];
|
|
423
|
-
if (threshold == oldRatio || threshold == newRatio || threshold < oldRatio !== threshold < newRatio) {
|
|
424
|
-
return true;
|
|
640
|
+
// If the element has a non-visible overflow, and it's not the <body>
|
|
641
|
+
// or <html> element, update the intersection rect.
|
|
642
|
+
// Note: <body> and <html> cannot be clipped to a rect that's not also
|
|
643
|
+
// the document rect, so no need to compute a new intersection.
|
|
644
|
+
var doc = parent.ownerDocument;
|
|
645
|
+
if (parent != doc.body &&
|
|
646
|
+
parent != doc.documentElement &&
|
|
647
|
+
parentComputedStyle.overflow != 'visible') {
|
|
648
|
+
parentRect = getBoundingClientRect(parent);
|
|
425
649
|
}
|
|
426
650
|
}
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
var rootDoc = this.root && (this.root.ownerDocument || this.root) || document2;
|
|
433
|
-
return containsDeep(rootDoc, target) && (!this.root || rootDoc == target.ownerDocument);
|
|
434
|
-
};
|
|
435
|
-
IntersectionObserver2.prototype._registerInstance = function() {
|
|
436
|
-
if (registry.indexOf(this) < 0) {
|
|
437
|
-
registry.push(this);
|
|
651
|
+
|
|
652
|
+
// If either of the above conditionals set a new parentRect,
|
|
653
|
+
// calculate new intersection data.
|
|
654
|
+
if (parentRect) {
|
|
655
|
+
intersectionRect = computeRectIntersection(parentRect, intersectionRect);
|
|
438
656
|
}
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
var index = registry.indexOf(this);
|
|
442
|
-
if (index != -1)
|
|
443
|
-
registry.splice(index, 1);
|
|
444
|
-
};
|
|
445
|
-
function now() {
|
|
446
|
-
return window.performance && performance.now && performance.now();
|
|
657
|
+
if (!intersectionRect) break;
|
|
658
|
+
parent = parent && getParentNode(parent);
|
|
447
659
|
}
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
660
|
+
return intersectionRect;
|
|
661
|
+
};
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* Returns the root rect after being expanded by the rootMargin value.
|
|
666
|
+
* @return {ClientRect} The expanded root rect.
|
|
667
|
+
* @private
|
|
668
|
+
*/
|
|
669
|
+
IntersectionObserver.prototype._getRootRect = function() {
|
|
670
|
+
var rootRect;
|
|
671
|
+
if (this.root && !isDoc(this.root)) {
|
|
672
|
+
rootRect = getBoundingClientRect(this.root);
|
|
673
|
+
} else {
|
|
674
|
+
// Use <html>/<body> instead of window since scroll bars affect size.
|
|
675
|
+
var doc = isDoc(this.root) ? this.root : document;
|
|
676
|
+
var html = doc.documentElement;
|
|
677
|
+
var body = doc.body;
|
|
678
|
+
rootRect = {
|
|
679
|
+
top: 0,
|
|
680
|
+
left: 0,
|
|
681
|
+
right: html.clientWidth || body.clientWidth,
|
|
682
|
+
width: html.clientWidth || body.clientWidth,
|
|
683
|
+
bottom: html.clientHeight || body.clientHeight,
|
|
684
|
+
height: html.clientHeight || body.clientHeight
|
|
457
685
|
};
|
|
458
686
|
}
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
687
|
+
return this._expandRectByRootMargin(rootRect);
|
|
688
|
+
};
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* Accepts a rect and expands it by the rootMargin value.
|
|
693
|
+
* @param {DOMRect|ClientRect} rect The rect object to expand.
|
|
694
|
+
* @return {ClientRect} The expanded rect.
|
|
695
|
+
* @private
|
|
696
|
+
*/
|
|
697
|
+
IntersectionObserver.prototype._expandRectByRootMargin = function(rect) {
|
|
698
|
+
var margins = this._rootMarginValues.map(function(margin, i) {
|
|
699
|
+
return margin.unit == 'px' ? margin.value :
|
|
700
|
+
margin.value * (i % 2 ? rect.width : rect.height) / 100;
|
|
701
|
+
});
|
|
702
|
+
var newRect = {
|
|
703
|
+
top: rect.top - margins[0],
|
|
704
|
+
right: rect.right + margins[1],
|
|
705
|
+
bottom: rect.bottom + margins[2],
|
|
706
|
+
left: rect.left - margins[3]
|
|
707
|
+
};
|
|
708
|
+
newRect.width = newRect.right - newRect.left;
|
|
709
|
+
newRect.height = newRect.bottom - newRect.top;
|
|
710
|
+
|
|
711
|
+
return newRect;
|
|
712
|
+
};
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
/**
|
|
716
|
+
* Accepts an old and new entry and returns true if at least one of the
|
|
717
|
+
* threshold values has been crossed.
|
|
718
|
+
* @param {?IntersectionObserverEntry} oldEntry The previous entry for a
|
|
719
|
+
* particular target element or null if no previous entry exists.
|
|
720
|
+
* @param {IntersectionObserverEntry} newEntry The current entry for a
|
|
721
|
+
* particular target element.
|
|
722
|
+
* @return {boolean} Returns true if a any threshold has been crossed.
|
|
723
|
+
* @private
|
|
724
|
+
*/
|
|
725
|
+
IntersectionObserver.prototype._hasCrossedThreshold =
|
|
726
|
+
function(oldEntry, newEntry) {
|
|
727
|
+
|
|
728
|
+
// To make comparing easier, an entry that has a ratio of 0
|
|
729
|
+
// but does not actually intersect is given a value of -1
|
|
730
|
+
var oldRatio = oldEntry && oldEntry.isIntersecting ?
|
|
731
|
+
oldEntry.intersectionRatio || 0 : -1;
|
|
732
|
+
var newRatio = newEntry.isIntersecting ?
|
|
733
|
+
newEntry.intersectionRatio || 0 : -1;
|
|
734
|
+
|
|
735
|
+
// Ignore unchanged ratios
|
|
736
|
+
if (oldRatio === newRatio) return;
|
|
737
|
+
|
|
738
|
+
for (var i = 0; i < this.thresholds.length; i++) {
|
|
739
|
+
var threshold = this.thresholds[i];
|
|
740
|
+
|
|
741
|
+
// Return true if an entry matches a threshold or if the new ratio
|
|
742
|
+
// and the old ratio are on the opposite sides of a threshold.
|
|
743
|
+
if (threshold == oldRatio || threshold == newRatio ||
|
|
744
|
+
threshold < oldRatio !== threshold < newRatio) {
|
|
745
|
+
return true;
|
|
464
746
|
}
|
|
465
747
|
}
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
748
|
+
};
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* Returns whether or not the root element is an element and is in the DOM.
|
|
753
|
+
* @return {boolean} True if the root element is an element and is in the DOM.
|
|
754
|
+
* @private
|
|
755
|
+
*/
|
|
756
|
+
IntersectionObserver.prototype._rootIsInDom = function() {
|
|
757
|
+
return !this.root || containsDeep(document, this.root);
|
|
758
|
+
};
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
/**
|
|
762
|
+
* Returns whether or not the target element is a child of root.
|
|
763
|
+
* @param {Element} target The target element to check.
|
|
764
|
+
* @return {boolean} True if the target element is a child of root.
|
|
765
|
+
* @private
|
|
766
|
+
*/
|
|
767
|
+
IntersectionObserver.prototype._rootContainsTarget = function(target) {
|
|
768
|
+
var rootDoc =
|
|
769
|
+
(this.root && (this.root.ownerDocument || this.root)) || document;
|
|
770
|
+
return (
|
|
771
|
+
containsDeep(rootDoc, target) &&
|
|
772
|
+
(!this.root || rootDoc == target.ownerDocument)
|
|
773
|
+
);
|
|
774
|
+
};
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
/**
|
|
778
|
+
* Adds the instance to the global IntersectionObserver registry if it isn't
|
|
779
|
+
* already present.
|
|
780
|
+
* @private
|
|
781
|
+
*/
|
|
782
|
+
IntersectionObserver.prototype._registerInstance = function() {
|
|
783
|
+
if (registry.indexOf(this) < 0) {
|
|
784
|
+
registry.push(this);
|
|
785
|
+
}
|
|
786
|
+
};
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* Removes the instance from the global IntersectionObserver registry.
|
|
791
|
+
* @private
|
|
792
|
+
*/
|
|
793
|
+
IntersectionObserver.prototype._unregisterInstance = function() {
|
|
794
|
+
var index = registry.indexOf(this);
|
|
795
|
+
if (index != -1) registry.splice(index, 1);
|
|
796
|
+
};
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* Returns the result of the performance.now() method or null in browsers
|
|
801
|
+
* that don't support the API.
|
|
802
|
+
* @return {number} The elapsed time since the page was requested.
|
|
803
|
+
*/
|
|
804
|
+
function now() {
|
|
805
|
+
return window.performance && performance.now && performance.now();
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
/**
|
|
810
|
+
* Throttles a function and delays its execution, so it's only called at most
|
|
811
|
+
* once within a given time period.
|
|
812
|
+
* @param {Function} fn The function to throttle.
|
|
813
|
+
* @param {number} timeout The amount of time that must pass before the
|
|
814
|
+
* function can be called again.
|
|
815
|
+
* @return {Function} The throttled function.
|
|
816
|
+
*/
|
|
817
|
+
function throttle(fn, timeout) {
|
|
818
|
+
var timer = null;
|
|
819
|
+
return function () {
|
|
820
|
+
if (!timer) {
|
|
821
|
+
timer = setTimeout(function() {
|
|
822
|
+
fn();
|
|
823
|
+
timer = null;
|
|
824
|
+
}, timeout);
|
|
471
825
|
}
|
|
826
|
+
};
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
/**
|
|
831
|
+
* Adds an event handler to a DOM node ensuring cross-browser compatibility.
|
|
832
|
+
* @param {Node} node The DOM node to add the event handler to.
|
|
833
|
+
* @param {string} event The event name.
|
|
834
|
+
* @param {Function} fn The event handler to add.
|
|
835
|
+
* @param {boolean} opt_useCapture Optionally adds the even to the capture
|
|
836
|
+
* phase. Note: this only works in modern browsers.
|
|
837
|
+
*/
|
|
838
|
+
function addEvent(node, event, fn, opt_useCapture) {
|
|
839
|
+
if (typeof node.addEventListener == 'function') {
|
|
840
|
+
node.addEventListener(event, fn, opt_useCapture || false);
|
|
472
841
|
}
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
var bottom = Math.min(rect1.bottom, rect2.bottom);
|
|
476
|
-
var left = Math.max(rect1.left, rect2.left);
|
|
477
|
-
var right = Math.min(rect1.right, rect2.right);
|
|
478
|
-
var width = right - left;
|
|
479
|
-
var height = bottom - top;
|
|
480
|
-
return width >= 0 && height >= 0 && {
|
|
481
|
-
top,
|
|
482
|
-
bottom,
|
|
483
|
-
left,
|
|
484
|
-
right,
|
|
485
|
-
width,
|
|
486
|
-
height
|
|
487
|
-
} || null;
|
|
842
|
+
else if (typeof node.attachEvent == 'function') {
|
|
843
|
+
node.attachEvent('on' + event, fn);
|
|
488
844
|
}
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
width: rect.right - rect.left,
|
|
504
|
-
height: rect.bottom - rect.top
|
|
505
|
-
};
|
|
506
|
-
}
|
|
507
|
-
return rect;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
/**
|
|
849
|
+
* Removes a previously added event handler from a DOM node.
|
|
850
|
+
* @param {Node} node The DOM node to remove the event handler from.
|
|
851
|
+
* @param {string} event The event name.
|
|
852
|
+
* @param {Function} fn The event handler to remove.
|
|
853
|
+
* @param {boolean} opt_useCapture If the event handler was added with this
|
|
854
|
+
* flag set to true, it should be set to true here in order to remove it.
|
|
855
|
+
*/
|
|
856
|
+
function removeEvent(node, event, fn, opt_useCapture) {
|
|
857
|
+
if (typeof node.removeEventListener == 'function') {
|
|
858
|
+
node.removeEventListener(event, fn, opt_useCapture || false);
|
|
508
859
|
}
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
top: 0,
|
|
512
|
-
bottom: 0,
|
|
513
|
-
left: 0,
|
|
514
|
-
right: 0,
|
|
515
|
-
width: 0,
|
|
516
|
-
height: 0
|
|
517
|
-
};
|
|
860
|
+
else if (typeof node.detatchEvent == 'function') {
|
|
861
|
+
node.detatchEvent('on' + event, fn);
|
|
518
862
|
}
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* Returns the intersection between two rect objects.
|
|
868
|
+
* @param {Object} rect1 The first rect.
|
|
869
|
+
* @param {Object} rect2 The second rect.
|
|
870
|
+
* @return {?Object|?ClientRect} The intersection rect or undefined if no
|
|
871
|
+
* intersection is found.
|
|
872
|
+
*/
|
|
873
|
+
function computeRectIntersection(rect1, rect2) {
|
|
874
|
+
var top = Math.max(rect1.top, rect2.top);
|
|
875
|
+
var bottom = Math.min(rect1.bottom, rect2.bottom);
|
|
876
|
+
var left = Math.max(rect1.left, rect2.left);
|
|
877
|
+
var right = Math.min(rect1.right, rect2.right);
|
|
878
|
+
var width = right - left;
|
|
879
|
+
var height = bottom - top;
|
|
880
|
+
|
|
881
|
+
return (width >= 0 && height >= 0) && {
|
|
882
|
+
top: top,
|
|
883
|
+
bottom: bottom,
|
|
884
|
+
left: left,
|
|
885
|
+
right: right,
|
|
886
|
+
width: width,
|
|
887
|
+
height: height
|
|
888
|
+
} || null;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
/**
|
|
893
|
+
* Shims the native getBoundingClientRect for compatibility with older IE.
|
|
894
|
+
* @param {Element} el The element whose bounding rect to get.
|
|
895
|
+
* @return {DOMRect|ClientRect} The (possibly shimmed) rect of the element.
|
|
896
|
+
*/
|
|
897
|
+
function getBoundingClientRect(el) {
|
|
898
|
+
var rect;
|
|
899
|
+
|
|
900
|
+
try {
|
|
901
|
+
rect = el.getBoundingClientRect();
|
|
902
|
+
} catch (err) {
|
|
903
|
+
// Ignore Windows 7 IE11 "Unspecified error"
|
|
904
|
+
// https://github.com/w3c/IntersectionObserver/pull/205
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
if (!rect) return getEmptyRect();
|
|
908
|
+
|
|
909
|
+
// Older IE
|
|
910
|
+
if (!(rect.width && rect.height)) {
|
|
911
|
+
rect = {
|
|
524
912
|
top: rect.top,
|
|
525
|
-
|
|
913
|
+
right: rect.right,
|
|
526
914
|
bottom: rect.bottom,
|
|
527
915
|
left: rect.left,
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
width: rect.width,
|
|
531
|
-
height: rect.height
|
|
532
|
-
};
|
|
533
|
-
}
|
|
534
|
-
function convertFromParentRect(parentBoundingRect, parentIntersectionRect) {
|
|
535
|
-
var top = parentIntersectionRect.top - parentBoundingRect.top;
|
|
536
|
-
var left = parentIntersectionRect.left - parentBoundingRect.left;
|
|
537
|
-
return {
|
|
538
|
-
top,
|
|
539
|
-
left,
|
|
540
|
-
height: parentIntersectionRect.height,
|
|
541
|
-
width: parentIntersectionRect.width,
|
|
542
|
-
bottom: top + parentIntersectionRect.height,
|
|
543
|
-
right: left + parentIntersectionRect.width
|
|
916
|
+
width: rect.right - rect.left,
|
|
917
|
+
height: rect.bottom - rect.top
|
|
544
918
|
};
|
|
545
919
|
}
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
920
|
+
return rect;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
/**
|
|
925
|
+
* Returns an empty rect object. An empty rect is returned when an element
|
|
926
|
+
* is not in the DOM.
|
|
927
|
+
* @return {ClientRect} The empty rect.
|
|
928
|
+
*/
|
|
929
|
+
function getEmptyRect() {
|
|
930
|
+
return {
|
|
931
|
+
top: 0,
|
|
932
|
+
bottom: 0,
|
|
933
|
+
left: 0,
|
|
934
|
+
right: 0,
|
|
935
|
+
width: 0,
|
|
936
|
+
height: 0
|
|
937
|
+
};
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* Ensure that the result has all of the necessary fields of the DOMRect.
|
|
943
|
+
* Specifically this ensures that `x` and `y` fields are set.
|
|
944
|
+
*
|
|
945
|
+
* @param {?DOMRect|?ClientRect} rect
|
|
946
|
+
* @return {?DOMRect}
|
|
947
|
+
*/
|
|
948
|
+
function ensureDOMRect(rect) {
|
|
949
|
+
// A `DOMRect` object has `x` and `y` fields.
|
|
950
|
+
if (!rect || 'x' in rect) {
|
|
951
|
+
return rect;
|
|
554
952
|
}
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
953
|
+
// A IE's `ClientRect` type does not have `x` and `y`. The same is the case
|
|
954
|
+
// for internally calculated Rect objects. For the purposes of
|
|
955
|
+
// `IntersectionObserver`, it's sufficient to simply mirror `left` and `top`
|
|
956
|
+
// for these fields.
|
|
957
|
+
return {
|
|
958
|
+
top: rect.top,
|
|
959
|
+
y: rect.top,
|
|
960
|
+
bottom: rect.bottom,
|
|
961
|
+
left: rect.left,
|
|
962
|
+
x: rect.left,
|
|
963
|
+
right: rect.right,
|
|
964
|
+
width: rect.width,
|
|
965
|
+
height: rect.height
|
|
966
|
+
};
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
|
|
970
|
+
/**
|
|
971
|
+
* Inverts the intersection and bounding rect from the parent (frame) BCR to
|
|
972
|
+
* the local BCR space.
|
|
973
|
+
* @param {DOMRect|ClientRect} parentBoundingRect The parent's bound client rect.
|
|
974
|
+
* @param {DOMRect|ClientRect} parentIntersectionRect The parent's own intersection rect.
|
|
975
|
+
* @return {ClientRect} The local root bounding rect for the parent's children.
|
|
976
|
+
*/
|
|
977
|
+
function convertFromParentRect(parentBoundingRect, parentIntersectionRect) {
|
|
978
|
+
var top = parentIntersectionRect.top - parentBoundingRect.top;
|
|
979
|
+
var left = parentIntersectionRect.left - parentBoundingRect.left;
|
|
980
|
+
return {
|
|
981
|
+
top: top,
|
|
982
|
+
left: left,
|
|
983
|
+
height: parentIntersectionRect.height,
|
|
984
|
+
width: parentIntersectionRect.width,
|
|
985
|
+
bottom: top + parentIntersectionRect.height,
|
|
986
|
+
right: left + parentIntersectionRect.width
|
|
987
|
+
};
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
/**
|
|
992
|
+
* Checks to see if a parent element contains a child element (including inside
|
|
993
|
+
* shadow DOM).
|
|
994
|
+
* @param {Node} parent The parent element.
|
|
995
|
+
* @param {Node} child The child element.
|
|
996
|
+
* @return {boolean} True if the parent node contains the child node.
|
|
997
|
+
*/
|
|
998
|
+
function containsDeep(parent, child) {
|
|
999
|
+
var node = child;
|
|
1000
|
+
while (node) {
|
|
1001
|
+
if (node == parent) return true;
|
|
1002
|
+
|
|
1003
|
+
node = getParentNode(node);
|
|
567
1004
|
}
|
|
568
|
-
|
|
569
|
-
|
|
1005
|
+
return false;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
* Gets the parent node of an element or its host element if the parent node
|
|
1011
|
+
* is a shadow root.
|
|
1012
|
+
* @param {Node} node The node whose parent to get.
|
|
1013
|
+
* @return {Node|null} The parent node or null if no parent exists.
|
|
1014
|
+
*/
|
|
1015
|
+
function getParentNode(node) {
|
|
1016
|
+
var parent = node.parentNode;
|
|
1017
|
+
|
|
1018
|
+
if (node.nodeType == /* DOCUMENT */ 9 && node != document) {
|
|
1019
|
+
// If this node is a document node, look for the embedding frame.
|
|
1020
|
+
return getFrameElement(node);
|
|
570
1021
|
}
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
(function(module) {
|
|
576
|
-
var has = Object.prototype.hasOwnProperty, prefix = "~";
|
|
577
|
-
function Events() {
|
|
1022
|
+
|
|
1023
|
+
// If the parent has element that is assigned through shadow root slot
|
|
1024
|
+
if (parent && parent.assignedSlot) {
|
|
1025
|
+
parent = parent.assignedSlot.parentNode;
|
|
578
1026
|
}
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
1027
|
+
|
|
1028
|
+
if (parent && parent.nodeType == 11 && parent.host) {
|
|
1029
|
+
// If the parent is a shadow root, return the host element.
|
|
1030
|
+
return parent.host;
|
|
583
1031
|
}
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
1032
|
+
|
|
1033
|
+
return parent;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* Returns true if `node` is a Document.
|
|
1038
|
+
* @param {!Node} node
|
|
1039
|
+
* @returns {boolean}
|
|
1040
|
+
*/
|
|
1041
|
+
function isDoc(node) {
|
|
1042
|
+
return node && node.nodeType === 9;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
// Exposes the constructors globally.
|
|
1047
|
+
window.IntersectionObserver = IntersectionObserver;
|
|
1048
|
+
window.IntersectionObserverEntry = IntersectionObserverEntry;
|
|
1049
|
+
|
|
1050
|
+
}());
|
|
1051
|
+
|
|
1052
|
+
var eventemitter3 = {exports: {}};
|
|
1053
|
+
|
|
1054
|
+
(function (module) {
|
|
1055
|
+
|
|
1056
|
+
var has = Object.prototype.hasOwnProperty
|
|
1057
|
+
, prefix = '~';
|
|
1058
|
+
|
|
1059
|
+
/**
|
|
1060
|
+
* Constructor to create a storage for our `EE` objects.
|
|
1061
|
+
* An `Events` instance is a plain object whose properties are event names.
|
|
1062
|
+
*
|
|
1063
|
+
* @constructor
|
|
1064
|
+
* @private
|
|
1065
|
+
*/
|
|
1066
|
+
function Events() {}
|
|
1067
|
+
|
|
1068
|
+
//
|
|
1069
|
+
// We try to not inherit from `Object.prototype`. In some engines creating an
|
|
1070
|
+
// instance in this way is faster than calling `Object.create(null)` directly.
|
|
1071
|
+
// If `Object.create(null)` is not supported we prefix the event names with a
|
|
1072
|
+
// character to make sure that the built-in object properties are not
|
|
1073
|
+
// overridden or used as an attack vector.
|
|
1074
|
+
//
|
|
1075
|
+
if (Object.create) {
|
|
1076
|
+
Events.prototype = Object.create(null);
|
|
1077
|
+
|
|
1078
|
+
//
|
|
1079
|
+
// This hack is needed because the `__proto__` property is still inherited in
|
|
1080
|
+
// some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.
|
|
1081
|
+
//
|
|
1082
|
+
if (!new Events().__proto__) prefix = false;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
/**
|
|
1086
|
+
* Representation of a single event listener.
|
|
1087
|
+
*
|
|
1088
|
+
* @param {Function} fn The listener function.
|
|
1089
|
+
* @param {*} context The context to invoke the listener with.
|
|
1090
|
+
* @param {Boolean} [once=false] Specify if the listener is a one-time listener.
|
|
1091
|
+
* @constructor
|
|
1092
|
+
* @private
|
|
1093
|
+
*/
|
|
1094
|
+
function EE(fn, context, once) {
|
|
1095
|
+
this.fn = fn;
|
|
1096
|
+
this.context = context;
|
|
1097
|
+
this.once = once || false;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
/**
|
|
1101
|
+
* Add a listener for a given event.
|
|
1102
|
+
*
|
|
1103
|
+
* @param {EventEmitter} emitter Reference to the `EventEmitter` instance.
|
|
1104
|
+
* @param {(String|Symbol)} event The event name.
|
|
1105
|
+
* @param {Function} fn The listener function.
|
|
1106
|
+
* @param {*} context The context to invoke the listener with.
|
|
1107
|
+
* @param {Boolean} once Specify if the listener is a one-time listener.
|
|
1108
|
+
* @returns {EventEmitter}
|
|
1109
|
+
* @private
|
|
1110
|
+
*/
|
|
1111
|
+
function addListener(emitter, event, fn, context, once) {
|
|
1112
|
+
if (typeof fn !== 'function') {
|
|
1113
|
+
throw new TypeError('The listener must be a function');
|
|
588
1114
|
}
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
1115
|
+
|
|
1116
|
+
var listener = new EE(fn, context || emitter, once)
|
|
1117
|
+
, evt = prefix ? prefix + event : event;
|
|
1118
|
+
|
|
1119
|
+
if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;
|
|
1120
|
+
else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);
|
|
1121
|
+
else emitter._events[evt] = [emitter._events[evt], listener];
|
|
1122
|
+
|
|
1123
|
+
return emitter;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
/**
|
|
1127
|
+
* Clear event by name.
|
|
1128
|
+
*
|
|
1129
|
+
* @param {EventEmitter} emitter Reference to the `EventEmitter` instance.
|
|
1130
|
+
* @param {(String|Symbol)} evt The Event name.
|
|
1131
|
+
* @private
|
|
1132
|
+
*/
|
|
1133
|
+
function clearEvent(emitter, evt) {
|
|
1134
|
+
if (--emitter._eventsCount === 0) emitter._events = new Events();
|
|
1135
|
+
else delete emitter._events[evt];
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* Minimal `EventEmitter` interface that is molded against the Node.js
|
|
1140
|
+
* `EventEmitter` interface.
|
|
1141
|
+
*
|
|
1142
|
+
* @constructor
|
|
1143
|
+
* @public
|
|
1144
|
+
*/
|
|
1145
|
+
function EventEmitter() {
|
|
1146
|
+
this._events = new Events();
|
|
1147
|
+
this._eventsCount = 0;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
/**
|
|
1151
|
+
* Return an array listing the events for which the emitter has registered
|
|
1152
|
+
* listeners.
|
|
1153
|
+
*
|
|
1154
|
+
* @returns {Array}
|
|
1155
|
+
* @public
|
|
1156
|
+
*/
|
|
1157
|
+
EventEmitter.prototype.eventNames = function eventNames() {
|
|
1158
|
+
var names = []
|
|
1159
|
+
, events
|
|
1160
|
+
, name;
|
|
1161
|
+
|
|
1162
|
+
if (this._eventsCount === 0) return names;
|
|
1163
|
+
|
|
1164
|
+
for (name in (events = this._events)) {
|
|
1165
|
+
if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);
|
|
601
1166
|
}
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
else
|
|
606
|
-
delete emitter._events[evt];
|
|
1167
|
+
|
|
1168
|
+
if (Object.getOwnPropertySymbols) {
|
|
1169
|
+
return names.concat(Object.getOwnPropertySymbols(events));
|
|
607
1170
|
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
1171
|
+
|
|
1172
|
+
return names;
|
|
1173
|
+
};
|
|
1174
|
+
|
|
1175
|
+
/**
|
|
1176
|
+
* Return the listeners registered for a given event.
|
|
1177
|
+
*
|
|
1178
|
+
* @param {(String|Symbol)} event The event name.
|
|
1179
|
+
* @returns {Array} The registered listeners.
|
|
1180
|
+
* @public
|
|
1181
|
+
*/
|
|
1182
|
+
EventEmitter.prototype.listeners = function listeners(event) {
|
|
1183
|
+
var evt = prefix ? prefix + event : event
|
|
1184
|
+
, handlers = this._events[evt];
|
|
1185
|
+
|
|
1186
|
+
if (!handlers) return [];
|
|
1187
|
+
if (handlers.fn) return [handlers.fn];
|
|
1188
|
+
|
|
1189
|
+
for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {
|
|
1190
|
+
ee[i] = handlers[i].fn;
|
|
611
1191
|
}
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
1192
|
+
|
|
1193
|
+
return ee;
|
|
1194
|
+
};
|
|
1195
|
+
|
|
1196
|
+
/**
|
|
1197
|
+
* Return the number of listeners listening to a given event.
|
|
1198
|
+
*
|
|
1199
|
+
* @param {(String|Symbol)} event The event name.
|
|
1200
|
+
* @returns {Number} The number of listeners.
|
|
1201
|
+
* @public
|
|
1202
|
+
*/
|
|
1203
|
+
EventEmitter.prototype.listenerCount = function listenerCount(event) {
|
|
1204
|
+
var evt = prefix ? prefix + event : event
|
|
1205
|
+
, listeners = this._events[evt];
|
|
1206
|
+
|
|
1207
|
+
if (!listeners) return 0;
|
|
1208
|
+
if (listeners.fn) return 1;
|
|
1209
|
+
return listeners.length;
|
|
1210
|
+
};
|
|
1211
|
+
|
|
1212
|
+
/**
|
|
1213
|
+
* Calls each of the listeners registered for a given event.
|
|
1214
|
+
*
|
|
1215
|
+
* @param {(String|Symbol)} event The event name.
|
|
1216
|
+
* @returns {Boolean} `true` if the event had listeners, else `false`.
|
|
1217
|
+
* @public
|
|
1218
|
+
*/
|
|
1219
|
+
EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {
|
|
1220
|
+
var evt = prefix ? prefix + event : event;
|
|
1221
|
+
|
|
1222
|
+
if (!this._events[evt]) return false;
|
|
1223
|
+
|
|
1224
|
+
var listeners = this._events[evt]
|
|
1225
|
+
, len = arguments.length
|
|
1226
|
+
, args
|
|
1227
|
+
, i;
|
|
1228
|
+
|
|
1229
|
+
if (listeners.fn) {
|
|
1230
|
+
if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);
|
|
1231
|
+
|
|
1232
|
+
switch (len) {
|
|
1233
|
+
case 1: return listeners.fn.call(listeners.context), true;
|
|
1234
|
+
case 2: return listeners.fn.call(listeners.context, a1), true;
|
|
1235
|
+
case 3: return listeners.fn.call(listeners.context, a1, a2), true;
|
|
1236
|
+
case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;
|
|
1237
|
+
case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;
|
|
1238
|
+
case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;
|
|
622
1239
|
}
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
var evt = prefix ? prefix + event : event, handlers = this._events[evt];
|
|
627
|
-
if (!handlers)
|
|
628
|
-
return [];
|
|
629
|
-
if (handlers.fn)
|
|
630
|
-
return [handlers.fn];
|
|
631
|
-
for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {
|
|
632
|
-
ee[i] = handlers[i].fn;
|
|
1240
|
+
|
|
1241
|
+
for (i = 1, args = new Array(len -1); i < len; i++) {
|
|
1242
|
+
args[i - 1] = arguments[i];
|
|
633
1243
|
}
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
var
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
};
|
|
644
|
-
EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {
|
|
645
|
-
var evt = prefix ? prefix + event : event;
|
|
646
|
-
if (!this._events[evt])
|
|
647
|
-
return false;
|
|
648
|
-
var listeners = this._events[evt], len = arguments.length, args, i;
|
|
649
|
-
if (listeners.fn) {
|
|
650
|
-
if (listeners.once)
|
|
651
|
-
this.removeListener(event, listeners.fn, void 0, true);
|
|
1244
|
+
|
|
1245
|
+
listeners.fn.apply(listeners.context, args);
|
|
1246
|
+
} else {
|
|
1247
|
+
var length = listeners.length
|
|
1248
|
+
, j;
|
|
1249
|
+
|
|
1250
|
+
for (i = 0; i < length; i++) {
|
|
1251
|
+
if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);
|
|
1252
|
+
|
|
652
1253
|
switch (len) {
|
|
653
|
-
case 1:
|
|
654
|
-
|
|
655
|
-
case
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
case 6:
|
|
664
|
-
return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;
|
|
665
|
-
}
|
|
666
|
-
for (i = 1, args = new Array(len - 1); i < len; i++) {
|
|
667
|
-
args[i - 1] = arguments[i];
|
|
668
|
-
}
|
|
669
|
-
listeners.fn.apply(listeners.context, args);
|
|
670
|
-
} else {
|
|
671
|
-
var length = listeners.length, j;
|
|
672
|
-
for (i = 0; i < length; i++) {
|
|
673
|
-
if (listeners[i].once)
|
|
674
|
-
this.removeListener(event, listeners[i].fn, void 0, true);
|
|
675
|
-
switch (len) {
|
|
676
|
-
case 1:
|
|
677
|
-
listeners[i].fn.call(listeners[i].context);
|
|
678
|
-
break;
|
|
679
|
-
case 2:
|
|
680
|
-
listeners[i].fn.call(listeners[i].context, a1);
|
|
681
|
-
break;
|
|
682
|
-
case 3:
|
|
683
|
-
listeners[i].fn.call(listeners[i].context, a1, a2);
|
|
684
|
-
break;
|
|
685
|
-
case 4:
|
|
686
|
-
listeners[i].fn.call(listeners[i].context, a1, a2, a3);
|
|
687
|
-
break;
|
|
688
|
-
default:
|
|
689
|
-
if (!args)
|
|
690
|
-
for (j = 1, args = new Array(len - 1); j < len; j++) {
|
|
691
|
-
args[j - 1] = arguments[j];
|
|
692
|
-
}
|
|
693
|
-
listeners[i].fn.apply(listeners[i].context, args);
|
|
694
|
-
}
|
|
1254
|
+
case 1: listeners[i].fn.call(listeners[i].context); break;
|
|
1255
|
+
case 2: listeners[i].fn.call(listeners[i].context, a1); break;
|
|
1256
|
+
case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;
|
|
1257
|
+
case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;
|
|
1258
|
+
default:
|
|
1259
|
+
if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {
|
|
1260
|
+
args[j - 1] = arguments[j];
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
listeners[i].fn.apply(listeners[i].context, args);
|
|
695
1264
|
}
|
|
696
1265
|
}
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
return true;
|
|
1269
|
+
};
|
|
1270
|
+
|
|
1271
|
+
/**
|
|
1272
|
+
* Add a listener for a given event.
|
|
1273
|
+
*
|
|
1274
|
+
* @param {(String|Symbol)} event The event name.
|
|
1275
|
+
* @param {Function} fn The listener function.
|
|
1276
|
+
* @param {*} [context=this] The context to invoke the listener with.
|
|
1277
|
+
* @returns {EventEmitter} `this`.
|
|
1278
|
+
* @public
|
|
1279
|
+
*/
|
|
1280
|
+
EventEmitter.prototype.on = function on(event, fn, context) {
|
|
1281
|
+
return addListener(this, event, fn, context, false);
|
|
1282
|
+
};
|
|
1283
|
+
|
|
1284
|
+
/**
|
|
1285
|
+
* Add a one-time listener for a given event.
|
|
1286
|
+
*
|
|
1287
|
+
* @param {(String|Symbol)} event The event name.
|
|
1288
|
+
* @param {Function} fn The listener function.
|
|
1289
|
+
* @param {*} [context=this] The context to invoke the listener with.
|
|
1290
|
+
* @returns {EventEmitter} `this`.
|
|
1291
|
+
* @public
|
|
1292
|
+
*/
|
|
1293
|
+
EventEmitter.prototype.once = function once(event, fn, context) {
|
|
1294
|
+
return addListener(this, event, fn, context, true);
|
|
1295
|
+
};
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* Remove the listeners of a given event.
|
|
1299
|
+
*
|
|
1300
|
+
* @param {(String|Symbol)} event The event name.
|
|
1301
|
+
* @param {Function} fn Only remove the listeners that match this function.
|
|
1302
|
+
* @param {*} context Only remove the listeners that have this context.
|
|
1303
|
+
* @param {Boolean} once Only remove one-time listeners.
|
|
1304
|
+
* @returns {EventEmitter} `this`.
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {
|
|
1308
|
+
var evt = prefix ? prefix + event : event;
|
|
1309
|
+
|
|
1310
|
+
if (!this._events[evt]) return this;
|
|
1311
|
+
if (!fn) {
|
|
1312
|
+
clearEvent(this, evt);
|
|
1313
|
+
return this;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
var listeners = this._events[evt];
|
|
1317
|
+
|
|
1318
|
+
if (listeners.fn) {
|
|
1319
|
+
if (
|
|
1320
|
+
listeners.fn === fn &&
|
|
1321
|
+
(!once || listeners.once) &&
|
|
1322
|
+
(!context || listeners.context === context)
|
|
1323
|
+
) {
|
|
710
1324
|
clearEvent(this, evt);
|
|
711
|
-
return this;
|
|
712
1325
|
}
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
if (
|
|
716
|
-
|
|
1326
|
+
} else {
|
|
1327
|
+
for (var i = 0, events = [], length = listeners.length; i < length; i++) {
|
|
1328
|
+
if (
|
|
1329
|
+
listeners[i].fn !== fn ||
|
|
1330
|
+
(once && !listeners[i].once) ||
|
|
1331
|
+
(context && listeners[i].context !== context)
|
|
1332
|
+
) {
|
|
1333
|
+
events.push(listeners[i]);
|
|
717
1334
|
}
|
|
718
|
-
} else {
|
|
719
|
-
for (var i = 0, events = [], length = listeners.length; i < length; i++) {
|
|
720
|
-
if (listeners[i].fn !== fn || once && !listeners[i].once || context && listeners[i].context !== context) {
|
|
721
|
-
events.push(listeners[i]);
|
|
722
|
-
}
|
|
723
|
-
}
|
|
724
|
-
if (events.length)
|
|
725
|
-
this._events[evt] = events.length === 1 ? events[0] : events;
|
|
726
|
-
else
|
|
727
|
-
clearEvent(this, evt);
|
|
728
|
-
}
|
|
729
|
-
return this;
|
|
730
|
-
};
|
|
731
|
-
EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {
|
|
732
|
-
var evt;
|
|
733
|
-
if (event) {
|
|
734
|
-
evt = prefix ? prefix + event : event;
|
|
735
|
-
if (this._events[evt])
|
|
736
|
-
clearEvent(this, evt);
|
|
737
|
-
} else {
|
|
738
|
-
this._events = new Events();
|
|
739
|
-
this._eventsCount = 0;
|
|
740
1335
|
}
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
{
|
|
748
|
-
module.exports = EventEmitter;
|
|
1336
|
+
|
|
1337
|
+
//
|
|
1338
|
+
// Reset the array, or remove it completely if we have no more listeners.
|
|
1339
|
+
//
|
|
1340
|
+
if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;
|
|
1341
|
+
else clearEvent(this, evt);
|
|
749
1342
|
}
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
753
|
-
var __decorateClass = (decorators, target, key, kind) => {
|
|
754
|
-
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
755
|
-
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
756
|
-
if (decorator = decorators[i])
|
|
757
|
-
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
758
|
-
if (kind && result)
|
|
759
|
-
__defProp2(target, key, result);
|
|
760
|
-
return result;
|
|
1343
|
+
|
|
1344
|
+
return this;
|
|
761
1345
|
};
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
1346
|
+
|
|
1347
|
+
/**
|
|
1348
|
+
* Remove all listeners, or those of the specified event.
|
|
1349
|
+
*
|
|
1350
|
+
* @param {(String|Symbol)} [event] The event name.
|
|
1351
|
+
* @returns {EventEmitter} `this`.
|
|
1352
|
+
* @public
|
|
1353
|
+
*/
|
|
1354
|
+
EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {
|
|
1355
|
+
var evt;
|
|
1356
|
+
|
|
1357
|
+
if (event) {
|
|
1358
|
+
evt = prefix ? prefix + event : event;
|
|
1359
|
+
if (this._events[evt]) clearEvent(this, evt);
|
|
1360
|
+
} else {
|
|
1361
|
+
this._events = new Events();
|
|
1362
|
+
this._eventsCount = 0;
|
|
772
1363
|
}
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
1364
|
+
|
|
1365
|
+
return this;
|
|
1366
|
+
};
|
|
1367
|
+
|
|
1368
|
+
//
|
|
1369
|
+
// Alias methods names because people roll like that.
|
|
1370
|
+
//
|
|
1371
|
+
EventEmitter.prototype.off = EventEmitter.prototype.removeListener;
|
|
1372
|
+
EventEmitter.prototype.addListener = EventEmitter.prototype.on;
|
|
1373
|
+
|
|
1374
|
+
//
|
|
1375
|
+
// Expose the prefix.
|
|
1376
|
+
//
|
|
1377
|
+
EventEmitter.prefixed = prefix;
|
|
1378
|
+
|
|
1379
|
+
//
|
|
1380
|
+
// Allow `EventEmitter` to be imported as module namespace.
|
|
1381
|
+
//
|
|
1382
|
+
EventEmitter.EventEmitter = EventEmitter;
|
|
1383
|
+
|
|
1384
|
+
//
|
|
1385
|
+
// Expose the module.
|
|
1386
|
+
//
|
|
1387
|
+
{
|
|
1388
|
+
module.exports = EventEmitter;
|
|
1389
|
+
}
|
|
1390
|
+
}(eventemitter3));
|
|
1391
|
+
|
|
1392
|
+
var __assign = (undefined && undefined.__assign) || function () {
|
|
1393
|
+
__assign = Object.assign || function(t) {
|
|
1394
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
1395
|
+
s = arguments[i];
|
|
1396
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
1397
|
+
t[p] = s[p];
|
|
782
1398
|
}
|
|
783
|
-
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
if (e.classList.contains("sps-focused-task")) {
|
|
804
|
-
opts.scrollParent = e;
|
|
805
|
-
if (!_PositioningService.registeredScrollParents.has(e)) {
|
|
806
|
-
_PositioningService.registeredScrollParents.add(e);
|
|
807
|
-
e.addEventListener("scroll", _PositioningService.update);
|
|
1399
|
+
return t;
|
|
1400
|
+
};
|
|
1401
|
+
return __assign.apply(this, arguments);
|
|
1402
|
+
};
|
|
1403
|
+
var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
1404
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1405
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
1406
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1407
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1408
|
+
};
|
|
1409
|
+
var __metadata = (undefined && undefined.__metadata) || function (k, v) {
|
|
1410
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
1411
|
+
};
|
|
1412
|
+
var __values = (undefined && undefined.__values) || function(o) {
|
|
1413
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
1414
|
+
if (m) return m.call(o);
|
|
1415
|
+
if (o && typeof o.length === "number") return {
|
|
1416
|
+
next: function () {
|
|
1417
|
+
if (o && i >= o.length) o = void 0;
|
|
1418
|
+
return { value: o && o[i++], done: !o };
|
|
808
1419
|
}
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
throw new Error("You must provide an element for the relativeTo option to position an element.");
|
|
819
|
-
}
|
|
820
|
-
_PositioningService.elements.set(element, opts);
|
|
821
|
-
onNextTick(() => {
|
|
822
|
-
_PositioningService.fixElementPosition(element);
|
|
823
|
-
_PositioningService.viewportObserver.observe(element);
|
|
824
|
-
element.style.visibility = "";
|
|
825
|
-
_PositioningService.checkCollisions(element);
|
|
826
|
-
});
|
|
827
|
-
}
|
|
828
|
-
static release(element) {
|
|
829
|
-
if (_PositioningService.elements.has(element)) {
|
|
830
|
-
_PositioningService.clearStyles(element);
|
|
831
|
-
const options = _PositioningService.elements.get(element);
|
|
832
|
-
if (options.scrollParent) {
|
|
833
|
-
options.scrollParent.removeEventListener("scroll", _PositioningService.update);
|
|
834
|
-
_PositioningService.registeredScrollParents.delete(options.scrollParent);
|
|
835
|
-
}
|
|
836
|
-
_PositioningService.elements.delete(element);
|
|
837
|
-
if (_PositioningService.elements.size === 0) {
|
|
838
|
-
window.removeEventListener("resize", _PositioningService.update);
|
|
839
|
-
window.removeEventListener("scroll", _PositioningService.update);
|
|
840
|
-
}
|
|
841
|
-
_PositioningService.viewportObserver.unobserve(element);
|
|
842
|
-
}
|
|
843
|
-
}
|
|
844
|
-
static releaseAll() {
|
|
845
|
-
for (const element of _PositioningService.elements.keys()) {
|
|
846
|
-
_PositioningService.release(element);
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
|
-
static refresh(element) {
|
|
850
|
-
if (_PositioningService.elements.has(element)) {
|
|
851
|
-
_PositioningService.clearStyles(element);
|
|
852
|
-
_PositioningService.fixElementPosition(element);
|
|
853
|
-
_PositioningService.checkCollisions(element);
|
|
854
|
-
}
|
|
855
|
-
}
|
|
856
|
-
static refreshAll() {
|
|
857
|
-
for (const element of _PositioningService.elements.keys()) {
|
|
858
|
-
_PositioningService.refresh(element);
|
|
1420
|
+
};
|
|
1421
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
1422
|
+
};
|
|
1423
|
+
var __read = (undefined && undefined.__read) || function (o, n) {
|
|
1424
|
+
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
1425
|
+
if (!m) return o;
|
|
1426
|
+
var i = m.call(o), r, ar = [], e;
|
|
1427
|
+
try {
|
|
1428
|
+
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
859
1429
|
}
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
1430
|
+
catch (error) { e = { error: error }; }
|
|
1431
|
+
finally {
|
|
1432
|
+
try {
|
|
1433
|
+
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
1434
|
+
}
|
|
1435
|
+
finally { if (e) throw e.error; }
|
|
866
1436
|
}
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
1437
|
+
return ar;
|
|
1438
|
+
};
|
|
1439
|
+
var NAVBAR_HEIGHT = 60;
|
|
1440
|
+
/**
|
|
1441
|
+
* This class follows a singleton pattern where you can create an instance by calling
|
|
1442
|
+
* `new PositioningService()` if you wish, but all instance methods pass through to
|
|
1443
|
+
* static methods, so there's really only one set of elements being positioned that's
|
|
1444
|
+
* shared between all instances and static usages of PositioningService.
|
|
1445
|
+
*/
|
|
1446
|
+
var PositioningService = /** @class */ (function () {
|
|
1447
|
+
function PositioningService() {
|
|
875
1448
|
}
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
_PositioningService.events.emit("elementIntersection", { target, intersectingWith });
|
|
879
|
-
}
|
|
880
|
-
static getRootBounds() {
|
|
881
|
-
const rootWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
|
|
882
|
-
const rootHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
|
|
883
|
-
return {
|
|
884
|
-
x: 0,
|
|
885
|
-
y: NAVBAR_HEIGHT,
|
|
886
|
-
left: 0,
|
|
887
|
-
top: NAVBAR_HEIGHT,
|
|
888
|
-
right: rootWidth,
|
|
889
|
-
bottom: rootHeight,
|
|
890
|
-
height: rootHeight - NAVBAR_HEIGHT,
|
|
891
|
-
width: rootWidth
|
|
1449
|
+
PositioningService.on = function (eventName, handler) {
|
|
1450
|
+
PositioningService.events.on(eventName, handler);
|
|
892
1451
|
};
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
position: "fixed",
|
|
918
|
-
zIndex: opts.zIndex || ""
|
|
919
|
-
});
|
|
920
|
-
let top;
|
|
921
|
-
let left;
|
|
922
|
-
const positionRelativeToTarget = opts.position.split(" ");
|
|
923
|
-
const offsetA = opts.offsets[0] || 0;
|
|
924
|
-
const offsetB = opts.offsets[1] || 0;
|
|
925
|
-
top = 0;
|
|
926
|
-
left = 0;
|
|
927
|
-
switch (positionRelativeToTarget[0]) {
|
|
928
|
-
case "top":
|
|
929
|
-
top = relativeTargetBounds.top - positionedElementBounds.height - offsetA;
|
|
930
|
-
break;
|
|
931
|
-
case "left":
|
|
932
|
-
left = relativeTargetBounds.left - width - offsetA;
|
|
933
|
-
break;
|
|
934
|
-
case "right":
|
|
935
|
-
left = relativeTargetBounds.right + offsetA;
|
|
936
|
-
break;
|
|
937
|
-
case "bottom":
|
|
938
|
-
top = relativeTargetBounds.bottom + offsetA;
|
|
939
|
-
break;
|
|
940
|
-
default:
|
|
941
|
-
throw new Error(`${opts.position} is not a valid position`);
|
|
942
|
-
}
|
|
943
|
-
switch (positionRelativeToTarget[1]) {
|
|
944
|
-
case "left":
|
|
945
|
-
left = relativeTargetBounds.left - offsetB;
|
|
946
|
-
break;
|
|
947
|
-
case "top":
|
|
948
|
-
top = relativeTargetBounds.top - offsetB;
|
|
949
|
-
break;
|
|
950
|
-
case "middle":
|
|
951
|
-
if (positionRelativeToTarget[0] === "top" || positionRelativeToTarget[0] === "bottom") {
|
|
952
|
-
left = relativeTargetBounds.left + relativeTargetBounds.width / 2 - width / 2 + offsetB;
|
|
953
|
-
} else if (positionRelativeToTarget[0] === "left" || positionRelativeToTarget[0] === "right") {
|
|
954
|
-
top = relativeTargetBounds.top + relativeTargetBounds.height / 2 - positionedElementBounds.height / 2 + offsetB;
|
|
1452
|
+
PositioningService.off = function (eventName, handler) {
|
|
1453
|
+
PositioningService.events.off(eventName, handler);
|
|
1454
|
+
};
|
|
1455
|
+
PositioningService.once = function (eventName, handler) {
|
|
1456
|
+
PositioningService.events.once(eventName, handler);
|
|
1457
|
+
};
|
|
1458
|
+
PositioningService.checkCollisions = function (element, otherElements) {
|
|
1459
|
+
var e_1, _a;
|
|
1460
|
+
var otherElementsList = otherElements || Array.from(PositioningService.elements.keys());
|
|
1461
|
+
var bounds = element.getBoundingClientRect();
|
|
1462
|
+
var collisions = [];
|
|
1463
|
+
try {
|
|
1464
|
+
for (var otherElementsList_1 = __values(otherElementsList), otherElementsList_1_1 = otherElementsList_1.next(); !otherElementsList_1_1.done; otherElementsList_1_1 = otherElementsList_1.next()) {
|
|
1465
|
+
var otherElement = otherElementsList_1_1.value;
|
|
1466
|
+
if (otherElement !== element) {
|
|
1467
|
+
var otherBounds = otherElement.getBoundingClientRect();
|
|
1468
|
+
if (otherBounds.left <= bounds.right
|
|
1469
|
+
&& otherBounds.right >= bounds.left
|
|
1470
|
+
&& otherBounds.top <= bounds.bottom
|
|
1471
|
+
&& otherBounds.bottom >= bounds.top) {
|
|
1472
|
+
collisions.push(otherElement);
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
955
1476
|
}
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
1477
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
1478
|
+
finally {
|
|
1479
|
+
try {
|
|
1480
|
+
if (otherElementsList_1_1 && !otherElementsList_1_1.done && (_a = otherElementsList_1.return)) _a.call(otherElementsList_1);
|
|
1481
|
+
}
|
|
1482
|
+
finally { if (e_1) throw e_1.error; }
|
|
1483
|
+
}
|
|
1484
|
+
if (collisions.length) {
|
|
1485
|
+
PositioningService.onElementIntersection(element, collisions);
|
|
1486
|
+
}
|
|
1487
|
+
};
|
|
1488
|
+
/**
|
|
1489
|
+
* Returns `true` if the element is currently being positioned by the service
|
|
1490
|
+
* and `false` otherwise.
|
|
1491
|
+
*/
|
|
1492
|
+
PositioningService.isPositioned = function (element) {
|
|
1493
|
+
return PositioningService.elements.has(element);
|
|
1494
|
+
};
|
|
1495
|
+
/**
|
|
1496
|
+
* Returns the options currently beinng used for positioning the element,
|
|
1497
|
+
* if it is indeed being positioned by the service.
|
|
1498
|
+
*/
|
|
1499
|
+
PositioningService.getPositioningOptions = function (element) {
|
|
1500
|
+
if (PositioningService.elements.has(element)) {
|
|
1501
|
+
return PositioningService.elements.get(element);
|
|
1502
|
+
}
|
|
1503
|
+
return null;
|
|
1504
|
+
};
|
|
1505
|
+
/** PositioningService will start controlling the position of the given element. */
|
|
1506
|
+
PositioningService.position = function (element, options) {
|
|
1507
|
+
if (options === void 0) { options = {}; }
|
|
1508
|
+
var opts = __assign(__assign({}, DEFAULT_POSITIONING_OPTIONS), options);
|
|
1509
|
+
var e = element;
|
|
1510
|
+
while (e !== document.body) {
|
|
1511
|
+
e = e.parentElement;
|
|
1512
|
+
if (e.classList.contains("sps-focused-task")) {
|
|
1513
|
+
opts.scrollParent = e;
|
|
1514
|
+
if (!PositioningService.registeredScrollParents.has(e)) {
|
|
1515
|
+
PositioningService.registeredScrollParents.add(e);
|
|
1516
|
+
e.addEventListener("scroll", PositioningService.update);
|
|
1517
|
+
}
|
|
1518
|
+
break;
|
|
1519
|
+
}
|
|
1520
|
+
}
|
|
1521
|
+
// eslint-disable-next-line no-param-reassign
|
|
1522
|
+
element.style.visibility = "hidden";
|
|
1523
|
+
if (PositioningService.elements.size === 0) {
|
|
1524
|
+
window.addEventListener("resize", PositioningService.update);
|
|
1525
|
+
window.addEventListener("scroll", PositioningService.update);
|
|
1526
|
+
}
|
|
1527
|
+
if (!opts.relativeTo) {
|
|
1528
|
+
throw new Error("You must provide an element for the relativeTo option to position an element.");
|
|
1529
|
+
}
|
|
1530
|
+
PositioningService.elements.set(element, opts);
|
|
1531
|
+
onNextTick(function () {
|
|
1532
|
+
PositioningService.fixElementPosition(element);
|
|
1533
|
+
PositioningService.viewportObserver.observe(element);
|
|
1534
|
+
// eslint-disable-next-line no-param-reassign
|
|
1535
|
+
element.style.visibility = "";
|
|
1536
|
+
PositioningService.checkCollisions(element);
|
|
987
1537
|
});
|
|
988
|
-
|
|
989
|
-
|
|
1538
|
+
};
|
|
1539
|
+
/** PositioningService will stop controlling the position of the given element. */
|
|
1540
|
+
PositioningService.release = function (element) {
|
|
1541
|
+
if (PositioningService.elements.has(element)) {
|
|
1542
|
+
PositioningService.clearStyles(element);
|
|
1543
|
+
var options = PositioningService.elements.get(element);
|
|
1544
|
+
if (options.scrollParent) {
|
|
1545
|
+
options.scrollParent.removeEventListener("scroll", PositioningService.update);
|
|
1546
|
+
PositioningService.registeredScrollParents.delete(options.scrollParent);
|
|
1547
|
+
}
|
|
1548
|
+
PositioningService.elements.delete(element);
|
|
1549
|
+
if (PositioningService.elements.size === 0) {
|
|
1550
|
+
window.removeEventListener("resize", PositioningService.update);
|
|
1551
|
+
window.removeEventListener("scroll", PositioningService.update);
|
|
1552
|
+
}
|
|
1553
|
+
PositioningService.viewportObserver.unobserve(element);
|
|
1554
|
+
}
|
|
1555
|
+
};
|
|
1556
|
+
PositioningService.releaseAll = function () {
|
|
1557
|
+
var e_2, _a;
|
|
1558
|
+
try {
|
|
1559
|
+
for (var _b = __values(PositioningService.elements.keys()), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
1560
|
+
var element = _c.value;
|
|
1561
|
+
PositioningService.release(element);
|
|
1562
|
+
}
|
|
1563
|
+
}
|
|
1564
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
1565
|
+
finally {
|
|
1566
|
+
try {
|
|
1567
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
1568
|
+
}
|
|
1569
|
+
finally { if (e_2) throw e_2.error; }
|
|
1570
|
+
}
|
|
1571
|
+
};
|
|
1572
|
+
/** PositioningService will refresh the positioning of the given element */
|
|
1573
|
+
PositioningService.refresh = function (element) {
|
|
1574
|
+
if (PositioningService.elements.has(element)) {
|
|
1575
|
+
PositioningService.clearStyles(element);
|
|
1576
|
+
PositioningService.fixElementPosition(element);
|
|
1577
|
+
PositioningService.checkCollisions(element);
|
|
1578
|
+
}
|
|
1579
|
+
};
|
|
1580
|
+
PositioningService.refreshAll = function () {
|
|
1581
|
+
var e_3, _a;
|
|
1582
|
+
try {
|
|
1583
|
+
for (var _b = __values(PositioningService.elements.keys()), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
1584
|
+
var element = _c.value;
|
|
1585
|
+
PositioningService.refresh(element);
|
|
1586
|
+
}
|
|
1587
|
+
}
|
|
1588
|
+
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
1589
|
+
finally {
|
|
1590
|
+
try {
|
|
1591
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
1592
|
+
}
|
|
1593
|
+
finally { if (e_3) throw e_3.error; }
|
|
1594
|
+
}
|
|
1595
|
+
};
|
|
1596
|
+
/** Update the positioning options of a currently positioned element */
|
|
1597
|
+
PositioningService.reposition = function (element, newOptions) {
|
|
1598
|
+
if (PositioningService.elements.has(element)) {
|
|
1599
|
+
var options = PositioningService.elements.get(element);
|
|
1600
|
+
PositioningService.elements.set(element, Object.assign(options, newOptions));
|
|
1601
|
+
PositioningService.refresh(element);
|
|
1602
|
+
}
|
|
1603
|
+
};
|
|
1604
|
+
PositioningService.onViewportIntersection = function (entries) {
|
|
1605
|
+
var e_4, _a;
|
|
1606
|
+
var _loop_1 = function (entry) {
|
|
1607
|
+
/*
|
|
1608
|
+
* This is how you make a copy of an IntersectionObserverEntry that
|
|
1609
|
+
* you can modify; it's read-only and incompatible with simply using
|
|
1610
|
+
* destructuring or Object.assign. Before sending it out we make the
|
|
1611
|
+
* copy read-only by passing it to Object.freeze
|
|
1612
|
+
*/
|
|
1613
|
+
var entryCopy = Object.keys(IntersectionObserverEntry.prototype).reduce(function (copy, key) {
|
|
1614
|
+
var _a;
|
|
1615
|
+
return (__assign(__assign({}, copy), (_a = {}, _a[key] = entry[key], _a)));
|
|
1616
|
+
}, {});
|
|
1617
|
+
entryCopy.rootBounds = entryCopy.rootBounds || PositioningService.getRootBounds();
|
|
1618
|
+
PositioningService.events.emit("viewportIntersection", Object.freeze(entryCopy));
|
|
1619
|
+
};
|
|
1620
|
+
try {
|
|
1621
|
+
for (var entries_1 = __values(entries), entries_1_1 = entries_1.next(); !entries_1_1.done; entries_1_1 = entries_1.next()) {
|
|
1622
|
+
var entry = entries_1_1.value;
|
|
1623
|
+
_loop_1(entry);
|
|
1624
|
+
}
|
|
1625
|
+
}
|
|
1626
|
+
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
1627
|
+
finally {
|
|
1628
|
+
try {
|
|
1629
|
+
if (entries_1_1 && !entries_1_1.done && (_a = entries_1.return)) _a.call(entries_1);
|
|
1630
|
+
}
|
|
1631
|
+
finally { if (e_4) throw e_4.error; }
|
|
1632
|
+
}
|
|
1633
|
+
};
|
|
1634
|
+
PositioningService.onElementIntersection = function (target, intersectingWith) {
|
|
1635
|
+
PositioningService.events.emit("elementIntersection", { target: target, intersectingWith: intersectingWith });
|
|
1636
|
+
};
|
|
1637
|
+
PositioningService.getRootBounds = function () {
|
|
1638
|
+
var rootWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
|
|
1639
|
+
var rootHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
|
|
1640
|
+
return {
|
|
1641
|
+
x: 0,
|
|
1642
|
+
y: NAVBAR_HEIGHT,
|
|
1643
|
+
left: 0,
|
|
1644
|
+
top: NAVBAR_HEIGHT,
|
|
1645
|
+
right: rootWidth,
|
|
1646
|
+
bottom: rootHeight,
|
|
1647
|
+
height: rootHeight - NAVBAR_HEIGHT,
|
|
1648
|
+
width: rootWidth,
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
PositioningService.clearStyles = function (element) {
|
|
990
1652
|
Object.assign(element.style, {
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
1653
|
+
position: "",
|
|
1654
|
+
width: "",
|
|
1655
|
+
top: "",
|
|
1656
|
+
left: "",
|
|
1657
|
+
right: "",
|
|
1658
|
+
bottom: "",
|
|
1659
|
+
visibility: "",
|
|
1660
|
+
zIndex: "",
|
|
995
1661
|
});
|
|
996
|
-
|
|
997
|
-
|
|
1662
|
+
};
|
|
1663
|
+
PositioningService.fixElementPosition = function (element, options) {
|
|
1664
|
+
if (!this.elements.has(element)) {
|
|
1665
|
+
return;
|
|
1666
|
+
}
|
|
1667
|
+
var opts = options || this.elements.get(element);
|
|
1668
|
+
var rootBounds = this.getRootBounds();
|
|
1669
|
+
var positionedElementBounds = element.getBoundingClientRect();
|
|
1670
|
+
var relativeTargetBounds = opts.relativeTo.getBoundingClientRect();
|
|
1671
|
+
var width = (opts.useRelativeTargetWidth
|
|
1672
|
+
? relativeTargetBounds
|
|
1673
|
+
: positionedElementBounds).width;
|
|
998
1674
|
Object.assign(element.style, {
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
right: rightPx
|
|
1675
|
+
minWidth: width + "px",
|
|
1676
|
+
position: "fixed",
|
|
1677
|
+
zIndex: opts.zIndex || "",
|
|
1003
1678
|
});
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1679
|
+
var top;
|
|
1680
|
+
var left;
|
|
1681
|
+
var positionRelativeToTarget = opts.position.split(" ");
|
|
1682
|
+
var offsetA = opts.offsets[0] || 0;
|
|
1683
|
+
var offsetB = opts.offsets[1] || 0;
|
|
1684
|
+
top = 0;
|
|
1685
|
+
left = 0;
|
|
1686
|
+
switch (positionRelativeToTarget[0]) {
|
|
1687
|
+
case "top":
|
|
1688
|
+
top = relativeTargetBounds.top - positionedElementBounds.height - offsetA;
|
|
1689
|
+
break;
|
|
1690
|
+
case "left":
|
|
1691
|
+
left = relativeTargetBounds.left - width - offsetA;
|
|
1692
|
+
break;
|
|
1693
|
+
case "right":
|
|
1694
|
+
left = relativeTargetBounds.right + offsetA;
|
|
1695
|
+
break;
|
|
1696
|
+
case "bottom":
|
|
1697
|
+
top = relativeTargetBounds.bottom + offsetA;
|
|
1698
|
+
break;
|
|
1699
|
+
default:
|
|
1700
|
+
throw new Error(opts.position + " is not a valid position");
|
|
1701
|
+
}
|
|
1702
|
+
switch (positionRelativeToTarget[1]) {
|
|
1703
|
+
case "left":
|
|
1704
|
+
left = relativeTargetBounds.left - offsetB;
|
|
1705
|
+
break;
|
|
1706
|
+
case "top":
|
|
1707
|
+
top = relativeTargetBounds.top - offsetB;
|
|
1708
|
+
break;
|
|
1709
|
+
case "middle":
|
|
1710
|
+
if (positionRelativeToTarget[0] === "top"
|
|
1711
|
+
|| positionRelativeToTarget[0] === "bottom") {
|
|
1712
|
+
left = relativeTargetBounds.left
|
|
1713
|
+
+ (relativeTargetBounds.width / 2)
|
|
1714
|
+
- (width / 2)
|
|
1715
|
+
+ offsetB;
|
|
1716
|
+
}
|
|
1717
|
+
else if (positionRelativeToTarget[0] === "left"
|
|
1718
|
+
|| positionRelativeToTarget[0] === "right") {
|
|
1719
|
+
top = relativeTargetBounds.top
|
|
1720
|
+
+ (relativeTargetBounds.height / 2)
|
|
1721
|
+
- (positionedElementBounds.height / 2)
|
|
1722
|
+
+ offsetB;
|
|
1723
|
+
}
|
|
1724
|
+
break;
|
|
1725
|
+
case "bottom":
|
|
1726
|
+
top = relativeTargetBounds.bottom - positionedElementBounds.height + offsetB;
|
|
1727
|
+
break;
|
|
1728
|
+
case "right":
|
|
1729
|
+
left = relativeTargetBounds.right - width + offsetB;
|
|
1730
|
+
break;
|
|
1731
|
+
default:
|
|
1732
|
+
throw new Error(opts.position + " is not a valid position");
|
|
1733
|
+
}
|
|
1734
|
+
var bottom = top + positionedElementBounds.height;
|
|
1735
|
+
var right = left + positionedElementBounds.width;
|
|
1736
|
+
var topPx = Math.round(top) + "px";
|
|
1737
|
+
var bottomPx = Math.round(rootBounds.bottom - bottom) + "px";
|
|
1738
|
+
var leftPx = Math.round(left) + "px";
|
|
1739
|
+
var rightPx = Math.round(rootBounds.right - right) + "px";
|
|
1740
|
+
switch (opts.anchor) {
|
|
1741
|
+
case PositionAnchor.TOP_LEFT:
|
|
1742
|
+
Object.assign(element.style, {
|
|
1743
|
+
top: topPx,
|
|
1744
|
+
bottom: "auto",
|
|
1745
|
+
left: leftPx,
|
|
1746
|
+
right: "auto",
|
|
1747
|
+
});
|
|
1748
|
+
break;
|
|
1749
|
+
case PositionAnchor.TOP_RIGHT:
|
|
1750
|
+
Object.assign(element.style, {
|
|
1751
|
+
top: topPx,
|
|
1752
|
+
bottom: "auto",
|
|
1753
|
+
left: "auto",
|
|
1754
|
+
right: rightPx,
|
|
1755
|
+
});
|
|
1756
|
+
break;
|
|
1757
|
+
case PositionAnchor.BOTTOM_LEFT:
|
|
1758
|
+
Object.assign(element.style, {
|
|
1759
|
+
top: "auto",
|
|
1760
|
+
bottom: bottomPx,
|
|
1761
|
+
left: leftPx,
|
|
1762
|
+
right: "auto",
|
|
1763
|
+
});
|
|
1764
|
+
break;
|
|
1765
|
+
case PositionAnchor.BOTTOM_RIGHT:
|
|
1766
|
+
Object.assign(element.style, {
|
|
1767
|
+
top: "auto",
|
|
1768
|
+
bottom: bottomPx,
|
|
1769
|
+
left: "auto",
|
|
1770
|
+
right: rightPx,
|
|
1771
|
+
});
|
|
1772
|
+
break;
|
|
1773
|
+
// no default
|
|
1774
|
+
}
|
|
1775
|
+
};
|
|
1776
|
+
PositioningService.update = function (event) {
|
|
1777
|
+
var e_5, _a;
|
|
1778
|
+
var elements = PositioningService.elements.entries();
|
|
1779
|
+
var updatedElements = [];
|
|
1780
|
+
try {
|
|
1781
|
+
for (var elements_1 = __values(elements), elements_1_1 = elements_1.next(); !elements_1_1.done; elements_1_1 = elements_1.next()) {
|
|
1782
|
+
var _b = __read(elements_1_1.value, 2), element = _b[0], options = _b[1];
|
|
1783
|
+
if (!event
|
|
1784
|
+
|| event.target === document
|
|
1785
|
+
|| event.target === options.scrollParent
|
|
1786
|
+
|| event.target === window) {
|
|
1787
|
+
PositioningService.fixElementPosition(element, options);
|
|
1788
|
+
PositioningService.checkCollisions(element, updatedElements);
|
|
1789
|
+
updatedElements.push(element);
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1792
|
+
}
|
|
1793
|
+
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
1794
|
+
finally {
|
|
1795
|
+
try {
|
|
1796
|
+
if (elements_1_1 && !elements_1_1.done && (_a = elements_1.return)) _a.call(elements_1);
|
|
1797
|
+
}
|
|
1798
|
+
finally { if (e_5) throw e_5.error; }
|
|
1799
|
+
}
|
|
1800
|
+
};
|
|
1801
|
+
/* eslint class-methods-use-this: "off" */
|
|
1802
|
+
PositioningService.prototype.on = function (eventName, handler) {
|
|
1803
|
+
PositioningService.on(eventName, handler);
|
|
1804
|
+
};
|
|
1805
|
+
PositioningService.prototype.off = function (eventName, handler) {
|
|
1806
|
+
PositioningService.off(eventName, handler);
|
|
1807
|
+
};
|
|
1808
|
+
PositioningService.prototype.once = function (eventName, handler) {
|
|
1809
|
+
PositioningService.once(eventName, handler);
|
|
1810
|
+
};
|
|
1811
|
+
PositioningService.prototype.isPositioned = function (element) {
|
|
1812
|
+
return PositioningService.isPositioned(element);
|
|
1813
|
+
};
|
|
1814
|
+
PositioningService.prototype.getPositioningOptions = function (element) {
|
|
1815
|
+
return PositioningService.getPositioningOptions(element);
|
|
1816
|
+
};
|
|
1817
|
+
PositioningService.prototype.position = function (element, options) {
|
|
1818
|
+
if (options === void 0) { options = {}; }
|
|
1819
|
+
PositioningService.position(element, options);
|
|
1820
|
+
};
|
|
1821
|
+
PositioningService.prototype.release = function (element) {
|
|
1822
|
+
PositioningService.release(element);
|
|
1823
|
+
};
|
|
1824
|
+
PositioningService.prototype.releaseAll = function () {
|
|
1825
|
+
PositioningService.releaseAll();
|
|
1826
|
+
};
|
|
1827
|
+
PositioningService.prototype.refresh = function (element) {
|
|
1828
|
+
PositioningService.refresh(element);
|
|
1829
|
+
};
|
|
1830
|
+
PositioningService.prototype.refreshAll = function () {
|
|
1831
|
+
PositioningService.refreshAll();
|
|
1832
|
+
};
|
|
1833
|
+
PositioningService.prototype.reposition = function (element, newOptions) {
|
|
1834
|
+
PositioningService.reposition(element, newOptions);
|
|
1835
|
+
};
|
|
1836
|
+
PositioningService.elements = new Map();
|
|
1837
|
+
PositioningService.registeredScrollParents = new Set();
|
|
1838
|
+
PositioningService.events = new eventemitter3.exports.EventEmitter();
|
|
1839
|
+
PositioningService.viewportObserver = new IntersectionObserver(PositioningService.onViewportIntersection, {
|
|
1840
|
+
rootMargin: "-" + NAVBAR_HEIGHT + "px 0px 0px",
|
|
1841
|
+
threshold: 1,
|
|
1842
|
+
});
|
|
1843
|
+
__decorate([
|
|
1844
|
+
lockedToAnimationFrames,
|
|
1845
|
+
__metadata("design:type", Function),
|
|
1846
|
+
__metadata("design:paramtypes", [Event]),
|
|
1847
|
+
__metadata("design:returntype", void 0)
|
|
1848
|
+
], PositioningService, "update", null);
|
|
1849
|
+
return PositioningService;
|
|
1850
|
+
}());
|
|
1851
|
+
|
|
1063
1852
|
export { DEFAULT_POSITIONING_OPTIONS, Position, PositionAnchor, PositioningService };
|