-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdom_module.js
75 lines (66 loc) · 1.89 KB
/
cdom_module.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
"use strict";
// https://github.com/neknaj/cDom
export function elm(type, prop, children) {
var elm = document.createElement(type);
var propKeys = Object.keys(prop);
for (var _i = 0, propKeys_1 = propKeys; _i < propKeys_1.length; _i++) {
var key = propKeys_1[_i];
if (key === "data") {
for (var _a = 0, _b = Object.keys(prop[key]); _a < _b.length; _a++) {
var k = _b[_a];
elm.dataset[k] = prop[key][k];
}
}
else {
elm.setAttribute(key, prop[key]);
}
}
for (var _c = 0, children_1 = children; _c < children_1.length; _c++) {
var child = children_1[_c];
elm.appendChild(child);
}
return elm;
}
export function textelm(text) {
return document.createTextNode(text);
}
Element.prototype.Clear = function () {
this.innerHTML = "";
return this;
};
Element.prototype.Add = function (child) {
this.appendChild(child);
return this;
};
Element.prototype.Proc = function (func) {
func(this);
return this;
};
Element.prototype.Replace = function (children) {
this.replaceChildren(...children);
return this;
};
Element.prototype.Listen = function (type, listener, options) {
this.addEventListener(type, listener, options);
return this;
};
Element.prototype.addProp = function (prop) {
var propKeys = Object.keys(prop);
for (var _i = 0, propKeys_2 = propKeys; _i < propKeys_2.length; _i++) {
var key = propKeys_2[_i];
if (key === "data") {
for (var _a = 0, _b = Object.keys(prop[key]); _a < _b.length; _a++) {
var k = _b[_a];
this.dataset[k] = prop[key][k];
}
}
else {
this.setAttribute(key, prop[key]);
}
}
return this;
};
Element.prototype.addClass = function (name) {
this.classList.add(name);
return this;
};