-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbsp-utils.js
412 lines (326 loc) · 12.8 KB
/
bsp-utils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
import $ from 'jquery';
var bsp_utils = { };
// Throttles execution of a function.
(function() {
bsp_utils.throttle = function(interval, throttledFunction) {
if (interval <= 0) {
return throttledFunction;
}
var lastTrigger = 0;
var timeout;
var lastArguments;
return function() {
lastArguments = arguments;
// Already scheduled to run.
if (timeout) {
return;
}
var context = this;
var now = +$.now();
var delay = interval - now + lastTrigger;
// Waited long enough so execute.
if (delay <= 0) {
lastTrigger = now;
throttledFunction.apply(context, lastArguments);
// Schedule for later.
} else {
timeout = setTimeout(function() {
lastTrigger = now;
timeout = null;
throttledFunction.apply(context, lastArguments);
}, delay);
}
};
};
})();
/** Debounces (postpones) execution of a function.
* Returns a function, that, as long as it continues to be invoked, will not
* be triggered. The function will be called after it stops being called for
* N milliseconds. If `immediate` is passed, trigger the function on the
* leading edge, instead of the trailing.
*/
(function() {
bsp_utils.debounce = function(wait, debouncedFunction, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) debouncedFunction.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) debouncedFunction.apply(context, args);
};
};
})();
// Detects inserts into the DOM.
(function() {
var domInserts = [ ];
var insertedClassNamePrefix = 'bsp-onDomInsert-inserted-';
var insertedClassNameIndex = 0;
var blacklistedElements = [ ];
// Execute all callbacks on any new elements.
function doDomInsert(domInsert) {
var insertedClassName = domInsert.insertedClassName;
// filter for anything that has already been initialized
var $items = domInsert.$roots.find(domInsert.selector).filter(':not(.' + insertedClassName + ')');
// also filter for things that are not hidden, we do not want to inialize those
$items = $items.filter(':not(.hidden)');
// go through each of the items and make sure they are not in a hidden element, get those out of there
$items.each(function() {
if($(this).parents('.hidden').length) {
$items = $items.not($(this));
}
});
if ($items.length > 0) {
$items.addClass(insertedClassName);
var callbacks = domInsert.callbacks;
var beforeInsert = callbacks.beforeInsert;
var insert = callbacks.insert;
var afterInsert = callbacks.afterInsert;
if (beforeInsert) {
beforeInsert($.makeArray($items));
}
if (insert) {
$items.each(function() {
insert(this);
});
}
if (afterInsert) {
afterInsert($.makeArray($items));
}
}
}
bsp_utils.onDomInsert = function(roots, selector, callbacks) {
var insertedClassName = insertedClassNamePrefix + insertedClassNameIndex;
++ insertedClassNameIndex ;
var domInsert = {
'$roots': $(roots),
'insertedClassName': insertedClassName,
'selector': selector,
'callbacks': callbacks
};
// Execute callbacks on already existing elements first.
$(document).ready(function() {
doDomInsert(domInsert);
});
domInserts.push(domInsert);
};
bsp_utils.addDomInsertBlacklist = function(element) {
if (!element) {
return;
}
if (!(element instanceof HTMLElement || element instanceof HTMLUnknownElement)) {
return;
}
if (blacklistedElements.indexOf(element) === -1) {
blacklistedElements.push(element);
}
};
// Try to detect DOM mutations efficiently.
var mutationObserver = window.MutationObserver || window.WebKitMutationObserver;
function redoAllDomInserts() {
$.each(domInserts, function(i, domInsert) {
doDomInsert(domInsert);
});
}
var mutationCallback = bsp_utils.throttle(1, redoAllDomInserts);
$(document).ready(function() {
if (mutationObserver) {
new mutationObserver(function(mutations, instance) {
if (!mutations) {
return;
}
var avoid = true;
var i;
var il;
var j;
var jl;
// Try to avoid calling redoAllDomInserts.
OPTIMIZE: for (i = 0, il = mutations.length; i < il; i += 1) {
var mutation = mutations[i];
var addedNodes = mutation.addedNodes;
// If no nodes were added, check next.
if (addedNodes.length === 0) {
continue;
}
var target = mutation.target;
// If the target of the mutation event is on the
// blacklist, check next.
if (blacklistedElements.indexOf(target) !== -1) {
continue;
}
// If the target of the mutation event is contained
// within any element on the blacklist, check next.
for (j = 0, jl = blacklistedElements.length; j < jl; j += 1) {
if (blacklistedElements[j].contains(target)) {
continue OPTIMIZE;
}
}
// Finally, if there are added nodes and the target
// isn't on the blacklist, redoAllDomInserts can
// still be avoided if all of the addedNodes are Text.
for (j = 0, jl = addedNodes.length; j < jl; j += 1) {
if (!(addedNodes[j] instanceof Text)) {
avoid = false;
break OPTIMIZE;
}
}
}
if (!avoid) {
mutationCallback.call();
}
}).observe(document, {
'childList': true,
'subtree': true
});
// But if not available, brute-force it.
} else {
setInterval(redoAllDomInserts, 1000 / 60);
}
});
})();
// Defines a plugin.
(function() {
var NOT_WHITE_RE = /\S+/g;
var OPTIONS_DATA_KEY = '_options';
var $d = $(document);
bsp_utils.plugin = function(globals, namespace, name, actions) {
var plugin = actions || { };
plugin._name = namespace + '_' + name;
plugin._classNamePrefix = namespace + '-' + name + '-';
plugin._rootClassName = plugin._classNamePrefix + 'root';
plugin._itemClassName = plugin._classNamePrefix + 'item';
// Event handling.
function renameEvents(events) {
return $.map(events.match(NOT_WHITE_RE), function(s) {
return s + '.' + plugin._name;
}).join(' ');
}
plugin._on = function(elements, events, selectorOrHandler, dataOrHandler, handler) {
var $elements = $(elements);
events = renameEvents(events);
if (handler) {
$elements.on(events, selectorOrHandler, dataOrHandler, handler);
} else if (dataOrHandler) {
$elements.on(events, selectorOrHandler, dataOrHandler);
} else {
$elements.on(events, selectorOrHandler);
}
};
plugin._off = function(elements, events, selector) {
var $elements = $(elements);
if (selector) {
$elements.off(renameEvents(events), selector);
} else if (events) {
$elements.off(renameEvents(events));
} else {
$elements.off('.' + plugin._name);
}
};
// Private data.
plugin._dataKeyPrefix = namespace + '-' + name + '-';
plugin._data = function(elements, key, value) {
var $elements = $(elements);
if ($elements.length === 0) {
return null;
} else {
key = plugin._dataKeyPrefix + key;
if (value === undefined) {
return $.data($elements[0], key);
} else {
return $elements.each(function() {
$.data(this, key, value);
});
}
}
};
// Options.
plugin.option = function(elements, key, value) {
var plugin = this;
if (typeof key === 'undefined') {
return plugin._data(elements, OPTIONS_DATA_KEY) || { };
} else if (typeof value === 'undefined') {
return (plugin._data(elements, OPTIONS_DATA_KEY) || { })[key];
} else {
$(elements).each(function() {
var options = plugin._data(this, OPTIONS_DATA_KEY);
if (!options) {
options = { };
plugin._data(this, OPTIONS_DATA_KEY, options);
}
options[key] = value;
});
return null;
}
};
plugin._attrName = 'data-' + namespace + '-' + name;
plugin._attrNamePrefix = plugin._attrName + '-';
plugin._optionsAttrName = plugin._attrNamePrefix + 'options';
function updateOptions($element, parentOptions) {
var elementOptions = $element.attr(plugin._optionsAttrName);
plugin._data($element[0], OPTIONS_DATA_KEY, elementOptions ?
$.extend(true, { }, parentOptions, $.parseJSON(elementOptions)) :
parentOptions);
}
// Initialization.
plugin.live = function(roots, selector, options) {
var $roots = $(roots);
if ($roots.length === 0) {
return;
}
// Update root options.
$roots.each(function() {
var $rootElement = this.nodeType === 9 ? $(this.documentElement) : $(this);
$rootElement.addClass(plugin._rootClassName);
updateOptions($rootElement, $.extend(true, { }, plugin._defaultOptions, options));
});
var init = plugin._init;
var each = plugin._each;
var all = plugin._all;
if (init) {
init.call(plugin, $.makeArray($roots), selector);
}
if (each || all) {
if (selector) {
bsp_utils.onDomInsert($.makeArray($roots), selector, {
'insert': function(item) {
var $item = $(item).filter(':not(.hidden)');
var rootOptions = plugin.option($item.closest('.' + plugin._rootClassName));
// if we are hidden or one of our parent is hidden
if ($item.parents('.hidden').length || !$item.length) {
return;
}
$item.addClass(plugin._itemClassName);
updateOptions($item, rootOptions);
if (each) {
each.call(plugin, item);
}
},
'afterInsert': !all ? $.noop : function(items) {
all.call(plugin, items);
}
});
}
}
};
plugin.init = function(elements, options) {
plugin.live(elements, null, options);
};
// One-time installation callback.
if (plugin._install) {
plugin._install();
}
// Automatically initialize.
$d.ready(function() {
plugin.live(document, '[' + plugin._attrName + ']');
});
if (globals) {
globals[plugin._name] = plugin;
}
return plugin;
};
})();
export default bsp_utils;