This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fayQuery.js
384 lines (328 loc) · 9.57 KB
/
fayQuery.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
;(function(){
//Aimed at Chrome (last 2 to 3 years), firefox (last 2 to 3 years), IE10+, Opera 11.5+, Safari 5.1+
//Some specific functions may require a newer browser
//The idea behind this library is not to provide cross-browser stuff, but to make a very light library with as little extra code to support older browsers
//As of now the only cross-browser code present is the dataset generation for IE10.
/* CORE */
/** @export */
function $(m) {
return $.$(document, m);
}
/** @export */
$.$ = function(el, m) {
if (m instanceof HTMLElement) {
if (!m.dataset) {
m.dataset = $.createDataSet(m);
}
return new $.CustomList([m]);
} else if ((m instanceof Array) || (m instanceof HTMLCollection) || (m instanceof NodeList)) {
return new $.CustomList(m);
}
var r = el.querySelectorAll(m);
for (var i = 0; i < r.length; i++) {
if (!r[i].dataset) {
r[i].dataset = $.createDataSet(r[i]);
}
}
return new $.CustomList(r);
}
//Alas, normal datasets are supported only in IE11+, so we still have some code for older browsers (it's rather lame that even in 2013-2015 we still have to write custom stuff for IE)
$.createDataSet = function(el) { //generate the dataset (just an object, not a string map)
var r = {}
for (var i = 0; i < el.attributes.length; i++) {
if (el.attributes[i].name.substring(0, 5) == "data-") {
var n = el.attributes[i].name.substring(5),
m = n.match(/-(.)/);
while (m != null) {
n = n.replace(m[0], m[1].toUpperCase());
m = n.match(/-(.)/);
}
r[n] = el.attributes[i].value;
}
}
return r;
}
/** @constructor */
$.CustomList = function(list) {
for (var i = 0; i < list.length; i++) {
this[i] = list[i];
}
this.length = list.length;
}
/* DEFAULT MANIPULATION FUNCTIONS */
//Probably something like Chrome 1+, Firefox 1+, IE9+, Opera 7+, Safari 1+
/** @export */
$.CustomList.prototype.get = function(p) { //Returns the property for the first item in the list (regardless of whether it is defined or not)
if (this.length > 0) {
return this[0][p];
} else {
return undefined;
}
}
/** @export */
$.CustomList.prototype.getAttribute = function(p) { //Returns the attribute for the first item in the list (regardless of whether it is defined or not)
if (this.length > 0) {
return this[0].getAttribute(p);
} else {
return undefined;
}
}
/** @export */
$.CustomList.prototype.set = function(p, v) {
for (var i = 0; i < this.length; i++) {
this[i][p] = v;
}
return this;
}
/** @export */
$.CustomList.prototype.setAttribute = function(p, v) {
for (var i = 0; i < this.length; i++) {
this[i].setAttribute(p, v);
}
return this;
}
/** @export */
$.CustomList.prototype.append = function(p, v) {
for (var i = 0; i < this.length; i++) {
var cv = this[i][p]
this[i][p] = (typeof cv === 'undefined') ? v : cv + v;
}
return this;
}
/** @export */
$.CustomList.prototype.appendAttribute = function(p, v) {
for (var i = 0; i < this.length; i++) {
var cv = this[i].getAttribute(v);
this[i].setAttribute(p, (typeof cv === 'string') ? cv + v : v);
}
return this;
}
/** @export */
$.CustomList.prototype.setStyle = function(s) {
if ((s instanceof String) || (typeof s === "string")) {
for (var i = 0; i < this.length; i++) {
this[i].style.cssText += ";" + s;
}
} else {
for (var i = 0; i < this.length; i++) {
for (var p in s) {
this[i].style[p] = s[p];
}
}
}
return this;
}
/** @export */
$.CustomList.prototype.setInnerHTML = function(s) {
for (var i = 0; i < this.length; i++) {
this[i].innerHTML = s;
}
return this;
}
/** @export */
$.CustomList.prototype.addEventListener = function() {
for (var i = 0; i < this.length; i++) {
this[i].addEventListener(arguments[0], arguments[1], arguments[2], arguments[3]);
}
return this;
}
/** @export */
$.CustomList.prototype.removeEventListener = function() {
for (var i = 0; i < this.length; i++) {
this[i].removeEventListener(arguments[0], arguments[1], arguments[2], arguments[3]);
}
return this;
}
$.remove = function(el) {
if (el.parentNode) {
el.parentNode.removeChild(el);
}
}
/** @export */
$.CustomList.prototype.remove = function() {
for (var i = 0; i < this.length; i++) {
$.remove(this[i]);
}
return this;
}
$.hasClass = function(el, c) {
return el.classList.contains(c);
}
/** @export */
$.CustomList.prototype.hasClass = function(c) {
for (var i = 0; i < this.length; i++) {
if ($.hasClass(this[i], c)) {
return true;
}
}
return false;
}
/** @export */
$.CustomList.prototype.allHaveClass = function(c) {
for (var i = 0; i < this.length; i++) {
if (!$.hasClass(this[i], c)) {
return false;
}
}
return true;
}
$.addClass = function(el, c) {
el.classList.add(c);
}
/** @export */
$.CustomList.prototype.addClass = function(c) {
for (var i = 0; i < this.length; i++) {
$.addClass(this[i], c);
}
return this;
}
$.removeClass = function(el, c) {
el.classList.remove(c);
}
/** @export */
$.CustomList.prototype.removeClass = function(c) {
for (var i=0; i < this.length; i++) {
$.removeClass(this[i], c);
}
return this;
}
$.toggleClass = function(el, c) {
el.classList.toggle(c);
}
/** @export */
$.CustomList.prototype.toggleClass = function(c) {
for (var i=0; i < this.length; i++) {
$.toggleClass(this[i], c);
}
return this;
}
/** @export */
$.CustomList.prototype.run = function(f) {
var args = Array.prototype.slice.call(arguments, 1), r;
args.push(0);
for (var i = 0; i < this.length; i++) {
args[args.length-1] = i;
r = f.apply(this[i], args);
}
return this;
}
/** @export */
$.CustomList.prototype.each = function(f) {
var args = Array.prototype.slice.call(arguments, 1);
for (var i = 0; i < this.length; i++) {
if (f.apply(this[i], args) === false) {
break;
}
}
return this;
}
$.getText = function(el) {
return el.innerText || el.textContent;
}
/** @export */
$.CustomList.prototype.getText = function() {
if (this.length > 0) {
return $.getText(this[0]);
} else {
return undefined;
}
}
/* REQUEST */
//Chrome 1+, Firefox 1+, IE7+, Opera, Safari 1.2+
//with FormData or HTMLFormElement: Chrome 6+, Firefox 4+, IE10+, Opera 12+, Safari?
/** @export */
$.doRequest = function() {
return new $.Request(arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7], arguments[8], arguments[9]);
}
$.toQueryString = function(obj) {
var parts = [];
for (var property in obj) {
if (obj.hasOwnProperty(property)) {
parts.push(encodeURIComponent(property) + '=' + encodeURIComponent(obj[property]));
}
}
return parts.join('&');
}
/** @constructor */
$.Request = function(url, method, data, doneHandler, failedHandler, finalFailedHandler, callBeforeSend, uploadProgressHandler, progressHandler, timeout) {
this.xhr = new XMLHttpRequest();
if (typeof timeout === 'number') {
this.xhr.timeout = timeout;
}
this.xhr.open(method, url, true);
if (data instanceof HTMLFormElement) {
data = new FormData(data);
} else if (typeof data === 'object') {
if ((!FormData) || !(data instanceof FormData)) {
data = $.toQueryString(data);
this.xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
}
} // else assumme it can be put directly into the XHR. If it is not, you're doing it wrong.
var _this = this;
this.xhr.onreadystatechange = function(e) {
if (_this.xhr.readyState == 4) {
if (_this.xhr.status == 200) {
doneHandler(e, _this.xhr);
} else if (typeof failedHandler === "function") {
failedHandler(e, _this.xhr);
} else if (failedHandler > 0) {
_this.resend(url, method, data, doneHandler, failedHandler-1, finalFailedHandler, callBeforeSend, uploadProgressHandler, progressHandler, timeout);
} else {
finalFailedHandler(e, _this.xhr);
}
}
}
if (typeof uploadProgressHandler === 'function') {
this.xhr.upload.addEventListener("progress", uploadProgressHandler);
}
if (typeof progressHandler === 'function') {
this.xhr.addEventListener("progress", progressHandler);
}
if (typeof callBeforeSend === "function") {
callBeforeSend(this.xhr, data);
}
this.xhr.send(data);
}
/** @export */
$.Request.prototype.abort = function() {
this.xhr.abort();
}
$.Request.prototype.resend = function(url, method, data, doneHandler, failedHandler, finalFailedHandler, callBeforeSend, uploadProgressHandler, progressHandler, timeout) {
this.xhr = new XMLHttpRequest();
if (typeof timeout === 'number') {
this.xhr.timeout = timeout;
}
this.xhr.open(method, url, true);
var _this = this;
this.xhr.onreadystatechange = function(e) {
if (_this.xhr.readyState == 4) {
if (_this.xhr.status == 200) {
doneHandler(e, _this.xhr);
} else if (typeof failedHandler === "function") {
failedHandler(e, _this.xhr);
} else if (failedHandler > 0) {
_this.resend(url, method, data, doneHandler, failedHandler-1, finalFailedHandler, callBeforeSend, uploadProgressHandler, progressHandler, timeout);
} else {
finalFailedHandler(e, _this.xhr);
}
}
}
if (typeof uploadProgressHandler === 'function') {
this.xhr.upload.addEventListener("progress", uploadProgressHandler);
}
if (typeof progressHandler === 'function') {
this.xhr.addEventListener("progress", progressHandler);
}
if (typeof callBeforeSend === "function") {
callBeforeSend(this.xhr, data);
}
this.xhr.send(data);
}
window.fayQuery = $;
if (!('$' in window)) {
window.$ = $;
}
window.getFayQuery = function() {
return $;
}
})();