-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathbase.js
522 lines (508 loc) · 15.1 KB
/
base.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
/********************************************/
/* © Arthur Guiot 2017 */
/* DisplayJS */
/* https://display.js.org/ */
/********************************************/
class DisplayJS {
constructor(obj) {
this.obj = obj;
}
/* DOM manipulation and browser API.*/
var (push) {
// the function
const var_push = () => {
this.if();
this.else();
const elements = document.querySelectorAll("[var]");
for (let i = 0; i < elements.length; i++) {
const attr = elements[i].getAttribute("var");
elements[i].innerHTML = this.getAtPath(this.obj, attr);
}
};
// push var cheking
if (!push) {
var_push();
} else if (push == true) {
var_push();
this.live(this.obj, () => {
var_push();
});
} else {
window.setInterval(() => {
var_push();
}, push);
}
}
// aliases of $.var();
render(push) {
this.var(push);
}
renderVariables(push) {
this.var(push);
}
// Transform HTML special chars
xss(str) {
const lt = /</g;
const gt = />/g;
const ap = /'/g;
const ic = /"/g;
return str.toString().replace(lt, "<").replace(gt, ">").replace(ap, "'").replace(ic, """);
}
// encode the URI
xssURI(str) {
return encodeURI(str);
}
// Target input to variable
target(callback = () => {
this.var();
}) {
const addEventListener = ((() => {
if (document.addEventListener) {
return (element, event, handler) => {
element.addEventListener(event, handler, false);
};
}
return (element, event, handler) => {
element.attachEvent(`on${event}`, handler);
};
})());
const obj = this.obj;
const setValue = (x, element) => {
const attr = x.getAttribute("target");
if (element.type == "checkbox") {
this.setAtPath(obj, attr, element.checked);
} else if (element.type == "select") {
this.setAtPath(obj, attr, element.options[element.selectedIndex].value);
} else {
this.setAtPath(obj, attr, element.value);
}
callback(x);
};
[].forEach.call(document.querySelectorAll("[target]"), (x) => {
addEventListener(x, "change", function () {
return setValue(x, this);
});
addEventListener(x, "keydown", function () {
return setValue(x, this);
});
addEventListener(x, "input", function () {
return setValue(x, this);
});
addEventListener(x, "paste", function () {
return setValue(x, this);
});
});
}
// if...else function
if (push) {
const if_push = () => {
const elements = document.querySelectorAll("[if]");
for (let i = 0; i < elements.length; i++) {
const attr = elements[i].getAttribute("if");
const el = [];
el.push(elements[i]);
if (eval(this.obj[attr])) {
this.show(this.toNodeList(el[0]));
} else {
this.hide(this.toNodeList(el[0]));
}
}
};
if (!push) {
if_push();
} else if (push == true) {
if_push();
this.live(this.obj, () => {
if_push();
});
} else {
window.setInterval(() => {
if_push();
}, push);
}
} else(push) {
const else_push = () => {
const elements = document.querySelectorAll("[else]");
for (let i = 0; i < elements.length; i++) {
const attr = elements[i].getAttribute("else");
const el = [];
el.push(elements[i]);
if (eval(this.obj[attr])) {
this.hide(this.toNodeList(el[0]));
} else {
this.show(this.toNodeList(el[0]));
}
}
};
if (!push) {
else_push();
} else if (push == true) {
else_push();
this.live(this.obj, () => {
else_push();
});
} else {
window.setInterval(() => {
else_push();
}, push);
}
}
toNodeList(el) {
el.setAttribute('wrapNodeList', '');
const list = document.querySelectorAll('[wrapNodeList]');
el.removeAttribute('wrapNodeList');
return list;
}
// custom repeat function
repeat(el, object) {
el = this.s(el);
const text = el[0].innerHTML;
el[0].innerHTML = ""
// Comes from stackoveflow. @Individual11
function interpolate(str) {
return function interpolate(o) {
return str.replace(/{([^{}]*)}/g, function(a, b) {
window["data"] = o;
let r = eval(b)
return r
});
}
}
for (var i = 0; i < object.length; i++) {
const data = object[i]
el[0].innerHTML += interpolate(text)(data)
}
}
// parsing the DOM for on and action attribute
onEvent() {
const elements = document.querySelectorAll("[on]");
for (let i = 0; i < elements.length; i++) {
const attr = elements[i].getAttribute("on");
const action = elements[i].getAttribute("action");
elements[i].addEventListener(attr, () => {
eval(action);
});
}
}
// Set value at path of object
setAtPath(obj, path, value) {
// Taken from https://stackoverflow.com/a/6842900
let i;
path = path.split(".");
for (i = 0; i < path.length - 1; i++) {
obj = obj[path[i]];
}
obj[path[i]] = value;
}
// Get value at path of object
getAtPath(obj, path) {
const parts = path.split(".");
let val = obj[parts[0]];
for (let p = 1; p < parts.length; p++) {
val = val[parts[p]];
}
return val;
}
// apply function to each elements selected
all(el, callback) {
el = this.s(el);
el.forEach((data) => {
callback(this.toNodeList(data));
});
}
/* Basic DOM manipulation */
text(el, text) {
el = this.s(el);
return text ? el[0].innerHTML = this.xss(text) : el[0].innerHTML;
}
html(el, html) {
el = this.s(el);
return html ? el[0].innerHTML = html : el[0].innerHTML;
}
append(el, html) {
el = this.s(el);
el[0].innerHTML += html;
}
after(el, html) {
el = this.s(el);
el[0].insertAdjacentHTML("afterend", html);
}
before(el, html) {
el = this.s(el);
el[0].insertAdjacentHTML("beforebegin", html);
}
clone(el) {
el[0].cloneNode(true);
}
is(el1, el2) {
el1 = this.s(el1);
el2 = this.s(el2);
if (el1[0] === el2[0]) {
return true;
}
return false;
}
select(str) {
return str instanceof NodeList ? str : document.querySelectorAll(str);
}
single(str) {
return this.isElement(str) ? str : document.querySelector(str);
}
// alias of $.select()
s(str) {
return this.select(str);
}
empty(el) {
el = this.s(el);
el[0].innerHTML = "";
}
valEmpty(el) {
el = this.s(el);
el[0].value = null;
}
remove(el) {
el = this.s(el);
el[0].parentNode.removeChild(el[0]);
}
on(el, event, callback) {
el = this.s(el);
el[0].addEventListener(event, callback);
}
ready(fn) {
if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading") {
fn();
} else {
document.addEventListener("DOMContentLoaded", fn);
}
}
scroll(callback) {
window.addEventListener("scroll", callback);
}
scrollTo(x, y) {
window.scroll(x, y);
}
scrollTop(el) {
el = el != null ? el : document.body.scrollTop == 0 ? this.toNodeList(document.documentElement) : this.toNodeList(document.body)
el = this.s(el);
return el[0].scrollTop;
}
show(el) {
el = this.s(el);
el[0].style.display = "block";
return true;
}
hide(el) {
el = this.s(el);
el[0].style.display = "none";
return true;
}
hasClass(el, className) {
el = this.s(el);
if (el[0].classList) {
return el[0].classList.contains(className);
}
return !!el[0].className.match(new RegExp(`(\\s|^)${className}(\\s|$)`));
}
addClass(el, className) {
el = this.s(el);
if (el[0].classList) {
el[0].classList.add(className);
} else if (!this.hasClass(el, className)) {
el[0].className += ` ${className}`;
}
}
removeClass(el, className) {
el = this.s(el);
if (el[0].classList) {
el[0].classList.remove(className);
} else if (this.hasClass(el, className)) {
const reg = new RegExp(`(\\s|^)${className}(\\s|$)`);
el[0].className = el[0].className.replace(reg, " ");
}
}
toggleClass(el, className) {
el = this.s(el);
if (this.hasClass(el, className)) {
this.removeClass(el, className);
} else {
this.addClass(el, className);
}
}
css(el, name, value) {
el = this.s(el);
if (typeof(name) == 'object') {
for (let i in name) {
el[0].style[i] = name[i];
}
} else {
el[0].style[name] = value;
}
}
getStyle(el, styleProp) {
el = this.s(el);
return el[0].style[styleProp];
}
fadeOut(el, i = 0.1) {
el = this.s(el)[0];
el.style.opacity = 1;
(function fade() {
if ((el.style.opacity -= i) < 0) {
el.style.display = "none";
} else {
requestAnimationFrame(fade);
}
}());
}
fadeIn(el, i = 0.1, display) {
el = this.s(el)[0];
el.style.opacity = 0;
el.style.display = display || "block";
(function fade() {
let val = parseFloat(el.style.opacity);
if (!((val += i) > 1)) {
el.style.opacity = val;
requestAnimationFrame(fade);
}
}());
}
// Create a function in the DisplayJS object
get fn() {
return DisplayJS.prototype;
}
// dynamically update something
dynamic(callback, push = 250) {
window.setInterval(callback, push);
}
parent(el, n = 0) {
el = this.s(el);
let newEl = el[0];
for (const i in this.range(n)) {
newEl = newEl.parentNode;
}
return this.toNodeList(newEl);
}
isNode(el) {
return (
typeof Node === "object" ? el instanceof Node :
el && typeof el === "object" && typeof el.nodeType === "number" && typeof el.nodeName === "string"
);
}
isElement(el) {
return (
typeof HTMLElement === "object" ? el instanceof HTMLElement : //DOM2
el && typeof el === "object" && el !== null && el.nodeType === 1 && typeof el.nodeName === "string"
);
}
// create custom component
component(name, callback) {
class component extends HTMLElement {
constructor() {
super();
callback(this);
}
}
customElements.define(name, component);
}
// import a script
import (source, callback) {
let script = document.createElement("script");
const prior = document.getElementsByTagName("script")[0];
script.async = 1;
script.onload = script.onreadystatechange = (_, isAbort) => {
if (isAbort || !script.readyState || /loaded|complete/.test(script.readyState)) {
script.onload = script.onreadystatechange = null;
script = undefined;
if (!isAbort) {
if (callback) callback();
}
}
};
script.src = source;
prior.parentNode.insertBefore(script, prior);
}
sleep(ms) {
const waitUntil = new Date().getTime() + ms;
while (new Date().getTime() < waitUntil) true;
}
getProp(el) {
el = this.s(el);
return this.extend(el[0], {
text: el[0].innerText,
html: el[0].innerHTML,
css: window.getComputedStyle(el[0]),
height: el[0].outerHeight,
width: el[0].outerWidth,
})
}
// Math and array manipulation + includes
extend(defaults, options) {
const extended = {};
let prop;
for (prop in defaults) {
if (Object.prototype.hasOwnProperty.call(defaults, prop)) {
extended[prop] = defaults[prop];
}
}
for (prop in options) {
if (Object.prototype.hasOwnProperty.call(options, prop)) {
extended[prop] = options[prop];
}
}
return extended;
}
arange(start, end, step, offset) {
const len = (Math.abs(end - start) + ((offset || 0) * 2)) / (step || 1) + 1;
const direction = start < end ? 1 : -1;
const startingPoint = start - (direction * (offset || 0));
const stepSize = direction * (step || 1);
return Array(len).fill(0).map((_, index) => startingPoint + (stepSize * index));
}
range(n) {
return this.arange(0, n, 1);
}
linespace(start, end, n) {
const diff = end - start;
const step = diff / n;
return this.arange(start, end, step);
}
reshape(array, part) {
const tmp = [];
for (let i = 0; i < array.length; i += part) {
tmp.push(array.slice(i, i + part));
}
return tmp;
}
flatten(array) {
return array.reduce((a, b) => a.concat(b), []);
}
drop(array, val) {
return val > 0 ? array.slice(val, array.length) : array.slice(0, array.length + val)
}
isIn(array, val) {
return array.includes(val) ? true : false
}
rmFromArray(array, condition) {
const obj = [];
for (const i in array) {
if (condition(i) == !1) {
obj.push(array[i]);
}
}
return obj;
}
//= includes
}
// Browserify / Node.js
if (typeof define === "function" && define.amd) {
define(() => new DisplayJS);
// CommonJS and Node.js module support.
} else if (typeof exports !== "undefined") {
// Support Node.js specific `module.exports` (which can be a function)
if (typeof module !== "undefined" && module.exports) {
exports = module.exports = new DisplayJS;
}
// But always support CommonJS module 1.1.1 spec (`exports` cannot be a function)
exports.DisplayJS = new DisplayJS;
} else if (typeof global !== "undefined") {
global.DisplayJS = new DisplayJS;
}