-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert PCancelable to typescript (#10215)
- Loading branch information
Showing
6 changed files
with
106 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
class CancelError extends Error { | ||
constructor() { | ||
super('Promise was canceled'); | ||
this.name = 'CancelError'; | ||
} | ||
} | ||
|
||
export default class PCancelable<T> extends Promise<T> { | ||
private _pending = true; | ||
private _canceled = false; | ||
private _promise: Promise<T>; | ||
private _cancel?: () => void; | ||
private _reject: (reason?: unknown) => void = () => {}; | ||
|
||
constructor( | ||
executor: ( | ||
onCancel: (cancelHandler: () => void) => void, | ||
resolve: (value?: T | PromiseLike<T>) => void, | ||
reject: (reason?: unknown) => void, | ||
) => void, | ||
) { | ||
super(resolve => resolve()); | ||
|
||
this._promise = new Promise((resolve, reject) => { | ||
this._reject = reject; | ||
|
||
return executor( | ||
fn => { | ||
this._cancel = fn; | ||
}, | ||
val => { | ||
this._pending = false; | ||
resolve(val); | ||
}, | ||
err => { | ||
this._pending = false; | ||
reject(err); | ||
}, | ||
); | ||
}); | ||
} | ||
|
||
then<TResult1 = T, TResult2 = never>( | ||
onFulfilled?: | ||
| ((value: T) => TResult1 | PromiseLike<TResult1>) | ||
| undefined | ||
| null, | ||
onRejected?: | ||
| ((reason: any) => TResult2 | PromiseLike<TResult2>) | ||
| undefined | ||
| null, | ||
): Promise<TResult1 | TResult2> { | ||
return this._promise.then(onFulfilled, onRejected); | ||
} | ||
|
||
catch<TResult>( | ||
onRejected?: | ||
| ((reason: any) => TResult | PromiseLike<TResult>) | ||
| undefined | ||
| null, | ||
): Promise<T | TResult> { | ||
return this._promise.catch(onRejected); | ||
} | ||
|
||
cancel(): void { | ||
if (!this._pending || this._canceled) { | ||
return; | ||
} | ||
|
||
if (typeof this._cancel === 'function') { | ||
try { | ||
this._cancel(); | ||
} catch (err) { | ||
this._reject(err); | ||
} | ||
} | ||
|
||
this._canceled = true; | ||
this._reject(new CancelError()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters