-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathregular.js
594 lines (484 loc) · 14.2 KB
/
regular.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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
/**
* @package Regular.js
* @description A light and simple JavaScript Library
*
* @author Peter van Westen <info@regularlabs.com>
* @link https://github.com/regularlabs/regularjs
* @copyright Copyright © 2021 Regular Labs - All Rights Reserved
* @license https://github.com/regularlabs/regularjs/blob/master/LICENCE MIT
*/
"use strict";
if (typeof window.Regular === 'undefined'
|| typeof Regular.version === 'undefined'
|| Regular.version < 1.5) {
window.Regular = new function() {
/**
*
* PUBLIC PROPERTIES
*
*/
this.version = 1.5;
/**
*
* PUBLIC METHODS
*
*/
/**
* Sets a global alias for the Regular class.
*
* @param word A string (character or word) representing the alias for the Regular class.
*
* @return boolean
*/
this.alias = function(word) {
if (typeof window[word] !== 'undefined') {
console.error(`Cannot set '${word}' as an alias of Regular, as it already exists.`);
return false;
}
window[word] = $;
return true;
};
/**
* Returns a boolean based on whether the element contains one or more of the given class names.
*
* @param selector A CSS selector string or a HTMLElement object.
* @param classes A string or array of class names.
* @param matchAll Optional boolean whether the element should have all given classes (true) or at least one (false).
*
* @return boolean
*/
this.hasClasses = function(selector, classes, matchAll = true) {
if ( ! selector) {
return false;
}
const element = typeof selector === 'string'
? document.querySelector(selector)
: selector;
if ( ! element) {
return false;
}
if (typeof classes === 'string') {
classes = classes.split(' ');
}
let hasClass = false;
for (const clss of classes) {
hasClass = element.classList.contains(clss);
if (matchAll && ! hasClass) {
return false;
}
if ( ! matchAll && hasClass) {
return true;
}
}
return hasClass;
};
/**
* Adds given class name(s) to the element(s).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param classes A string or array of class names.
*/
this.addClasses = function(selector, classes) {
doClasses('add', selector, classes);
};
/**
* Removes given class name(s) from the element(s).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param classes A string or array of class names.
*/
this.removeClasses = function(selector, classes) {
doClasses('remove', selector, classes);
};
/**
* Toggles given class name(s) of the element(s).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param classes A string or array of class names.
* @param force An optional boolean value that forces the class to be added or removed.
*/
this.toggleClasses = function(selector, classes, force) {
switch (force) {
case true:
doClasses('add', selector, classes);
break;
case false:
doClasses('remove', selector, classes);
break;
default:
doClasses('toggle', selector, classes);
break;
}
};
/**
* Makes the given element(s) visible (changes visibility and display attributes).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
*/
this.makeVisible = function(selector) {
if ( ! selector) {
return;
}
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
if ('forEach' in element) {
element.forEach(subElement => $.makeVisible(subElement));
return;
}
let computedDisplay = getComputedStyle(element, 'display');
if ( ! ('origDisplay' in element)) {
element.origDisplay = computedDisplay === 'none'
? getDefaultComputedStyle(element, 'display')
: computedDisplay;
}
if (computedDisplay === 'none') {
element.style.display = ('origDisplay' in element) ? element.origDisplay : '';
}
computedDisplay = getComputedStyle(element, 'display');
if (computedDisplay === 'none') {
element.style.display = 'block';
}
element.style.visibility = 'visible';
};
/**
* Shows the given element(s) (makes visible and changes opacity attribute).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
*/
this.show = function(selector) {
if ( ! selector) {
return;
}
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
if ('forEach' in element) {
element.forEach(subElement => $.show(subElement));
return;
}
this.makeVisible(element);
element.style.opacity = 1;
};
/**
* Hides the given element(s) (changes opacity and display attributes).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
*/
this.hide = function(selector) {
if ( ! selector) {
return;
}
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
if ('forEach' in element) {
element.forEach(subElement => $.hide(subElement));
return;
}
const computedDisplay = getComputedStyle(element, 'display');
if (computedDisplay !== 'none' && ! ('origDisplay' in element)) {
element.origDisplay = computedDisplay;
}
element.style.display = 'none';
element.style.visibility = 'hidden';
element.style.opacity = 0;
};
/**
* Shows or hides the given element(s).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param force An optional boolean value that forces the class to be added or removed.
*/
this.toggle = function(selector, force) {
if ( ! selector) {
return;
}
switch (force) {
case true:
$.show(selector);
break;
case false:
$.hide(selector);
break;
default:
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
if ('forEach' in element) {
element.forEach(subElement => $.toggle(subElement));
return;
}
element.style.display === 'none' ? $.show(selector) : $.hide(selector);
break;
}
};
/**
* Fades in the given element(s).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param duration Optional duration of the effect in milliseconds.
* @param oncomplete Optional callback function to execute when effect is completed.
*/
this.fadeIn = function(selector, duration = 250, oncomplete) {
if ( ! selector) {
return;
}
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
this.makeVisible(element);
$.fadeTo(
element,
1,
duration,
() => {
$.show(element);
if (oncomplete) {
oncomplete.call(element);
}
}
);
};
/**
* Fades out the given element(s).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param duration Optional duration of the effect in milliseconds.
* @param oncomplete Optional callback function to execute when effect is completed.
*/
this.fadeOut = function(selector, duration = 250, oncomplete) {
if ( ! selector) {
return;
}
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
$.fadeTo(
element,
0,
duration,
() => {
$.hide(element);
if (oncomplete) {
oncomplete.call(element);
}
}
);
};
/**
* Fades out the given element(s).
*
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param opacity Opacity Value to fade to
* @param duration Optional duration of the effect in milliseconds.
* @param oncomplete Optional callback function to execute when effect is completed.
*/
this.fadeTo = function(selector, opacity, duration = 250, oncomplete) {
if ( ! selector) {
return;
}
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
if ('forEach' in element) {
element.forEach(subElement => $.fadeTo(subElement, opacity, duration));
return;
}
const wait = 50; // amount of time between steps
const nr_of_steps = duration / wait;
const change = 1 / nr_of_steps; // time to wait before next step
element.style.opacity = getComputedStyle(element, 'opacity');
if (opacity === element.style.opacity) {
element.setAttribute('data-fading', '');
if (oncomplete) {
oncomplete.call(element);
}
return;
}
this.makeVisible(element);
const direction = opacity > element.style.opacity ? 'in' : 'out';
element.setAttribute('data-fading', direction);
(function fade() {
if (element.getAttribute('data-fading')
&& element.getAttribute('data-fading') !== direction
) {
return;
}
const new_opacity = direction === 'out'
? parseFloat(element.style.opacity) - change
: parseFloat(element.style.opacity) + change;
if ((direction === 'in' && new_opacity >= opacity)
|| (direction === 'out' && new_opacity <= opacity)
) {
element.style.opacity = opacity;
element.setAttribute('data-fading', '');
if (oncomplete) {
oncomplete.call(element);
}
return;
}
element.style.opacity = new_opacity;
setTimeout(() => {
fade.call();
}, wait);
})();
};
/**
* Runs a function when the document is loaded (on ready state).
*
* @param func Callback function to execute when document is ready.
*/
this.onReady = function(func) {
document.addEventListener('DOMContentLoaded', func);
};
/**
* Converts a string with HTML code to 'DOM' elements.
*
* @param html String with HTML code.
*
* @return element
*/
this.createElementFromHTML = function(html) {
return document.createRange().createContextualFragment(html);
};
/**
* Loads a url with optional POST data and optionally calls a function on success or fail.
*
* @param url String containing the url to load.
* @param data Optional string representing the POST data to send along.
* @param success Optional callback function to execute when the url loads successfully (status 200).
* @param fail Optional callback function to execute when the url fails to load.
*/
this.loadUrl = function(url, data, success, fail) {
const request = new XMLHttpRequest();
request.open('POST', url, true);
request.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
request.onreadystatechange = function() {
if (this.readyState !== 4) {
return;
}
if (this.status === 200) {
success && success.call(null, this.responseText, this.status, this);
return;
}
fail && fail.call(null, this.responseText, this.status, this);
};
request.send(this.toUrlQueryString(data));
};
/**
* Converts a data object (key, value) to a serialized query string.
*
* @param data The object with the data to serialize.
* @param prefix An Optional prefix.
*/
this.toUrlQueryString = function(data, prefix) {
if (typeof data !== 'object') {
return data;
}
const parts = [];
if ( ! (Symbol.iterator in Object(data))) {
data = Object.entries(data);
}
for (let i in data) {
let value = data[i];
let name = '';
if (value instanceof Array) {
[name, value] = value;
}
let key = name ? (prefix ? `${prefix}[${name}]` : name) : prefix;
if ( ! key) {
continue;
}
if (value !== null && typeof value === 'object') {
if (value instanceof Array) {
key += '[]';
}
parts.push(this.toUrlQueryString(value, key));
continue;
}
parts.push(`${key}=${value}`);
}
return parts.join('&');
};
/**
*
* ALIASES
*
*/
this.as = this.alias;
this.hasClass = this.hasClasses;
this.addClass = this.addClasses;
this.removeClass = this.removeClasses;
this.toggleClass = this.toggleClasses;
/**
*
* PRIVATE FUNCTIONS
*
*/
/**
* Executes an action on the element(s) to add/remove/toggle classes.
*
* @param action A string that identifies the action: add|remove|toggle.
* @param selector A CSS selector string, a HTMLElement object or a collection of HTMLElement objects.
* @param classes A string or array of class names.
*/
const doClasses = function(action, selector, classes) {
if ( ! selector) {
return;
}
const element = typeof selector === 'string'
? document.querySelectorAll(selector)
: selector;
if ('forEach' in element) {
element.forEach(subElement => doClasses(action, subElement, classes));
return;
}
if (typeof classes === 'string') {
classes = classes.split(' ');
}
element.classList[action](...classes);
};
/**
* Finds the computed style of an element.
*
* @param element A HTMLElement object.
* @param property The style property that needs to be returned.
*
* @returns mixed
*/
const getComputedStyle = function(element, property) {
if ( ! element) {
return null;
}
return window.getComputedStyle(element).getPropertyValue(property);
};
/**
* Finds the default computed style of an element by its type.
*
* @param element A HTMLElement object.
* @param property The style property that needs to be returned.
*
* @returns mixed
*/
const getDefaultComputedStyle = function(element, property) {
if ( ! element) {
return null;
}
const defaultElement = document.createElement(element.nodeName);
document.body.append(defaultElement);
let propertyValue = window.getComputedStyle(defaultElement).getPropertyValue(property);
defaultElement.remove();
return propertyValue;
};
/**
*
* PRIVATE VARIABLES
*
*/
/**
* @param $ internal shorthand for the 'this' keyword.
*/
const $ = this;
};
}