forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdom-trace.js
222 lines (182 loc) · 5.61 KB
/
dom-trace.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
(function(){
function logMutation(m) {
if(m.type == 'attributes') {
attributeMutation(m);
} else if(m.type == 'childList') {
childListMutation(m);
} else if(m.type == 'subtree') {
attributeMutation(m);
} else {
console.debug(m);
}
}
function attributeMutation(m) {
// target's attributes are to be observed.
if(m.attributeName == 'class') {
var msgs = [];
msgs.push( 'Class, ' + createElementId(m.target) );
if(m.oldValue !== m.target.className) {
var exisitingClasses = (m.oldValue ? m.oldValue.split(' ') : []);
var currentClasses = m.target.className.split(' ');
var addedClasses = [];
var removedClasses = [];
for(var x=0; x<currentClasses.length; x++) {
if(currentClasses[x]=='' || ignoreClassName(currentClasses[x])) continue;
var addedCSS = currentClasses[x];
for(var y=0; y<exisitingClasses.length; y++) {
if(currentClasses[x] == exisitingClasses[y]) {
addedCSS = null;
break
}
}
if(addedCSS) addedClasses.push(addedCSS);
}
for(var x=0; x<exisitingClasses.length; x++) {
if(exisitingClasses[x]=='' || ignoreClassName(exisitingClasses[x])) continue;
var removedCSS=exisitingClasses[x];
for(var y=0; y<currentClasses.length; y++) {
if(currentClasses[x] == exisitingClasses[y]) {
removedCSS = null;
break
}
}
if(removedCSS) removedClasses.push(removedCSS);
}
if(addedClasses.length) {
msgs.push('Added ' + addedClasses);
}
if(removedClasses.length) {
msgs.push('Removed ' + removedClasses);
}
if(addedClasses.length || removedClasses.length) {
log(m, msgs, 'magenta');
}
} else {
msgs.push('className never changed!')
log(m, msgs, 'maroon');
}
} else if(m.attributeName == 'style') {
var msgs = [];
msgs.push( 'Style, ' + createElementId(m.target) );
if(m.oldValue) msgs.push( 'from ' + m.oldValue );
if(msgs.length) {
log(m, msgs, 'blue');
}
}
}
function childListMutation(m) {
// children are to be observed.
var msgs = [];
for(var x=0; x<m.addedNodes.length; x++) {
if(m.addedNodes[x].nodeType !== 3) {
msgs.push('Child List');
msgs.push( 'Add: ' + createElementId(m.target) );
msgs.push( 'Parent: ' + createElementId(m.target.parentElement) );
}
}
if(msgs.length) {
log(m, msgs, 'orange');
}
msgs = [];
for(var x=0; x<m.removedNodes.length; x++) {
if(m.removedNodes[x].nodeType !== 3) {
msgs.push('Child List');
msgs.push( 'Remove: ' + createElementId(m.target) );
msgs.push( 'Parent: ' + createElementId(m.target.parentElement) );
}
}
if(msgs.length) {
log(m, msgs, 'orangered');
}
}
function createElementId(el) {
var id;
if(!el) {
id = 'null'
} else if(el.tagName) {
var id = el.tagName.toLowerCase();
var classes = el.className.split(' ');
for(var x=0; x<classes.length; x++) {
if(!ignoreClassName(classes[x])) {
id += '.' + classes[x];
}
}
if(el.id.length) id += '#' + el.id;
var href = el.getAttribute('href');
if(href) {
href = href.split('/');
id += '[href=' + href[href.length -1] + ']';
}
var ngClick = el.getAttribute('ng-click');
if(ngClick) {
id += '[ng-click=' + ngClick + ']';
}
} else {
id = el.nodeName;
}
return id;
}
function ignoreClassName(className) {
if(!className.length) return true;
for(var x=0; x<ignoreClassNames.length; x++) {
if(className === ignoreClassNames[x]) return true;
}
}
function log(m, msgs, color) {
totalManipulations++;
if(m.target && !m.target.domTraceId) {
m.target.domTraceId = idInc;
idInc++;
}
msgs.unshift( 'ID ' + m.target.domTraceId );
var d = new Date();
msgs.unshift( d.getSeconds() + '.' + d.getMilliseconds() );
var msg = msgs.join(', ');
console.debug("%c" + msg,
"color:" + color);
clearTimeout(timeId)
timeId = setTimeout(function(){
console.debug('Manipulations:', totalManipulations)
totalManipulations = 0;
}, 1200);
}
var timeId;
window.domTrace = {
observe: function(selector){
if (!selector) selector = 'body';
var el = document.querySelector(selector);
if(!el) return console.error(selector, 'not found');
console.debug('Dom Trace, observe:', selector);
var observer = new MutationObserver(function(mutations) {
mutations.forEach(logMutation);
});
observer.observe(el, {
attributes: true,
childList: false,
subtree: true,
attributeOldValue: true,
//characterData: true,
//characterDataOldValue: true,
attributeFilter: true
});
}
};
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
var ignoreClassNames = [
'ng-binding',
'ng-bind-html'
];
var idInc = 0;
var totalManipulations = 0;
document.addEventListener('keyup', function(e){
if(e.keyCode === 27) {
console.clear();
totalManipulations = 0;
}
}, false);
//Shortcuts for tests
angular.element(document).ready(function() {
window.$s = angular.element(document).scope().$root;
window.$i = angular.element(document).injector();
});
})(window);