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
| const PENDING = 'pending' const FULFILLED = 'fulfilled' const REJECTED = 'rejected'
class MyPromise { constructor(executor) { try { executor(this.resolve, this.reject) } catch (e) { this.reject(e) } }
status = PENDING value = null reason = null successCallback = [] failCallback = [] resolve = value => { if (this.status !== PENDING) return this.status = FULFILLED this.value = value while (this.successCallback.length) { this.successCallback.shift()(this.value) } } reject = reason => { if (this.status !== PENDING) return this.status = REJECTED this.reason = reason while (this.failCallback.length) { this.failCallback.shift()(this.reason) } }
then(successCallback, failCallback) { successCallback = successCallback ? successCallback : value => this.value failCallback = failCallback ? failCallback : reason => { throw this.reason } let promise2 = new MyPromise((resolve, reject) => { if (this.status === FULFILLED) { setTimeout(() => { try { let x = successCallback(this.value) resolvePromise(promise2, x, resolve, reject) } catch (e) { reject(e) } }) } else if (this.status === REJECTED) { setTimeout(() => { try { let x = failCallback(this.reason) resolvePromise(promise2, x, resolve, reject) } catch (e) { reject(e) } }) } else { this.successCallback.push(() => { try { let x = successCallback(this.value) resolvePromise(promise2, x, resolve, reject) } catch (e) { reject(e) } }) this.failCallback.push(() => { try { let x = failCallback(this.reason) resolvePromise(promise2, x, resolve, reject) } catch (e) { reject(e) } }) } }) return promise2 }
finally(callback) { return this.then(value => { return MyPromise.resolve(callback()).then(() => value) }, reason => { return MyPromise.reject(callback()).then(() => { throw reason }) }) }
catch(failCallback) { return this.then(undefined, failCallback) }
static all(array) { let result = [] let index return new Promise((resolve, reject) => { function addData(key, value) { result[key] = value index++ if (index === array.length) { resolve(result) } }
for (let i = 0; i < array.length; i++) { let current = array[i] if (current instanceof MyPromise) { current.then(value => addData(i, value), reason => reject(reason)) } else { addData(i, array[i]) } } }) }
static resolve(value) { if (value instanceof MyPromise) return value return new MyPromise(resolve => resolve(value)) } }
function resolvePromise(promise2, x, resolve, reject) { if (promise2 === x) { return reject(new TypeError('Chaining cycle detected for promise #<Promise>')) } if (x instanceof MyPromise) { x.then(resolve, reject) } else { resolve(x) } }
|