-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpromise.js
62 lines (55 loc) · 1.56 KB
/
promise.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
/**
*
* WARNING:
* If you opened this file, close it immediately.
* I wrote this like full of shit.
*
*/
(function (root, factory) {
root.CVPromise = factory();
})(window, function () {
var CVPromise = function (fn) {
this.__IS_PROMISE__ = true;
this.$fn = fn;
this.$resolvers = [];
this.$rejectors = [];
this.$state = 'pending';
this.__execute();
};
CVPromise.prototype.then = function (onRes, onRej) {
var that = this;
return new CVPromise(function (res, rej) {
that.$resolvers.push(function (result) {
var ret = onRes(result);
if (ret && ret.__IS_PROMISE__) {
ret.then(function (_result) {
res(_result);
}, function (_err) {
rej(_err);
});
} else {
res(ret);
}
});
that.$rejectors.push(function (error) {
rej(error);
});
});
}
CVPromise.prototype.__resolved = function (res) {
this.$state = 'resolved';
this.$resolvers.forEach(function (cb) {
cb(res);
});
};
CVPromise.prototype.__rejected = function (err) {
this.$state = 'rejected';
this.$rejectors.forEach(function (cb) {
cb(err);
});
};
CVPromise.prototype.__execute = function () {
this.$fn(this.__resolved.bind(this), this.__rejected.bind(this));
};
return CVPromise;
});