-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(Subscription): Subscription now implements Symbol.dispose
#7305
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,10 +144,28 @@ export class Subscription implements SubscriptionLike { | |
} | ||
} | ||
|
||
// Even though Subscription only conditionally implements `Symbol.dispose` | ||
// if it's available, we still need to declare it here so that TypeScript | ||
// knows that it exists on the prototype when it is available. | ||
export interface Subscription { | ||
[Symbol.dispose](): void; | ||
} | ||
|
||
if (typeof Symbol.dispose === 'symbol') { | ||
Subscription.prototype[Symbol.dispose] = Subscription.prototype.unsubscribe; | ||
} | ||
|
||
function execFinalizer(finalizer: Unsubscribable | (() => void)) { | ||
if (isFunction(finalizer)) { | ||
finalizer(); | ||
} else { | ||
finalizer.unsubscribe(); | ||
} | ||
} | ||
|
||
// Ensure that `Symbol.dispose` is defined in TypeScript | ||
declare global { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about this one being moved to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. Also I suspect this will be removed in soon-released versions of TypeScript There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I'm not wrong, it will be added in 5.2 (next release), as they are also adding support for Source code of disposable interfaces: https://github.com/microsoft/TypeScript/blob/main/src/lib/esnext.disposable.d.ts#L7 |
||
interface SymbolConstructor { | ||
readonly dispose: unique symbol; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably move this interface to
types.ts
file (either being merged with the existingSubscription
interface or added as a new one like here) so it's in one place altogether. Also, maybe documentation could be added as well.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have reasons I put it here actually:
Observable
to a single file (until I can split packages up)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought we already had
Subscription
interface, but we haveSubscriptionLike
which is not this one.