-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromise-example.js
67 lines (61 loc) · 1.79 KB
/
promise-example.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
var Promise = function (fn) {
if (typeof fn !== 'function') {
return fn;
}
var promise = this;
promise._state = 0;
promise._value;
promise._callbacks = [];
fn(promise.resolve.bind(promise), promise.reject.bind(promise));
}
Promise.prototype = {
resolve: function (data) {
this._state = 1;
this._value = data;
this._exec(this);
},
reject: function (err) {
this._state = 2;
this._value = err;
this._exec(this);
},
then: function (onFulfilled, onRejected) {
var self = this;
var promise = new Promise(function () {});
self._callbacks.push({
fulfilled: onFulfilled,
rejected: onRejected,
then: promise
});
return promise;
},
_exec: function (promise) {
console.log(promise);
if (promise._state === 0) {
return;
}
setTimeout(function () {
while (promise._callbacks.length) {
var fn = promise._callbacks.shift();
try {
(promise._state === 1 ?
(fn.fulfilled || function (x) {return x}) :
(fn.rejected || function (x) {return x})
)(promise._value, promise.resolve.bind(fn.then));
} catch (e) {
promise.reject.bind(fn.then, e);
continue;
}
}
}, 0);
}
}
var test = new Promise(function (resolve, reject) {
setTimeout(function () {resolve(2);console.log(111)},2000);
});
test.then(function (value, resolve) {
setTimeout(function () {resolve(3);console.log(value)},2000);
}).then(function (value, resolve) {
resolve();
console.log(value);
});