-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjquery.log.js
141 lines (128 loc) · 3.86 KB
/
jquery.log.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
/*
* MIT License
*
* Copyright (c) 2011 Francisco M.S. Ferreira
* http://www.jquerylog.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
(function(){
var c = console,
indentLevel = 0,
doLog = false,
executed = {},
log = function(fname, selector , returned ){
if(doLog === false){
return;
}
var indent = "";
for(var i=0;i<indentLevel;i++){
indent+="\t";
}
c.log(indent+ fname+"("+ ((typeof selector==="string") ? "'%s'" : "%o") +"): %o", selector , returned);
};
var $jq = (jQuery!==undefined ? jQuery : $);
// special treatment for main selector
$.constructor = function(selector, context){
indentLevel = 0;
var returned = $jq(selector,context);
log("\n$",(context===undefined ? selector : selector+" -> "+ context), returned);
return returned;
};
// replace all functions with correct log outputs (ordered by inputs)
// the reason why every one is copied one by one is to guarantee we can customize the logging
// depending on the arguments given or collection these functions belong to.
// This will lead to some repeated code, but the minimizer should cut it out.
var localNames = [ "parent",
"parents",
"parentsUntil",
"next",
"prev",
"nextAll",
"prevAll",
"siblings",
"children",
"contents",
"find",
"has",
"not",
"filter",
"is",
"index",
"add"];
for(var i=0;i<localNames.length;i++){
(function(){
var name = localNames[i];
var f = jQuery.fn[name];
jQuery.fn[localNames[i]] = function(elem){
indentLevel++;
var returned = f.apply(this,arguments);
log(name,elem, returned);
return returned;
};
executed[name]= true;
})();
}
localNames = [ "parentsUntil",
"nextUntil",
"prevUntil"];
for(var i=0;i<localNames.length;i++){
(function(){
var name = localNames[i];
var f = jQuery.fn[name];
jQuery.fn[localNames[i]] = function(elem, i, until){
indentLevel++;
var returned = f.apply(this,arguments);
if(until===undefined){
log(name,elem, returned);
} else {
log(name,elem+" with "+i+" filters:"+until, returned);
}
return returned;
};
executed[name]= true;
})();
}
// missing from group: closest, andSelft
// all others till I have time to manually do them all
for(var localName in jQuery.fn){
if(localName in executed){
continue;
}
(function(){
var name = localName;
var f = jQuery.fn[name];
jQuery.fn[localNames[i]] = function(elem){
indentLevel++;
var returned = f.apply(this,arguments);
log(name,elem, returned);
return returned;
};
executed[name]= true;
//console.log("applied: "+name);
})();
}
$.log = function(l){
if(l==undefined){
doLog = true;
}
doLog = l;
}
//jQuery = $;
})();