-
Notifications
You must be signed in to change notification settings - Fork 439
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
Simplify / fix HTMLCollection overrides #813
base: main
Are you sure you want to change the base?
Conversation
I came across this while implementing #222, but decided it's worthwile to separate out this refactoring into its own PR as it's not strictly related to that issue. |
} | ||
|
||
declare var HTMLCollection: { | ||
prototype: HTMLCollection; | ||
new(): HTMLCollection; | ||
}; | ||
|
||
interface HTMLCollectionOf<T extends Element> extends HTMLCollectionBase { |
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 and probably other people have used it in own code (API which should usable with getElementsByTagNameNS
output for example.
So this interface should probably survive with a @deprecated
tag.
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.
The interface name also is consistent with NodeListOf
.
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.
Added a deprecated HTMLCollectionOf
alias for backwards compatibility. @saschanaz should I maybe do the same for NodeListOf
then for consistency?
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.
Ping @saschanaz.
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 don't have a strong opinion here, maybe @sandersn ?
Use an extra optional type param on HTMLCollection for `namedItem` override. This simplifies / removes quite a lot of emitter code that was necessary to maintain just for this override. Instead, this PR is using regular backward-compatible type system capabilities. As an additional benefit, this removes a phantom HTMLCollectionOf class that previously appeared as a valid global, but doesn't really exist in JavaScript global object.
550a6a7
to
a2a424a
Compare
a2a424a
to
8bca275
Compare
Revisiting this after 2 years... 😅 Now that I have a permission to merge, I find this beneficial with no regression. Could you try rebasing? I can cherry-pick this PR if you are too busy. Thank you! |
Lol it's been a while, yeah 😅 If you could rebase on your side, that would be great, yeah. |
Use an extra optional type param on HTMLCollection for
namedItem
override.This simplifies / removes quite a lot of emitter code that was necessary to maintain just for this override.
Instead, this PR is using regular backward-compatible type system capabilities.
As an additional benefit, this removes a phantom HTMLCollectionOf class that previously appeared as a valid global, but doesn't really exist in JavaScript global object.