This repository was archived by the owner on Feb 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.js
292 lines (292 loc) · 8.26 KB
/
node.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
/**
* Class representing a Node.
*/
class IsotopeNode {
/**
* Creates a new Node.
*
* @param element - The Node's HTML element or tag.
* @param config - The Node's configuration.
*/
constructor(element, config) {
this.element = this.getElement(element, config);
if (typeof config === "string") {
this.element.textContent = config;
}
else if (typeof config === "object") {
if (config.attach) {
this.childIndex = 0;
}
if (config.autoLink) {
this.autoLink = config.autoLink;
}
if (config.state) {
this.state = config.state;
}
if (config.context) {
this.context = config.context;
}
this.onCreate.forEach((callback) => {
callback(this, config);
});
}
this.process();
}
/**
* Executes the provided directive(s).
*
* @param directives - Directive(s) to be executed.
* @returns - The Node or the return value of the directive.
*/
$(directives) {
if (Array.isArray(directives)) {
directives.forEach((directive) => {
directive(this);
});
}
else {
const value = directives(this);
if (typeof value !== "undefined") {
return value;
}
}
return this;
}
/**
* Adds a child Node to the Node.
*
* @param tag - Child Node's HTML tag.
* @param config - Child Node's configuration.
* @returns - The created child Node.
*/
child(tag, config) {
const shouldAttach = typeof this.childIndex !== "undefined";
const isConfigDirective = typeof config === "function" || Array.isArray(config);
let element = tag;
if (shouldAttach) {
const index = this.childIndex || 0;
const attachTarget = this.element.children[index];
if (attachTarget) {
element = attachTarget;
this.childIndex = index + 1;
}
}
const node = new IsotopeNode(element, isConfigDirective ? {} : config);
this.element.appendChild(node.element);
if (shouldAttach && !node.childIndex) {
node.childIndex = 0;
}
this.passContext(node);
if (this.autoLink) {
this.link(node);
}
if (isConfigDirective) {
node.$(config);
}
return node;
}
/**
* Cleans the Node's child tree.
*
* @returns - IsotopeNode.
*/
clean() {
if (this.linked) {
this.linked = null;
}
this.onClean.forEach((callback) => {
callback(this);
});
this.element.textContent = "";
return this;
}
/**
* Emits the specified event.
*
* @param event - Event to be emitted.
* @param data - Data to be passed to the listening function.
* @returns - IsotopeNode.
*/
emit(event, data = {}) {
if (this.listenedEvents && this.listenedEvents.includes(event)) {
this.element.dispatchEvent(Object.assign(this.customDOM ? this.customDOM.createEvent(event) : new Event(event), data));
}
return this;
}
/**
* Retrieves the data from the Node's context.
*
* @param key - Data key to be retrieved.
* @returns - The retrieved data.
*/
getContext(key) {
return this.context ? this.context[key] : null;
}
/**
* Retrieves the data from the Node's state.
*
* @param key - Data key to be retrieved.
* @returns - The retrieved data.
*/
getState(key) {
return this.state ? this.state[key] : null;
}
/**
* Links the provided Node.
*
* @param node - Node to be linked.
* @param position - Position to place Node at in the linked array.
* @returns - IsotopeNode.
*/
link(node, position) {
const nodeLinkup = node.linkup;
if (nodeLinkup !== this) {
if (nodeLinkup && nodeLinkup.linked) {
nodeLinkup.linked.splice(nodeLinkup.linked.indexOf(node), 1);
}
if (!this.linked) {
this.linked = [];
}
if (position) {
this.linked.splice(position, 0, node);
}
else {
this.linked.push(node);
}
node.linkup = this;
}
return this;
}
/**
* Moves the linked Node to the provided position.
*
* @param position - Position index to move the Node to.
* @returns - IsotopeNode.
*/
move(position) {
const { linkup } = this;
if (linkup && linkup.linked) {
const upperLinked = linkup.linked;
const [node] = upperLinked.splice(upperLinked.indexOf(this), 1);
upperLinked.splice(position, 0, node);
const referenceNode = upperLinked[position + 1];
linkup.element.insertBefore(this.element, referenceNode ? referenceNode.element : null);
}
return this;
}
/** @private */
off(event, handler, options) {
this.element.removeEventListener(event, handler, options);
return this;
}
/** @private */
on(event, handler, options) {
this.element.addEventListener(event, handler, options);
if (this.listenedEvents) {
this.listenedEvents.push(event);
}
else {
this.listenedEvents = [event];
}
return this;
}
/**
* Removes the Node.
*
* @returns - IsotopeNode.
*/
remove() {
const { linkup } = this;
if (linkup && linkup.linked) {
linkup.linked.splice(linkup.linked.indexOf(this), 1);
}
if (this.linked) {
this.linked = null;
}
if (this.element.parentElement) {
this.element.parentElement.removeChild(this.element);
}
this.emit("node-removed", { node: this });
return this;
}
/**
* Sets the Node's state.
*
* @param state - State object to be set.
* @returns - IsotopeNode.
*/
setState(state) {
if (this.state) {
Object.assign(this.state, state);
this.emit("state-changed", { node: this });
this.process();
}
return this;
}
/**
* Stringifies Node's element.
*
* @returns - Stringified Node's element.
*/
toString() {
return `${this.element}`;
}
/**
* Retrieves the proper element from Node's configuration.
*
* @param element - The Node's element or tag.
* @param config - The Node's configuration.
* @returns - Retrieved element.
*/
getElement(element, config) {
if (typeof element === "string") {
if (typeof config === "object" && !Array.isArray(config) && config.namespace) {
if (this.customDOM) {
return this.customDOM.createElement(element, config.namespace);
}
return document.createElementNS(config.namespace, element);
}
else if (this.customDOM) {
return this.customDOM.createElement(element);
}
return document.createElement(element);
}
return element;
}
/**
* Passes context to the child node.
*
* @param node - Node to pass the context to.
*/
passContext(node) {
if (this.context) {
if (node.context) {
node.context = Object.assign(node.context, this.context);
}
else {
node.context = this.context;
}
}
}
/**
* Processes and renders the Node.
*/
process() {
this.emit("node-updated", { node: this });
this.onProcess.forEach((callback) => {
callback(this);
});
if (this.linked) {
this.linked.forEach((linked) => {
linked.process();
});
}
}
}
Object.assign(IsotopeNode.prototype, {
onClean: [],
onCreate: [],
onProcess: []
});
export { IsotopeNode };
//# sourceMappingURL=node.js.map