-
Notifications
You must be signed in to change notification settings - Fork 603
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
Hide tooltips on touchend
event
#5830
Conversation
🦋 Changeset detectedLatest commit: 5d4987d The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
👋 Hi, this pull request contains changes to the source code that github/github depends on. If you are GitHub staff, we recommend testing these changes with github/github using the integration workflow. Thanks! |
size-limit report 📦
|
…into hide-tooltips-on-tap
4b9f5a3
to
072db09
Compare
I really tried hard to write tests for this, but I can't find a way to assert that the tooltip is open/closed in Jest in CI. I tried testing for |
👋 Hi from github/github! Your integration PR is ready: https://github.com/github/github/pull/370353 |
🟢 golden-jobs completed with status |
@@ -3325,8 +3325,9 @@ exports[`TextInput renders trailingAction icon button 1`] = ` | |||
onBlur={[Function]} | |||
onClick={[MockFunction]} | |||
onFocus={[Function]} | |||
onMouseEnter={[Function]} |
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.
Not sure if this will be problematic in integrations in dotcom?
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.
LGTM!
Co-authored-by: Jon Rohan <[email protected]>
👋 Hi, there are new commits since the last successful integration test. We recommend running the integration workflow once more, unless you are sure the new changes do not affect github/github. Thanks! |
Closes https://github.com/github/primer/issues/4431 (see issue for context)
Adds an event handler to
TooltipV2
to hide the tooltip on touch end, so that tooltips automatically hide when the target element is tapped. This prevents tooltips from remaining visible after a button is interacted with, while still allowing touch device users to see tooltips via tapping and holding.This required converting the
onMouseEnter
handler to anonMouseOverCapture
handler so that it would run first so that theonTouchEnd
handler could cancel the pending 50ms timeout. Alternatively I could have wrapped theonTouchEnd
handler in its own timeout, but that felt hacky and like a race condition waiting to happen.I confirmed that this fixes the problem on mobile devices (note I also confirmed that you can view the tooltips with an intentional long tap, but that was hard to capture on video):
screen-20250328-124320.mp4
And does not regress showing the tooltip on hover/focus:
Screen.Recording.2025-03-28.at.1.12.34.PM.mov
Changelog
New
Changed
TooltipV2
tooltips on touch-endRemoved
Rollout strategy
Testing & Reviewing
Merge checklist