This repository was archived by the owner on Jan 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathjsInject.js
87 lines (73 loc) · 2.59 KB
/
jsInject.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
'use strict';
(function (w) {
var stack = {},
isArray = function (arr) {
return Object.prototype.toString.call(arr) === '[object Array]';
};
function JsInject () {
this.container = {};
}
JsInject.ERROR_RECURSION = 'Recursive failure : Circular reference for dependency ';
JsInject.ERROR_REGISTRATION = 'Already registered.';
JsInject.ERROR_ARRAY = 'Must pass array.';
JsInject.ERROR_FUNCTION = 'Must pass function to invoke.';
JsInject.ERROR_SERVICE = 'Service does not exist.';
JsInject.prototype.get = function(name) {
var wrapper = this.container[name];
if (wrapper) {
return wrapper();
}
throw JsInject.ERROR_SERVICE;
};
JsInject.prototype.invoke = function (fn, deps, instance, name) {
var i = 0,
args = [];
if (stack[name]) {
throw JsInject.ERROR_RECURSION + name + " : " + JSON.stringify(Object.keys(stack));
}
stack[name] = instance;
for (; i < deps.length; i += 1) {
args.push(this.get(deps[i]));
}
delete stack[name];
return fn.apply(instance, args);
};
JsInject.prototype.register = function (name, annotatedArray) {
if (!isArray(annotatedArray)) {
throw JsInject.ERROR_ARRAY;
}
if (this.container[name]) {
throw JsInject.ERROR_REGISTRATION;
}
if (typeof annotatedArray[annotatedArray.length - 1] !== 'function') {
throw JsInject.ERROR_FUNCTION;
}
var _this = this;
this.container[name] = function () {
var Template = function () {},
result = {},
instance,
fn = annotatedArray[annotatedArray.length - 1],
deps = annotatedArray.length === 1 ? (annotatedArray[0].$$deps || []) :
annotatedArray.slice(0, annotatedArray.length - 1),
injected;
Template.prototype = fn.prototype;
instance = new Template();
injected = _this.invoke(fn, deps, instance, name);
result = injected || instance;
_this.container[name] = function () {
return result;
};
return result;
};
};
function Wrapper() {
var ioc = new JsInject(), _that = this;
this.get = ioc.get.bind(ioc);
this.register = ioc.register.bind(ioc);
ioc.container['$$jsInject'] = function () {
return _that;
};
}
w.$$jsInject = Wrapper;
})(window);