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
| const PENDING = 'pending'; const FULFILLED = 'fulfilled'; const REJECTED = 'rejected';
class MyPromise { constructor(executor) { try { executor(this.resolve, this.reject) } catch (error) { this.reject(error) } }
status = PENDING; value = null; reason = null;
onFulfilledCallbacks = []; onRejectedCallbacks = [];
resolve = (value) => { if (this.status === PENDING) { this.status = FULFILLED; this.value = value; while (this.onFulfilledCallbacks.length) { this.onFulfilledCallbacks.shift()(value) } } }
reject = (reason) => { if (this.status === PENDING) { this.status = REJECTED; this.reason = reason; while (this.onRejectedCallbacks.length) { this.onRejectedCallbacks.shift()(reason) } } }
then(onFulfilled, onRejected) { const realOnFulfilled = typeof onFulfilled === 'function' ? onFulfilled : value => value; const realOnRejected = typeof onRejected === 'function' ? onRejected : reason => { throw reason };
const promise2 = new MyPromise((resolve, reject) => { const fulfilledMicrotask = () => { queueMicrotask(() => { try { const x = realOnFulfilled(this.value); resolvePromise(promise2, x, resolve, reject); } catch (error) { reject(error) } }) }
const rejectedMicrotask = () => { queueMicrotask(() => { try { const x = realOnRejected(this.reason); resolvePromise(promise2, x, resolve, reject); } catch (error) { reject(error) } }) } if (this.status === FULFILLED) { fulfilledMicrotask() } else if (this.status === REJECTED) { rejectedMicrotask() } else if (this.status === PENDING) { this.onFulfilledCallbacks.push(fulfilledMicrotask); this.onRejectedCallbacks.push(rejectedMicrotask); } })
return promise2; }
static resolve(parameter) { if (parameter instanceof MyPromise) { return parameter; }
return new MyPromise(resolve => { resolve(parameter); }); }
static reject(reason) { return new MyPromise((resolve, reject) => { reject(reason); }); } }
function resolvePromise(promise, x, resolve, reject) { if (promise === x) { return reject(new TypeError('The promise and the return value are the same')); }
if (typeof x === 'object' || typeof x === 'function') { if (x === null) { return resolve(x); }
let then; try { then = x.then; } catch (error) { return reject(error); }
if (typeof then === 'function') { let called = false; try { then.call( x, y => { if (called) return; called = true; resolvePromise(promise, y, resolve, reject); }, r => { if (called) return; called = true; reject(r); }); } catch (error) { if (called) return;
reject(error); } } else { resolve(x); } } else { resolve(x); } }
MyPromise.deferred = function () { var result = {}; result.promise = new MyPromise(function (resolve, reject) { result.resolve = resolve; result.reject = reject; });
return result; }
module.exports = MyPromise;
|