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
| class CustomPromise<T> { private status: 'pending' | 'fulfilled' | 'rejected'; private value: T | undefined; private reason: any; private onFulfilledCallbacks: Array<() => void>; private onRejectedCallbacks: Array<() => void>;
constructor(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason: any) => void) => void) { this.status = 'pending'; this.value = undefined; this.reason = undefined; this.onFulfilledCallbacks = []; this.onRejectedCallbacks = [];
const resolve = (value: T | PromiseLike<T>): void => { if (this.status === 'pending') { this.status = 'fulfilled'; this.value = value as T; this.onFulfilledCallbacks.forEach(callback => callback()); } };
const reject = (reason: any): void => { if (this.status === 'pending') { this.status = 'rejected'; this.reason = reason; this.onRejectedCallbacks.forEach(callback => callback()); } };
try { executor(resolve, reject); } catch (error) { reject(error); } }
then<TResult1 = T, TResult2 = never>( onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null ): CustomPromise<TResult1 | TResult2> { const realOnFulfilled = typeof onFulfilled === 'function' ? onFulfilled : (value: T): T => value; const realOnRejected = typeof onRejected === 'function' ? onRejected : (reason: any): never => { throw reason };
const promise2 = new CustomPromise<TResult1 | TResult2>((resolve, reject) => { if (this.status === 'fulfilled') { setTimeout(() => { try { const x = realOnFulfilled(this.value as T); resolve(x as TResult1 | TResult2); } catch (error) { reject(error); } }, 0); }
if (this.status === 'rejected') { setTimeout(() => { try { const x = realOnRejected(this.reason); resolve(x); } catch (error) { reject(error); } }, 0); }
if (this.status === 'pending') { this.onFulfilledCallbacks.push(() => { setTimeout(() => { try { const x = realOnFulfilled(this.value as T); resolve(x as TResult1 | TResult2); } catch (error) { reject(error); } }, 0); });
this.onRejectedCallbacks.push(() => { setTimeout(() => { try { const x = realOnRejected(this.reason); resolve(x); } catch (error) { reject(error); } }, 0); }); } });
return promise2; }
catch<TResult = never>( onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null ): CustomPromise<T | TResult> { return this.then(null, onRejected); }
static resolve<TValue>(value: TValue | PromiseLike<TValue>): CustomPromise<TValue> { return new CustomPromise<TValue>((resolve) => { resolve(value); }); }
static reject<T = never>(reason: any): CustomPromise<T> { return new CustomPromise<T>((resolve, reject) => { reject(reason); }); } }
|