-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoath.js
135 lines (121 loc) · 3.42 KB
/
oath.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
'use strict';
const STATES = {
PENDING : 'pending',
REJECTED : 'rejected',
RESOLVED : 'resolved'
};
function fulfill(oath) {
var handlerArray = oath.handlers[oath.state];
for(var index = 0; index < handlerArray.length; index++) {
handlerArray[index](oath.value);
}
}
function Oath(executor) {
var self = this;
self.state = STATES.PENDING;
self.value = null;
self.handlers = {};
self.handlers[STATES.RESOLVED] = [];
self.handlers[STATES.REJECTED] = [];
function resolve(resVal) {
if(resVal instanceof Oath) {
resVal.then(function(rV) {
resolve(rV);
});
resVal.catch(function(error) {
reject(error);
});
return;
}
if(self.state === STATES.PENDING) {
self.state = STATES.RESOLVED;
self.value = resVal;
fulfill(self);
}
}
function reject(rejVal) {
if(self.state === STATES.PENDING) {
self.state = STATES.REJECTED;
self.value = rejVal;
fulfill(self);
}
}
executor(resolve, reject);
}
Oath.prototype.then = function oathThen(handler) {
var self = this;
var newOath;
if(self.state === STATES.RESOLVED) {
newOath = new Oath(function(res, rej) {
var chain = function chain(value) {
try {
let resVal = handler(value);
res(resVal);
} catch(e) {
rej(e);
}
};
chain(self.value);
});
} else if(self.state === STATES.PENDING) {
newOath = new Oath(function(res, rej) {
var chain = function chain(value) {
try {
let resVal = handler(value);
res(resVal);
} catch(e) {
rej(e);
}
};
self.handlers[STATES.RESOLVED].push(chain);
var rejChain = function rejChain(error) {
rej(error);
};
self.handlers[STATES.REJECTED].push(rejChain);
});
} else {
newOath = new Oath(function(res, rej) {
rej(self.value);
});
}
return newOath;
};
Oath.prototype.catch = function oathCatch(handler) {
var self = this;
var newOath;
if(self.state === STATES.REJECTED) {
newOath = new Oath(function(res, rej) {
var chain = function chain(value) {
try {
let resVal = handler(value);
res(resVal);
} catch(e) {
rej(e);
}
};
chain(self.value);
});
} else if(self.state === STATES.PENDING) {
newOath = new Oath(function(res, rej) {
var chain = function chain(value) {
try {
let resVal = handler(value);
res(resVal);
} catch(e) {
rej(e);
}
};
self.handlers[STATES.REJECTED].push(chain);
var resChain = function resChain(val) {
res(val);
};
self.handlers[STATES.RESOLVED].push(resChain);
});
} else {
newOath = new Oath(function(res) {
res(self.value);
});
}
return newOath;
};
module.exports = Oath;