forked from sl1673495/javascript-codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromise-easy.js
63 lines (57 loc) · 1.28 KB
/
promise-easy.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
class Promise {
constructor(exec) {
this.status = "pending"
this.value = undefined
this.reason = undefined
this.onResolvedCallbacks = []
this.onRejectedCallbacks = []
const resolve = (value) => {
queueMicrotask(() => {
this.value = value
this.status = "resolved"
this.onResolvedCallbacks.forEach((callback) => callback())
})
}
const reject = (reason) => {
queueMicrotask(() => {
this.reason = reason
this.status = "rejected"
this.onRejectedCallbacks.forEach((callback) => callback())
})
}
try {
exec(resolve, reject)
} catch (error) {
reject(error)
}
}
then(callback) {
return new Promise((resolve, reject) => {
this.onResolvedCallbacks.push(() => {
let result
try {
result = callback(this.value)
} catch (error) {
return reject(error)
}
if (result instanceof Promise) {
result.then(resolve)
} else {
resolve(result)
}
})
})
}
}
new Promise(resolve => {
resolve(2)
}).then(res => {
console.log('res: ', res);
return new Promise(resolve => {
setTimeout(() => {
resolve(res + 1)
}, 1000);
})
}).then(res => {
console.log(res)
})