-
Notifications
You must be signed in to change notification settings - Fork 4.7k
fix(web): dismiss chat tooltips when scrolling #7768
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
Open
Ic3b3rg
wants to merge
5
commits into
pingdotgg:main
Choose a base branch
from
Ic3b3rg:fix/chat-tooltip-scroll-dismiss
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+283
−10
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
062c63e
fix(web): dismiss chat tooltips when scrolling
Ic3b3rg 4523b7f
fix(web): preserve tooltip focus within triggers
Ic3b3rg b0d52bb
fix(web): keep timeline tooltips above chat chrome
Ic3b3rg 5376f96
fix(web): retain focused tooltip tracking
Ic3b3rg 55de62b
Merge branch 'main' into fix/chat-tooltip-scroll-dismiss
Ic3b3rg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,125 @@ | ||
| import { type ComponentProps, Fragment, type ReactNode } from "react"; | ||
| import { renderToStaticMarkup } from "react-dom/server"; | ||
| import { describe, expect, it, vi } from "vite-plus/test"; | ||
|
|
||
| vi.mock("@base-ui/react/tooltip", () => { | ||
| function Positioner({ | ||
| children, | ||
| className, | ||
| ...props | ||
| }: ComponentProps<"div"> & { children?: ReactNode }) { | ||
| return ( | ||
| <div className={className} {...props}> | ||
| {children} | ||
| </div> | ||
| ); | ||
| } | ||
|
|
||
| function Element({ children, ...props }: ComponentProps<"div"> & { children?: ReactNode }) { | ||
| return <div {...props}>{children}</div>; | ||
| } | ||
|
|
||
| return { | ||
| Tooltip: { | ||
| createHandle: () => ({}), | ||
| Provider: Fragment, | ||
| Root: Fragment, | ||
| Trigger: Element, | ||
| Portal: Fragment, | ||
| Positioner, | ||
| Popup: Element, | ||
| Viewport: Element, | ||
| }, | ||
| }; | ||
| }); | ||
|
|
||
| import { TooltipPopup, TooltipScrollDismissProvider } from "./tooltip"; | ||
| import { createTooltipScrollDismissController } from "./tooltipScrollDismiss"; | ||
|
|
||
| function createFakeTooltipTrigger() { | ||
| const ownerDocument = { | ||
| activeElement: null as Element | null, | ||
| }; | ||
| const descendants = new Set<Node>(); | ||
| const trigger = { | ||
| ownerDocument, | ||
| contains(node: Node | null) { | ||
| return node === trigger || (node !== null && descendants.has(node)); | ||
| }, | ||
| } as unknown as HTMLElement; | ||
|
|
||
| return { descendants, ownerDocument, trigger }; | ||
| } | ||
|
|
||
| describe("tooltip layering", () => { | ||
| it("keeps global tooltips above dropdowns", () => { | ||
| const html = renderToStaticMarkup(<TooltipPopup>Global tooltip</TooltipPopup>); | ||
|
|
||
| expect(html).toContain("z-[140]"); | ||
| }); | ||
|
|
||
| it("keeps timeline tooltips above chat chrome", () => { | ||
| const html = renderToStaticMarkup( | ||
| <TooltipScrollDismissProvider onTriggerHoverChange={() => {}}> | ||
| <TooltipPopup>Timeline tooltip</TooltipPopup> | ||
| </TooltipScrollDismissProvider>, | ||
| ); | ||
|
|
||
| expect(html).toContain("z-[140]"); | ||
| expect(html).not.toContain("z-[15]"); | ||
| }); | ||
| }); | ||
|
|
||
| describe("tooltip scroll dismissal", () => { | ||
| it("dismisses the hovered tooltip once when its content scrolls", () => { | ||
| const controller = createTooltipScrollDismissController(); | ||
| const { trigger } = createFakeTooltipTrigger(); | ||
| const dismiss = vi.fn(); | ||
|
|
||
| controller.setHoveredTooltip({ trigger, dismiss }); | ||
| controller.dismissHoveredTooltip(); | ||
| controller.dismissHoveredTooltip(); | ||
|
|
||
| expect(dismiss).toHaveBeenCalledOnce(); | ||
| }); | ||
|
|
||
| it("keeps a focused tooltip open when its content scrolls", () => { | ||
| const controller = createTooltipScrollDismissController(); | ||
| const { ownerDocument, trigger } = createFakeTooltipTrigger(); | ||
| const dismiss = vi.fn(); | ||
| ownerDocument.activeElement = trigger; | ||
|
|
||
| controller.setHoveredTooltip({ trigger, dismiss }); | ||
| controller.dismissHoveredTooltip(); | ||
|
|
||
| expect(dismiss).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it("dismisses a hovered tooltip on a later scroll after focus leaves", () => { | ||
| const controller = createTooltipScrollDismissController(); | ||
| const { ownerDocument, trigger } = createFakeTooltipTrigger(); | ||
| const dismiss = vi.fn(); | ||
| ownerDocument.activeElement = trigger; | ||
|
|
||
| controller.setHoveredTooltip({ trigger, dismiss }); | ||
| controller.dismissHoveredTooltip(); | ||
| ownerDocument.activeElement = null; | ||
| controller.dismissHoveredTooltip(); | ||
|
|
||
| expect(dismiss).toHaveBeenCalledOnce(); | ||
| }); | ||
|
|
||
| it("keeps a tooltip open when focus is within its trigger", () => { | ||
| const controller = createTooltipScrollDismissController(); | ||
| const { descendants, ownerDocument, trigger } = createFakeTooltipTrigger(); | ||
| const focusedChild = {} as Element; | ||
| const dismiss = vi.fn(); | ||
| descendants.add(focusedChild); | ||
| ownerDocument.activeElement = focusedChild; | ||
|
|
||
| controller.setHoveredTooltip({ trigger, dismiss }); | ||
| controller.dismissHoveredTooltip(); | ||
|
|
||
| expect(dismiss).not.toHaveBeenCalled(); | ||
| }); | ||
| }); |
This file contains hidden or 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 hidden or 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,34 @@ | ||
| type HoveredTooltip = { | ||
| trigger: HTMLElement; | ||
| dismiss: () => void; | ||
| }; | ||
|
|
||
| type TooltipScrollDismissController = { | ||
| setHoveredTooltip: (tooltip: HoveredTooltip | null) => void; | ||
| dismissHoveredTooltip: () => void; | ||
| }; | ||
|
|
||
| function createTooltipScrollDismissController(): TooltipScrollDismissController { | ||
| let hoveredTooltip: HoveredTooltip | null = null; | ||
|
|
||
| return { | ||
| setHoveredTooltip(tooltip) { | ||
| hoveredTooltip = tooltip; | ||
| }, | ||
| dismissHoveredTooltip() { | ||
| const tooltip = hoveredTooltip; | ||
|
|
||
| if ( | ||
| tooltip === null || | ||
| tooltip.trigger.contains(tooltip.trigger.ownerDocument.activeElement) | ||
| ) { | ||
| return; | ||
| } | ||
|
|
||
| hoveredTooltip = null; | ||
| tooltip.dismiss(); | ||
|
macroscopeapp[bot] marked this conversation as resolved.
|
||
| }, | ||
| }; | ||
| } | ||
|
|
||
| export { createTooltipScrollDismissController, type HoveredTooltip }; | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.