-
Notifications
You must be signed in to change notification settings - Fork 8
/
appoint.js
231 lines (210 loc) · 4.89 KB
/
appoint.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
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
223
224
225
226
227
228
229
230
231
function INTERNAL () {}
function isFunction (func) {
return typeof func === 'function'
}
function isObject (obj) {
return typeof obj === 'object'
}
function isArray (arr) {
return Array.isArray(arr)
}
const PENDING = 'pending'
const FULFILLED = 'fulfilled'
const REJECTED = 'rejected'
module.exports = Promise
function Promise (resolver) {
if (!isFunction(resolver)) {
throw new TypeError('resolver must be a function')
}
this.state = PENDING
this.value = void 0
this.queue = []
if (resolver !== INTERNAL) {
safelyResolveThen(this, resolver)
}
}
Promise.prototype.then = function (onFulfilled, onRejected) {
if ((!isFunction(onFulfilled) && this.state === FULFILLED) ||
(!isFunction(onRejected) && this.state === REJECTED)) {
return this
}
const promise = new this.constructor(INTERNAL)
if (this.state !== PENDING) {
const resolver = this.state === FULFILLED ? onFulfilled : onRejected
unwrap(promise, resolver, this.value)
} else {
this.queue.push(new QueueItem(promise, onFulfilled, onRejected))
}
return promise
}
Promise.prototype.catch = function (onRejected) {
return this.then(null, onRejected)
}
function QueueItem (promise, onFulfilled, onRejected) {
this.promise = promise
this.callFulfilled = function (value) {
doResolve(this.promise, value)
}
this.callRejected = function (error) {
doReject(this.promise, error)
}
if (isFunction(onFulfilled)) {
this.callFulfilled = function (value) {
unwrap(this.promise, onFulfilled, value)
}
}
if (isFunction(onRejected)) {
this.callRejected = function (error) {
unwrap(this.promise, onRejected, error)
}
}
}
function unwrap (promise, func, value) {
process.nextTick(function () {
let returnValue
try {
returnValue = func(value)
} catch (error) {
return doReject(promise, error)
}
if (returnValue === promise) {
doReject(promise, new TypeError('Cannot resolve promise with itself'))
} else {
doResolve(promise, returnValue)
}
})
}
function doResolve (self, value) {
try {
const then = getThen(value)
if (then) {
safelyResolveThen(self, then)
} else {
self.state = FULFILLED
self.value = value
self.queue.forEach(function (queueItem) {
queueItem.callFulfilled(value)
})
}
return self
} catch (error) {
return doReject(self, error)
}
}
function doReject (self, error) {
self.state = REJECTED
self.value = error
self.queue.forEach(function (queueItem) {
queueItem.callRejected(error)
})
return self
}
function getThen (promise) {
const then = promise && promise.then
if (promise && (isObject(promise) || isFunction(promise)) && isFunction(then)) {
return function applyThen () {
then.apply(promise, arguments)
}
}
}
function safelyResolveThen (self, then) {
let called = false
try {
then(function (value) {
if (called) {
return
}
called = true
doResolve(self, value)
}, function (error) {
if (called) {
return
}
called = true
doReject(self, error)
})
} catch (error) {
if (called) {
return
}
called = true
doReject(self, error)
}
}
Promise.resolve = resolve
function resolve (value) {
if (value instanceof this) {
return value
}
return doResolve(new this(INTERNAL), value)
}
Promise.reject = reject
function reject (reason) {
return doReject(new this(INTERNAL), reason)
}
Promise.all = all
function all (iterable) {
const self = this
if (!isArray(iterable)) {
return this.reject(new TypeError('must be an array'))
}
const len = iterable.length
let called = false
if (!len) {
return this.resolve([])
}
const values = new Array(len)
let resolved = 0
let i = -1
const promise = new this(INTERNAL)
while (++i < len) {
allResolver(iterable[i], i)
}
return promise
function allResolver (value, i) {
self.resolve(value).then(resolveFromAll, function (error) {
if (!called) {
called = true
doReject(promise, error)
}
})
function resolveFromAll (outValue) {
values[i] = outValue
if (++resolved === len && !called) {
called = true
doResolve(promise, values)
}
}
}
}
Promise.race = race
function race (iterable) {
const self = this
if (!isArray(iterable)) {
return this.reject(new TypeError('must be an array'))
}
const len = iterable.length
let called = false
if (!len) {
return this.resolve([])
}
let i = -1
const promise = new this(INTERNAL)
while (++i < len) {
resolver(iterable[i])
}
return promise
function resolver (value) {
self.resolve(value).then(function (response) {
if (!called) {
called = true
doResolve(promise, response)
}
}, function (error) {
if (!called) {
called = true
doReject(promise, error)
}
})
}
}