-
-
Notifications
You must be signed in to change notification settings - Fork 274
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
fix: add missing timer clear methods to ContentScriptContext #1507
base: main
Are you sure you want to change the base?
fix: add missing timer clear methods to ContentScriptContext #1507
Conversation
✅ Deploy Preview for creative-fairy-df92c4 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Thanks for the PR, but why not just call |
@aklinker1 I understand that directly using global functions like clearTimeout would technically work, but I proposed these additions for the following reasons:
While I acknowledge that not adding these clear methods wouldn't necessarily cause problems, I believe making these additions would create a more intuitive and consistent developer experience. That said, I'm open to your thoughts on the best approach. |
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.
Sorry for the delay in getting back to you, was focused on getting v0.20 out the door!
API Consistency: The context already provides methods like setTimeout and setInterval, so developers would naturally expect corresponding clear methods to be available as well.
The purpose of the context object is to provides wrappers around async APIs that need to be canceled when the context is invalidated - the clear functions don't fit that purpose. I see where you're coming from around consistencies, but I think this could be resolved by updating the docs to use more clear wording and include examples for how to stop them.
Documentation Clarity: While the documentation shows examples of using ctx.setTimeout(), it doesn't mention how to clear these timers, which can be confusing for developers. (I personally was confused when I encountered type errors using ctx.clearTimeout(), and ended up creating a d.ts file to wrap wxt/client).
We can update the docs and JSDocs to mention how to clear the timers.
Type Safety: I was concerned that getting a timer ID from ctx.setTimeout() and then trying to use the global clearTimeout might cause type confusion or inconsistencies.
This should be fixed by #1531, so this shouldn't be a concern anymore.
clearTimeout(id: number | null): void { | ||
if (id !== null) { | ||
clearTimeout(id); | ||
} | ||
} |
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.
These should be | undefined
if we decide to keep them. And we don't need an if-statement either.
clearTimeout(id: number | null): void { | |
if (id !== null) { | |
clearTimeout(id); | |
} | |
} | |
clearTimeout(id: number | undefined): void { | |
clearTimeout(id); | |
} |
Same applies to clearInterval
.
@aklinker1 Thank you for your feedback. I understand your reasoning about the context object's purpose and agree that documentation improvements would be better than adding these methods. I'm happy to close this PR since the type safety concerns will be addressed in #1531 . Sorry for not fully understanding the project's contribution guidelines. This was my first contribution attempt. Would you prefer I close this PR? |
If you want to be the one to update the docs, feel free to keep it open and update it or close and open another PR. If not, close it and I can update them! |
Overview
Added missing timer clear methods (
clearTimeout
,clearInterval
,cancelAnimationFrame
,cancelIdleCallback
) to the ContentScriptContext class. The current class provides corresponding timer creation methods (setTimeout
,setInterval
, etc.) but lacks methods to clear them, causing TypeScript compilation errors.Manual Testing
Test with code using ContentScriptContext like:
Related Issue
No related issue.