-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwhenInDom.js
76 lines (68 loc) · 2.3 KB
/
whenInDom.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
var WhenInDOM = function (el, callback, observeEl) {
var MObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
this.observer = null;
this.callback = callback;
this.el = el;
this.observeEl = observeEl || document;
var nodeInList = function (list, node) {
for (var i = list.length; i--;) {
if (list[i] === node || contains(list[i], node)) {
return true;
}
}
return false;
};
var contains = function (container, element) {
var documentElement = document.documentElement;
if (documentElement.contains) {
if (element.nodeType !== 1) {
element = element.parentNode;
}
return container !== element && container.contains(element);
} else if (documentElement.compareDocumentPosition) {
return !!(container.compareDocumentPosition(element) & 16);
}
};
this.init = function () {
var that = this;
var config = {
childList: true,
subtree: true
};
this.observer = new MObserver(function (mutations) {
mutations.forEach(function (mutation) {
if (mutation.type == "childList" && nodeInList(mutation.addedNodes, that.el)) {
that.stop();
that.callback();
}
});
});
this.observer.observe(this.observeEl, config);
};
this.crawl = function() {
if (this.crawlEl && this.crawlEl.parentNode) {
if (this.crawlEl.parentNode === this.observeEl || this.crawlEl.parentNode.nodeType > 8) {
this.stop();
this.callback();
} else {
this.crawlEl = this.crawlEl.parentNode;
}
}
};
this.crawlInit = function() {
var that = this;
this.crawlEl = this.el;
this.crawlHandler = setInterval(function () {
that.crawl.call(that);
}, 10);
};
this.stop = function () {
if (this.observer) { this.observer.disconnect(); }
if (this.crawlHandler) { clearInterval(this.crawlHandler); }
};
if (MObserver) {
this.init();
} else {
this.crawlInit();
}
};