-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.light.js
424 lines (393 loc) · 14.2 KB
/
angular.light.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
/*******************************************************************************************
* @ Name : Angular Light binding
* @ Author : Abbas Hosseini
* @ Description : A simple library that support two way binding with angular syntax
* @ Version : 2.0.0
* @ Last update : Saturday - 2018 27 January
******************************************************************************************/
var angular = (function () {
/**
* Controller scope class
*
* @class {Scope}
* @description binding part between the H(view) and (controller)
*/
class Scope {
constructor() {}
}
/**
* Angular controller
*
* @class {Module}
*/
class Module {
constructor(moduleName) {
this.$rootScope = {
name : '$rootScope',
childs : {}
};
this.dom = document.querySelectorAll('[ng-app=' + moduleName + ']');
}
}
/**
* Angular module
*
* @class {Controller}
*/
class Controller {
constructor(module) {
this.$scope = new Scope();
this.module = module;
}
getDom(ctrlName, ctrlFn) {
this.name = ctrlName;
this.module.$rootScope.childs[ctrlName] = this.$scope;
this.dom = this.getController(this.module.dom, ctrlName);
return this.dom
}
/**
* Get module controllers
*
* @param {String} ctrlName
* @param {Object} moduleDom is dom object
* @description Find target controller based on controller name
*/
getController(moduleDom, ctrlName) {
//Sample : <div ng-app="" ng-controller=""></div>
if (moduleDom[0].getAttribute('ng-controller') == ctrlName) {
return moduleDom[0]
}
var ctrls = moduleDom[0].querySelectorAll('[ng-controller]');
for (var i = 0; i < ctrls.length; i++) {
if (ctrls[i].getAttribute('ng-controller') == ctrlName) {
return ctrls[i];
break;
}
}
}
}
/**
* Angular class
*
* @class {Angular}
*/
class Angular {
/**
* Define angular module
*
* @param {String} moduleName
*/
module(moduleName) {
var self = this;
var module = new Module(moduleName);
return {
controller: function (ctrlName, ctrlFn) {
var ctrl = new Controller(module)
var crtlDom = ctrl.getDom(ctrlName, ctrlFn);
var ctrlScope = ctrl.$scope;
var moduleScope = module.$rootScope;
//Twoway data binding
var binding = new TwowayBind();
binding.initialize(crtlDom, ctrlFn, ctrlScope, moduleScope)
}
}
}
}
/**
* Twoway data binding module
*
* @class {TwowayBind}
*/
class TwowayBind {
/**
* Initial a angular controller with a unique scope
*/
initialize(crtlDom, ctrlFn, ctrlScope, moduleScope) {
var self = this;
//Pass scope to controller callback
ctrlFn.call(window, ctrlScope, moduleScope);
this.watchList = {};
//Define reactivity for biding model to ui
self.traverseObject(ctrlScope)
this.$scope = JSON.parse(JSON.stringify(ctrlScope));
self.traveseDom(crtlDom, function (node) {
self.compile(node);
});
}
/**
* Backward literal
*
* @param {String} str Is somthing like 'portal.user.name'
* @returns {String} 'portal.user.name' => portal.user'
* @description A function for backward object literal string
*/
backward(str) {
var arr = str.split('.');
//fix strings that have '.' in end => 'portal.user.'
if (arr[arr.length - 1] == '') {
arr.pop();
}
arr.pop();
return arr.join('.') + '.';
}
/**
* Traversing object properties
*
* @param {Object} obj is literal object for traversing
* @param {String} setProp is string like 'portal.user.name'
*/
traverseObject(obj, setProp) {
self = this;
var setProp = setProp || '';
for (let prop in obj) {
if (obj.hasOwnProperty(prop)) {
setProp += prop;
//Define reactivity
self.defineReactive(obj, prop, obj[prop], setProp)
if (typeof obj[prop] == "object") {
setProp = setProp + '.'
self.traverseObject(obj[prop], setProp);
}
};
//Remove last prop after any iteration in loop
setProp = self.backward(setProp)
}
}
/**
* @param {Object} obj is scope coming from controller
* @param {Object} prop is target to define reactivity
* @param {Any} val is value for define for getter
* @param {String} setProp is property literal 'portal.user.name'
* @description : Define reactivity for properties coming from controller
*/
defineReactive(obj, prop, val, setProp) {
var self = this;
Object.defineProperty(obj, prop, {
enumerable: true,
configurable: false,
get: function () {
return val;
},
set: function (newVal) {
self.set(setProp, newVal)
}
});
}
/**
* Traversing dom nodes
*
* @param {Object} node is a dom element
* @param {Function} func is a callback that have node as argument
*/
traveseDom(node, func) {
//Pass attr node as callback arg
func(node);
node = node.firstChild;
while (node) {
this.traveseDom(node, func);
node = node.nextSibling;
}
}
/**
* @param {String} node is a dom element
* @description Decide how to bind dom nodes
*/
compile(node) {
//text node dont have outerHTML
var nodeValue = node.outerHTML || node.nodeValue,
childs = {
textNodes: [],
attrNodes: [],
},
reg = /{{[^}]*}}/gi,
self = this,
points = self.parse(nodeValue);
if (points.hasInterpolate) {
//text
if (node.nodeType == 3) {
childs.textNodes.push({
node: node,
value: node.nodeValue
});
}
//attributes
if (node.attributes != undefined) {
var attrs = node.attributes;
for (var i = 0; i < attrs.length; i++) {
if (reg.test(attrs[i].nodeValue)) {
childs.attrNodes.push({
node: attrs[i],
value: attrs[i].nodeValue
});
}
}
};
self.bindText(node, nodeValue, childs, points);
} else {
//input
if (node.tagName == 'INPUT' && node.getAttribute("ng-model")) {
self.bindInput(node);
}
}
}
/**
* @param {String} string is innerHTML of parsing node
* @returns {Object} object is {start:[] ,end:[] ,interpolate: false}
* @description : Parse placeholder of {{expressions}} for interpolation
*/
parse(string) {
var reg = /{{[^}]*}}/gi,
points = {
start: [],
end: [],
hasInterpolate: false
},
match;
while (match = reg.exec(string)) {
points.start.push(match.index);
points.end.push(match.index + match[0].length);
points.hasInterpolate = true;
}
return points;
}
/**
* @param {String} a sample for string '{{name}} {{family}}'
* @returns {String} interpolated string 'abbas hosseini'
* @description : interpolating string
* @ - string interpolation is a process in programming
* @ - that replace values with placeholders
*/
interpolate(string) {
var self = this;
var points = self.parse(string);
if (points.hasInterpolate) {
var start = string.substring(0, points.start[0]);
var prop = (string.substring(points.start[0] + 2, points.end[0] - 2).trim());
var value = self.get(prop);
var end = name + string.substring(points.end[0])
string = start + value + end;
return self.interpolate(string);
} else {
return string
}
}
/**
* @param {Object} node is a dom object
* @param {Any} nodeValue is value for current node
* @param {Object} childs is childs = {textNodes: [], attrNodes: []}
* @param {Object} points is interpolations indexs list
* @ - points = {start: [], end: [], hasInterpolate: false}
* @description : binding interpolation placeholders
*/
bindText(node, nodeValue, childs, points) {
//Add properties to watchList object
for (let index in points.start) {
var prop = nodeValue.substring(points.start[index] + 2, points.end[index] - 2).trim();
if (this.watchList[prop]) {
this.watchList[prop].textNodes = this.watchList[prop].textNodes.concat(childs.textNodes);
this.watchList[prop].attrNodes = this.watchList[prop].attrNodes.concat(childs.attrNodes);
} else {
this.watchList[prop] = {
textNodes: childs.textNodes,
attrNodes: childs.attrNodes,
inputNodes: [],
value: this.get(prop) || ''
};
}
this.broadcast(this.watchList[prop], prop);
}
}
/**
* Making two way data binding beetween ui and model
*
* @param {Object} node is a dom object
* @description : binding inputs to binding model for
*/
bindInput(node) {
var prop = node.getAttribute("ng-model"),
self = this;
if (this.get(prop)) {
node.value = this.get(prop);
} else {
this.set(prop, node.value);
}
if (this.watchList[prop]) {
this.watchList[prop].inputNodes.push(node);
} else {
this.watchList[prop] = {
textNodes: [],
attrNodes: [],
inputNodes: [node],
value: this.get(prop) || ''
};
}
node.addEventListener("input", function (e) {
self.set(prop, e.target.value);
});
}
/**
* Update changes dom elements
* @param {Object} bind is {inputNodes:[], attrNodes:[],textNodes:[], value:'' }
* @param {Object} key is binding property
*/
broadcast(bind, key) {
bind.value = this.get(key);
var self = this;
//broadcast text nodes
for (var i = 0; i < bind.textNodes.length; i++) {
bind.textNodes[i].node.nodeValue = self.interpolate(bind.textNodes[i].value);
}
//broadcast attrs
for (var i = 0; i < bind.attrNodes.length; i++) {
bind.attrNodes[i].node.nodeValue = self.interpolate(bind.attrNodes[i].value);
}
//broadcast inputs
for (var j = 0; j < bind.inputNodes.length; j++) {
bind.inputNodes[j].value = bind.value;
}
}
/**
* Get object property value
*
* @param {String} exp is property expression 'user.name'
* @returns {Any} value of property
*/
get(exp) {
var val = this.$scope;
exp = exp.split('.');
exp.forEach(function (k) {
val = val[k];
});
return val;
}
/**
* Set property to object
*
* @param {String} exp is property expression 'user.name'
* @param {Any} value anything to assign to property
*/
set(exp, value) {
var val = this.$scope;
var propStr = exp;
exp = exp.split('.');
exp.forEach(function (k, i) {
if (i < exp.length - 1) {
val = val[k];
} else {
val[k] = value;
}
});
// set function notify change to watcher
if (this.watchList[propStr]) {
this.broadcast(this.watchList[propStr], propStr)
}
}
}
var angular = new Angular();
//Public Interface
return {
module: function (moduleName) {
return angular.module(moduleName)
},
}
})()