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
|
type Status = "pending" | "resolved" | "rejected";
function resolvePromise( promise2: Promise, x, resolve: Function, reject: Function ) { let then; let thenCalledOrThrow = false;
if (promise2 === x) { return reject(new TypeError("Chaining cycle detected for promise!")); }
if (x instanceof Promise) { if (x.status === "pending") { 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); } }
export class Promise { status: Status = "pending"; data: any; onResolvedCallback: Function[] = []; onRejectedCallback: Function[] = [];
constructor(executor: { (resolve: Function, reject: Function): any }) { const resolve = (value: any) => { if (value instanceof Promise) { return value.then(resolve, reject); } setTimeout(() => { if (this.status === "pending") { this.status = "resolved"; this.data = value; this.onResolvedCallback.forEach((fn) => fn(value)); } }); }; const reject = (value: any) => { setTimeout(() => { if (this.status === "pending") { this.status = "rejected"; this.data = value; this.onRejectedCallback.forEach((fn) => fn(value)); } }); };
try { executor(resolve, reject); } catch (e) { reject(e); } }
then(onResolved: Function, onRejected: Function) { onResolved = typeof onResolved === "function" ? onResolved : (v) => v; onRejected = typeof onRejected === "function" ? onRejected : (v) => { throw v; }; let promise2: Promise;
if (this.status === "resolved") { return (promise2 = new Promise((resolve, reject) => { setTimeout(() => { try { const x = onResolved(this.data); resolvePromise(promise2, x, resolve, reject); } catch (reason) { reject(reason); } }); })); }
if (this.status === "rejected") { return (promise2 = new Promise((resolve, reject) => { setTimeout(() => { try { const x = onRejected(this.data); resolvePromise(promise2, x, resolve, reject); } catch (reason) { reject(reason); } }); })); }
if (this.status === "pending") { return (promise2 = new Promise((resolve, reject) => { this.onResolvedCallback.push((value) => { try { const x = onResolved(value); resolvePromise(promise2, x, resolve, reject); } catch (r) { reject(r); } });
this.onRejectedCallback.push((reason) => { try { const x = onRejected(reason); resolvePromise(promise2, x, resolve, reject); } catch (r) { reject(r); } }); })); } }
catch(onRejected) { return this.then(null, onRejected); }
static deferred = () => { const dfd: any = {}; dfd.promise = new Promise(function (resolve, reject) { dfd.resolve = resolve; dfd.reject = reject; }); return dfd; }; static defer = Promise.deferred; }
|