# 难点:
- 异步处理
- 兼容不同 Promise 的 resolvePromise 函数
interface MyPromise {
status: 'pendding' | 'resloved' | 'rejected'
data: any
onResolvedCallback: Array<Function>
onRejectedCallback: Array<Function>
then: (onFulfill?: any, onReject?: any) => void
catch: (reason: any) => void
resolve: (val: any) => Promise
reject: (reason: any) => Promise
all: (promises: Array) => Promise
race: (promises: Array) => Promise
}
class Promise implements MyPromise {
private status
private data
private onResolvedCallback
private onRejectedCallback
constructor(executor?: Function) {
this.status = 'pendding'
this.onResolvedCallback = []
this.onRejectedCallback = []
const resolve = (value) => {
if (value instanceof Promise) {
return value.then(resolve, reject)
}
setTimeout(() => {
if (this.status === 'pendding') {
this.status = 'resloved'
this.data = value
this.onResolvedCallback.forEach((fn) => fn(value))
}
})
}
const reject = (reason) => {
setTimeout(() => {
if (this.status === 'pendding') {
this.status = 'rejected'
this.data = reason
this.onRejectedCallback.forEach((fn) => fn(reason))
}
})
}
try {
executor(resolve, reject)
} catch (e) {
this.catch(e)
}
}
public then(onFulfill, onReject) {
const self = this
let promise2
onFulfill = typeof onFulfill === 'function' ? onFulfill : (v) => v
onReject = typeof onReject === 'function' ? onReject : (v) => {
throw v
}
if (self.status === 'resolved') {
return promise2 = new Promise(function (resolve, reject) {
try {
var x = onFulfill(self.data)
if (x instanceof Promise) {
x.then(resolve, reject)
}
resolve(x)
} catch (e) {
reject(e)
}
})
}
if (self.status === 'rejected') {
return promise2 = new Promise(function (resolve, reject) {
try {
var x = onReject(self.data)
if (x instanceof Promise) {
x.then(resolve, reject)
}
} catch (e) {
reject(e)
}
})
}
if (self.status === 'pendding') {
promise2 = new Promise((resolve, reject) => {
self.onResolvedCallback.push((value) => {
try {
let x = onFulfill(value)
resolvePromise(promise2, x, resolve, reject)
} catch (e) {
reject(e)
}
})
self.onRejectedCallback.push((value) => {
try {
let x = onReject(value)
resolvePromise(promise2, x, resolve, reject)
} catch (e) {
reject(e)
}
})
})
}
return promise2
}
public catch(reason) {
return this.then(null, onRejected)
}
public resolve(val) {
return new Promise((resolve, reject) => {
resolve(val)
})
}
public reject(reason) {
return new Promise((resolve, reject) => {
reject(reason)
})
}
public all(promises) {
let datas = []
let len = 0
function processData(data, index, resolve) {
len += 1
datas[index] = data
if (len === promises.length) {
resolve(datas)
}
}
return new Promise((resolve, reject) => {
promises.forEach((promise, index) => {
if (promise instanceof Promise) {
promise.then((data) => processData(data, index, resolve))
} else {
this.resolve(promise).then((data) => processData(data, index, resolve))
}
})
})
}
public race(promises) {
return new Promise((resolve, reject) => {
promises.forEach((promise, index) => {
if (promise instanceof Promise) {
promise.then(resolve, reject)
} else {
this.resolve(promise).then(resolve, reject)
}
})
})
}
}
function resolvePromise(promise2: Function, x: Function, resolve: Function, reject: Function): void {
var then
var thenCalledOrThrow = false
if (promise2 === x) {
return reject(new TypeError('Chaining cycle detected for promise!'))
}
if (x instanceof Promise) {
if (x.status === 'pendding') {
x.then(function (v) {
resolvePromise(promise2, v, resolve, reject)
}, reject)
} else {
x.then(resolve, reject)
}
return
}
if ((x !== null) && ((typeof x === 'object') || (typeof x === 'function'))) {
try {
then = x.then
if (typeof then === 'function') {
then.call(x, function rs(y) {
if (thenCalledOrThrow) return
thenCalledOrThrow = true
return resolvePromise(promise2, y, resolve, reject)
}, function rj(r) {
if (thenCalledOrThrow) return
thenCalledOrThrow = true
return reject(r)
})
} else {
resolve(x)
}
} catch (e) {
if (thenCalledOrThrow) return
thenCalledOrThrow = true
return reject(e)
}
} else {
resolve(x)
}
}
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222