Quick Chat's outside-pointer dismissal now recognizes body-portaled dropdown menus (model, thinking-level, agent, dependency, node, priority) as part of the panel instead of treating them as outside clicks. - Extend FloatingWindow's outside-pointerdown safe-surface selector to include the portaled dropdown classes used by model combobox, model nested menu, dependency, node picker, agent picker, and priority picker menus - Add regression tests covering pointerdown on each portaled dropdown surface and on a child element inside a portaled dropdown, asserting onClose is not called - Update dashboard-guide docs to describe that these portal dropdowns are treated as part of the Quick Chat panel for outside-click purposes Files changed: docs/dashboard-guide.md | 2 +- .../dashboard/app/components/FloatingWindow.tsx | 19 +++++++- .../components/__tests__/FloatingWindow.test.tsx | 50 ++++++++++++++++++++++ 3 files changed, 69 insertions(+), 2 deletions(-) Fusion-Task-Id: FN-7943 Fusion-Task-Lineage: fa91bd43-241c-48b0-8858-16521f383784 Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
606 lines
24 KiB
TypeScript
606 lines
24 KiB
TypeScript
import { render, screen, fireEvent } from "@testing-library/react";
|
|
import { readFileSync } from "node:fs";
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { loadAllAppCss, loadStylesCss } from "../../test/cssFixture";
|
|
import { FloatingWindow } from "../FloatingWindow";
|
|
|
|
const floatingWindowCss = readFileSync("app/components/FloatingWindow.css", "utf8");
|
|
const allAppCss = loadAllAppCss();
|
|
const stylesCss = loadStylesCss();
|
|
|
|
const QUICK_CHAT_PORTALED_MENU_CLASSES = [
|
|
"model-combobox-dropdown--portal",
|
|
"model-nested-menu--portal",
|
|
"dep-dropdown--portal",
|
|
"node-picker-dropdown--portal",
|
|
"agent-picker-dropdown--portal",
|
|
"priority-picker-dropdown--portal",
|
|
] as const;
|
|
|
|
function cssRuleFor(css: string, selector: string): string {
|
|
const start = css.indexOf(`${selector} {`);
|
|
if (start === -1) return "";
|
|
const end = css.indexOf("}", start);
|
|
return css.slice(start, end);
|
|
}
|
|
|
|
function cssRuleContaining(css: string, selector: string, declaration: string): string {
|
|
const escaped = selector.replace(/[.*+?^${}()|[\]\\]/g, "\\$&").replace(/\\ /g, "\\s+");
|
|
const matches = css.matchAll(new RegExp(`${escaped}\\s*\\{[^}]*\\}`, "g"));
|
|
for (const match of matches) {
|
|
if (match[0].includes(declaration)) return match[0];
|
|
}
|
|
return "";
|
|
}
|
|
|
|
/*
|
|
FNXC:FloatingWindow 2026-06-22-20:45:
|
|
Contract tests for the reusable non-blocking floating window:
|
|
- the overlay is click-through (pointer-events:none) so the page and other windows behind it stay interactive,
|
|
- the panel re-enables pointer events and carries a header drag handle + resize handles,
|
|
- focus-to-front raises this window's z-index above any previously-opened window,
|
|
- close removes the window (onClose fires).
|
|
JSDOM has no real layout/pointer-capture, so drag math is asserted in the RightDockExpandModal pattern's own suite; here we assert the structural + stacking contract that makes multiple coexisting windows non-blocking.
|
|
*/
|
|
|
|
describe("FloatingWindow", () => {
|
|
beforeEach(() => {
|
|
localStorage.clear();
|
|
});
|
|
it("renders a non-blocking, click-through transparent overlay with a pointer-events:auto panel", () => {
|
|
render(
|
|
<FloatingWindow windowKey="alpha" title="Alpha" onClose={() => {}}>
|
|
<div>alpha body</div>
|
|
</FloatingWindow>
|
|
);
|
|
const overlay = screen.getByTestId("floating-window-overlay-alpha");
|
|
// styles.css is not loaded here, so assert via the class contract the CSS attaches pointer-events:none to.
|
|
expect(overlay.className).toContain("floating-window-overlay");
|
|
const panel = screen.getByTestId("floating-window-alpha");
|
|
expect(panel.className).toContain("floating-window");
|
|
// Panel is positioned/stacked via inline style.
|
|
expect(panel.style.position === "" || panel.style.left).toBeDefined();
|
|
expect(panel.style.zIndex).not.toBe("");
|
|
});
|
|
|
|
it("exposes a header drag handle and resize handles", () => {
|
|
render(
|
|
<FloatingWindow windowKey="beta" title="Beta" onClose={() => {}}>
|
|
<div>beta body</div>
|
|
</FloatingWindow>
|
|
);
|
|
expect(screen.getByTestId("floating-window-drag-handle-beta")).toBeTruthy();
|
|
// 8 edge/corner resize handles.
|
|
for (const dir of ["n", "s", "e", "w", "ne", "nw", "se", "sw"]) {
|
|
expect(screen.getByTestId(`floating-window-resize-${dir}`)).toBeTruthy();
|
|
}
|
|
});
|
|
|
|
it("uses a theme-overridable gentle shadow token instead of an undefined shadow", () => {
|
|
const windowRule = floatingWindowCss.match(/\.floating-window\s*\{([^}]*)\}/)?.[1] ?? "";
|
|
|
|
expect(windowRule).toContain("--floating-window-shadow: var(--shadow-lg);");
|
|
expect(windowRule).toContain("box-shadow: var(--floating-window-shadow, var(--shadow-lg));");
|
|
expect(floatingWindowCss).not.toContain("var(--shadow-xl)");
|
|
});
|
|
|
|
it("keeps movable mobile drag handles opted out of the pan-y touch lockdown", () => {
|
|
expect(allAppCss).toContain("html,");
|
|
expect(allAppCss).toContain("body {");
|
|
expect(allAppCss).toContain("touch-action: pan-y;");
|
|
expect(allAppCss).toContain("* {");
|
|
expect(allAppCss).toContain("#root {");
|
|
|
|
const movableFloatingWindowSelector = ".floating-window:not(.floating-window--chat):not(.floating-window--task-detail):not(.floating-window--workflow-editor):not(.floating-window--automation):not(.floating-window--mission-interview):not(.floating-window--file-browser):not(.floating-window--pr-create):not(.artifacts-gallery-window) .floating-window__header";
|
|
expect(cssRuleFor(floatingWindowCss, movableFloatingWindowSelector)).toContain("touch-action: none;");
|
|
|
|
for (const selector of [
|
|
".right-dock-expand-modal__header--draggable",
|
|
".terminal-header--draggable",
|
|
]) {
|
|
expect(cssRuleFor(allAppCss, selector)).toContain("touch-action: none;");
|
|
}
|
|
});
|
|
|
|
it("keeps every tablet movable-modal drag handle on the explicit touch-action none contract", () => {
|
|
const tabletStylesStart = stylesCss.indexOf("@media (min-width: 769px) and (max-width: 1024px)");
|
|
const mobileStylesStart = stylesCss.indexOf("@media (max-width: 768px)", tabletStylesStart);
|
|
expect(tabletStylesStart).toBeGreaterThan(-1);
|
|
expect(mobileStylesStart).toBeGreaterThan(tabletStylesStart);
|
|
|
|
const tabletBlock = stylesCss.slice(tabletStylesStart, mobileStylesStart);
|
|
expect(tabletBlock).not.toContain("* {");
|
|
expect(tabletBlock).not.toContain("touch-action: pan-y;");
|
|
|
|
for (const selector of [
|
|
".floating-window__header",
|
|
".floating-window--headerless .task-detail-content--embedded > .modal-header",
|
|
".chat-view--floating .view-header",
|
|
".floating-window--workflow-editor .wf-editor-header",
|
|
".floating-window--automation .automation-modal__drag-handle",
|
|
".floating-window--mission-interview .mission-interview-modal__drag-handle",
|
|
".floating-window--pr-create .pr-create-modal__drag-handle",
|
|
".file-browser-modal-header",
|
|
".artifacts-gallery-viewer-header",
|
|
".terminal-header--draggable",
|
|
".right-dock-expand-modal__header--draggable",
|
|
".new-task-modal__header--draggable",
|
|
".quick-chat-fab",
|
|
]) {
|
|
expect(cssRuleContaining(allAppCss, selector, "touch-action: none;"), selector).toContain("touch-action: none;");
|
|
}
|
|
});
|
|
|
|
it("moves a visible-header window through the captured touch drag path", () => {
|
|
render(
|
|
<FloatingWindow
|
|
windowKey="touch-drag"
|
|
title="A very long movable floating window title that still starts drag from the ellipsized title text"
|
|
onClose={() => {}}
|
|
defaultSize={{ width: 320, height: 240 }}
|
|
defaultPosition={{ x: 80, y: 90 }}
|
|
minSize={{ width: 240, height: 180 }}
|
|
>
|
|
<div>touch drag body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
const panel = screen.getByTestId("floating-window-touch-drag");
|
|
const header = screen.getByTestId("floating-window-drag-handle-touch-drag");
|
|
const titleText = screen.getByText(/very long movable floating window title/i);
|
|
const setPointerCapture = vi.fn();
|
|
const releasePointerCapture = vi.fn();
|
|
Object.defineProperty(header, "setPointerCapture", { configurable: true, value: setPointerCapture });
|
|
Object.defineProperty(header, "releasePointerCapture", { configurable: true, value: releasePointerCapture });
|
|
|
|
fireEvent.pointerDown(titleText, { pointerId: 17, pointerType: "touch", clientX: 100, clientY: 120 });
|
|
fireEvent.pointerMove(header, { pointerId: 17, pointerType: "touch", clientX: 140, clientY: 150 });
|
|
fireEvent.pointerUp(header, { pointerId: 17, pointerType: "touch", clientX: 140, clientY: 150 });
|
|
|
|
expect(setPointerCapture).toHaveBeenCalledWith(17);
|
|
expect(releasePointerCapture).toHaveBeenCalledWith(17);
|
|
expect(panel.style.left).toBe("120px");
|
|
expect(panel.style.top).toBe("120px");
|
|
});
|
|
|
|
it("can hide generic chrome and delegate dragging to a child header", () => {
|
|
render(
|
|
<FloatingWindow
|
|
windowKey="task"
|
|
title="KB-001"
|
|
onClose={() => {}}
|
|
hideHeader
|
|
dragHandleSelector=".task-detail-content--embedded > .modal-header"
|
|
className="floating-window--task-detail"
|
|
>
|
|
<div className="task-detail-content--embedded">
|
|
<div className="modal-header">KB-001</div>
|
|
<div>task body</div>
|
|
</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
expect(screen.queryByTestId("floating-window-drag-handle-task")).toBeNull();
|
|
expect(screen.getByTestId("floating-window-task")).toHaveClass("floating-window--headerless");
|
|
expect(screen.getByTestId("floating-window-task")).toHaveClass("floating-window--task-detail");
|
|
expect(screen.getByText("KB-001")).toBeInTheDocument();
|
|
for (const dir of ["n", "s", "e", "w", "ne", "nw", "se", "sw"]) {
|
|
expect(screen.getByTestId(`floating-window-resize-${dir}`)).toBeTruthy();
|
|
}
|
|
});
|
|
|
|
it("moves a headerless delegated handle through the captured tablet touch drag path", () => {
|
|
render(
|
|
<FloatingWindow
|
|
windowKey="artifacts-delegate"
|
|
title="Artifacts"
|
|
onClose={() => {}}
|
|
hideHeader
|
|
dragHandleSelector=".artifacts-gallery-viewer-header"
|
|
className="artifacts-gallery-window"
|
|
defaultSize={{ width: 320, height: 240 }}
|
|
defaultPosition={{ x: 90, y: 110 }}
|
|
minSize={{ width: 240, height: 180 }}
|
|
>
|
|
<div className="artifacts-gallery-viewer-header">Artifacts header</div>
|
|
<div aria-label="empty artifacts body" />
|
|
</FloatingWindow>
|
|
);
|
|
|
|
const panel = screen.getByTestId("floating-window-artifacts-delegate");
|
|
const delegatedHeader = screen.getByText("Artifacts header");
|
|
const setPointerCapture = vi.fn();
|
|
const releasePointerCapture = vi.fn();
|
|
Object.defineProperty(panel, "setPointerCapture", { configurable: true, value: setPointerCapture });
|
|
Object.defineProperty(panel, "releasePointerCapture", { configurable: true, value: releasePointerCapture });
|
|
|
|
fireEvent.pointerDown(delegatedHeader, { pointerId: 23, pointerType: "touch", clientX: 120, clientY: 140 });
|
|
fireEvent.pointerMove(panel, { pointerId: 23, pointerType: "touch", clientX: 150, clientY: 170 });
|
|
fireEvent.pointerUp(panel, { pointerId: 23, pointerType: "touch", clientX: 150, clientY: 170 });
|
|
|
|
expect(setPointerCapture).toHaveBeenCalledWith(23);
|
|
expect(releasePointerCapture).toHaveBeenCalledWith(23);
|
|
expect(panel.style.left).toBe("120px");
|
|
expect(panel.style.top).toBe("140px");
|
|
});
|
|
|
|
it("scopes mobile sheet sizing and hidden resize handles to task-detail pop-outs", () => {
|
|
expect(floatingWindowCss).toContain("FNXC:MobileTaskPopups 2026-06-29-00:00");
|
|
expect(floatingWindowCss).toContain(".floating-window--task-detail {");
|
|
expect(floatingWindowCss).toContain("width: 100vw !important;");
|
|
expect(floatingWindowCss).toContain("height: 100dvh !important;");
|
|
expect(floatingWindowCss).toContain(".floating-window--task-detail .floating-window__resize-handle");
|
|
expect(floatingWindowCss).toContain("display: none;");
|
|
expect(floatingWindowCss).toContain("cursor: default;");
|
|
expect(floatingWindowCss).toContain("touch-action: auto;");
|
|
});
|
|
|
|
it("does not apply task-detail mobile sizing to chat floating windows", () => {
|
|
const taskRuleIndex = floatingWindowCss.indexOf(".floating-window--task-detail {");
|
|
const chatRuleIndex = floatingWindowCss.indexOf(".floating-window--chat {");
|
|
|
|
expect(taskRuleIndex).toBeGreaterThan(-1);
|
|
expect(chatRuleIndex).toBeGreaterThan(-1);
|
|
expect(taskRuleIndex).not.toBe(chatRuleIndex);
|
|
});
|
|
|
|
it("focus-to-front: interacting with an older utility window raises its z-index above the newest utility window", () => {
|
|
render(
|
|
<>
|
|
<FloatingWindow windowKey="first" title="First" onClose={() => {}}>
|
|
<div>first</div>
|
|
</FloatingWindow>
|
|
<FloatingWindow windowKey="second" title="Second" onClose={() => {}}>
|
|
<div>second</div>
|
|
</FloatingWindow>
|
|
</>
|
|
);
|
|
const first = screen.getByTestId("floating-window-first");
|
|
const second = screen.getByTestId("floating-window-second");
|
|
// Second mounted last → starts on top.
|
|
expect(Number(second.style.zIndex)).toBeGreaterThan(Number(first.style.zIndex));
|
|
// Clicking the first panel raises it above the second.
|
|
fireEvent.pointerDown(first);
|
|
expect(Number(first.style.zIndex)).toBeGreaterThan(Number(second.style.zIndex));
|
|
});
|
|
|
|
it("keeps task-detail popups in the board layer while allowing raise among task popups", () => {
|
|
render(
|
|
<>
|
|
<FloatingWindow windowKey="task-a" title="Task A" onClose={() => {}} layer="task-detail" className="floating-window--task-detail">
|
|
<div>task a</div>
|
|
</FloatingWindow>
|
|
<FloatingWindow windowKey="task-b" title="Task B" onClose={() => {}} layer="task-detail" className="floating-window--task-detail">
|
|
<div>task b</div>
|
|
</FloatingWindow>
|
|
<FloatingWindow windowKey="utility" title="Utility" onClose={() => {}}>
|
|
<div>utility</div>
|
|
</FloatingWindow>
|
|
</>,
|
|
);
|
|
|
|
const taskA = screen.getByTestId("floating-window-task-a");
|
|
const taskB = screen.getByTestId("floating-window-task-b");
|
|
const utility = screen.getByTestId("floating-window-utility");
|
|
const taskAOverlay = screen.getByTestId("floating-window-overlay-task-a");
|
|
const utilityOverlay = screen.getByTestId("floating-window-overlay-utility");
|
|
|
|
expect(Number(taskB.style.zIndex)).toBeGreaterThan(Number(taskA.style.zIndex));
|
|
expect(Number(utility.style.zIndex)).toBeGreaterThan(Number(taskB.style.zIndex));
|
|
expect(Number(utilityOverlay.style.zIndex)).toBeGreaterThan(Number(taskAOverlay.style.zIndex));
|
|
|
|
fireEvent.pointerDown(taskA);
|
|
expect(Number(taskA.style.zIndex)).toBeGreaterThan(Number(taskB.style.zIndex));
|
|
expect(Number(taskA.style.zIndex)).toBeLessThan(Number(utility.style.zIndex));
|
|
});
|
|
|
|
it("close button removes the window via onClose", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="gamma" title="Gamma" onClose={onClose}>
|
|
<div>gamma body</div>
|
|
</FloatingWindow>
|
|
);
|
|
fireEvent.click(screen.getByTestId("floating-window-close-gamma"));
|
|
expect(onClose).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it("closes on outside pointerdown only when the opt-in prop is enabled", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="outside-close" title="Outside close" onClose={onClose} closeOnOutsidePointerDown>
|
|
<div>inside body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
fireEvent.pointerDown(document.body);
|
|
|
|
expect(onClose).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it("does not close for inside pointerdown when outside dismissal is enabled", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="inside-safe" title="Inside safe" onClose={onClose} closeOnOutsidePointerDown>
|
|
<button type="button">Inside action</button>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
fireEvent.pointerDown(screen.getByText("Inside action"));
|
|
fireEvent.pointerDown(screen.getByTestId("floating-window-body-inside-safe"));
|
|
fireEvent.pointerDown(screen.getByTestId("floating-window-inside-safe"));
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("keeps page clicks non-dismissive by default for persistent floating windows", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="persistent" title="Persistent" onClose={onClose}>
|
|
<div>persistent body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
fireEvent.pointerDown(document.body);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("does not close on outside pointerdown when the opt-in prop is explicitly false", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="outside-disabled" title="Outside disabled" onClose={onClose} closeOnOutsidePointerDown={false}>
|
|
<div>chat body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
fireEvent.pointerDown(document.body);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("does not close when the outside target is another floating or dialog surface", () => {
|
|
for (const surfaceClassOrRole of ["modal-overlay", "floating-window", "dialog-role"] as const) {
|
|
const onClose = vi.fn();
|
|
const { unmount } = render(
|
|
<FloatingWindow windowKey={`nested-${surfaceClassOrRole}`} title="Nested safe" onClose={onClose} closeOnOutsidePointerDown>
|
|
<div>chat body</div>
|
|
</FloatingWindow>
|
|
);
|
|
const surface = document.createElement("div");
|
|
if (surfaceClassOrRole === "dialog-role") {
|
|
surface.setAttribute("role", "dialog");
|
|
} else {
|
|
surface.className = surfaceClassOrRole;
|
|
}
|
|
document.body.appendChild(surface);
|
|
|
|
fireEvent.pointerDown(surface);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
surface.remove();
|
|
unmount();
|
|
}
|
|
});
|
|
|
|
it("does not close when pointerdown targets Quick Chat's body-portaled dropdown surfaces", () => {
|
|
for (const portalClassName of QUICK_CHAT_PORTALED_MENU_CLASSES) {
|
|
const onClose = vi.fn();
|
|
const { unmount } = render(
|
|
<FloatingWindow windowKey={`portal-safe-${portalClassName}`} title="Portal safe" onClose={onClose} closeOnOutsidePointerDown>
|
|
<div>chat body</div>
|
|
</FloatingWindow>
|
|
);
|
|
const portalSurface = document.createElement("div");
|
|
portalSurface.className = portalClassName;
|
|
document.body.appendChild(portalSurface);
|
|
|
|
fireEvent.pointerDown(portalSurface);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
portalSurface.remove();
|
|
unmount();
|
|
}
|
|
});
|
|
|
|
it("does not close when pointerdown targets an element inside a Quick Chat body-portaled dropdown", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="portal-child-safe" title="Portal child safe" onClose={onClose} closeOnOutsidePointerDown>
|
|
<div>chat body</div>
|
|
</FloatingWindow>
|
|
);
|
|
const portalSurface = document.createElement("div");
|
|
portalSurface.className = "model-combobox-dropdown--portal";
|
|
const option = document.createElement("button");
|
|
option.type = "button";
|
|
option.textContent = "Model option";
|
|
portalSurface.appendChild(option);
|
|
document.body.appendChild(portalSurface);
|
|
|
|
fireEvent.pointerDown(option);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
portalSurface.remove();
|
|
});
|
|
|
|
it("does not close from outside pointerdown while a resize gesture is active", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="resize-safe" title="Resize safe" onClose={onClose} closeOnOutsidePointerDown>
|
|
<div>resize body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
fireEvent.pointerDown(screen.getByTestId("floating-window-resize-se"), { pointerId: 1 });
|
|
fireEvent.pointerDown(document.body);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("ignores compatibility pointer events immediately after touch gestures", () => {
|
|
const onClose = vi.fn();
|
|
render(
|
|
<FloatingWindow windowKey="touch-safe" title="Touch safe" onClose={onClose} closeOnOutsidePointerDown>
|
|
<div>touch body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
fireEvent.touchStart(document);
|
|
fireEvent.touchEnd(document);
|
|
fireEvent.pointerDown(document.body);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("removes the outside pointerdown listener on unmount", () => {
|
|
const onClose = vi.fn();
|
|
const { unmount } = render(
|
|
<FloatingWindow windowKey="cleanup" title="Cleanup" onClose={onClose} closeOnOutsidePointerDown>
|
|
<div>cleanup body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
unmount();
|
|
fireEvent.pointerDown(document.body);
|
|
|
|
expect(onClose).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("multiple windows coexist independently (each renders its own panel)", () => {
|
|
render(
|
|
<>
|
|
<FloatingWindow windowKey="w1" title="W1" onClose={() => {}}>
|
|
<div>one</div>
|
|
</FloatingWindow>
|
|
<FloatingWindow windowKey="w2" title="W2" onClose={() => {}}>
|
|
<div>two</div>
|
|
</FloatingWindow>
|
|
<FloatingWindow windowKey="w3" title="W3" onClose={() => {}}>
|
|
<div>three</div>
|
|
</FloatingWindow>
|
|
</>
|
|
);
|
|
expect(screen.getByTestId("floating-window-w1")).toBeTruthy();
|
|
expect(screen.getByTestId("floating-window-w2")).toBeTruthy();
|
|
expect(screen.getByTestId("floating-window-w3")).toBeTruthy();
|
|
});
|
|
|
|
it("restores persisted geometry and clamps it on screen", () => {
|
|
localStorage.setItem(
|
|
"floating-window:test",
|
|
JSON.stringify({
|
|
size: { width: 700, height: 500 },
|
|
position: { x: 9999, y: -200 },
|
|
}),
|
|
);
|
|
|
|
render(
|
|
<FloatingWindow
|
|
windowKey="persisted"
|
|
title="Persisted"
|
|
onClose={() => {}}
|
|
persistGeometryKey="floating-window:test"
|
|
minSize={{ width: 360, height: 280 }}
|
|
>
|
|
<div>persisted body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
const panel = screen.getByTestId("floating-window-persisted");
|
|
expect(panel.style.width).toBe("700px");
|
|
expect(panel.style.height).toBe("500px");
|
|
expect(panel.style.top).toBe("16px");
|
|
expect(Number.parseFloat(panel.style.left)).toBeLessThan(window.innerWidth);
|
|
});
|
|
|
|
it("falls back to default geometry when persisted geometry is malformed", () => {
|
|
localStorage.setItem("floating-window:malformed", "not-json");
|
|
|
|
render(
|
|
<FloatingWindow
|
|
windowKey="malformed"
|
|
title="Malformed"
|
|
onClose={() => {}}
|
|
persistGeometryKey="floating-window:malformed"
|
|
defaultSize={{ width: 610, height: 430 }}
|
|
defaultPosition={{ x: 80, y: 90 }}
|
|
>
|
|
<div>malformed body</div>
|
|
</FloatingWindow>
|
|
);
|
|
|
|
const panel = screen.getByTestId("floating-window-malformed");
|
|
expect(panel.style.width).toBe("610px");
|
|
expect(panel.style.height).toBe("430px");
|
|
expect(panel.style.left).toBe("80px");
|
|
expect(panel.style.top).toBe("90px");
|
|
});
|
|
|
|
it("shares geometry only between windows that opt into the same persistence key", () => {
|
|
localStorage.setItem(
|
|
"floating-window:shared-task-detail",
|
|
JSON.stringify({
|
|
size: { width: 660, height: 470 },
|
|
position: { x: 120, y: 96 },
|
|
}),
|
|
);
|
|
localStorage.setItem(
|
|
"floating-window:chat",
|
|
JSON.stringify({
|
|
size: { width: 520, height: 390 },
|
|
position: { x: 220, y: 140 },
|
|
}),
|
|
);
|
|
|
|
render(
|
|
<>
|
|
<FloatingWindow
|
|
windowKey="task-detail-FN-001"
|
|
title="FN-001"
|
|
onClose={() => {}}
|
|
persistGeometryKey="floating-window:shared-task-detail"
|
|
>
|
|
<div>task one</div>
|
|
</FloatingWindow>
|
|
<FloatingWindow
|
|
windowKey="task-detail-FN-002"
|
|
title="FN-002"
|
|
onClose={() => {}}
|
|
persistGeometryKey="floating-window:shared-task-detail"
|
|
>
|
|
<div>task two</div>
|
|
</FloatingWindow>
|
|
<FloatingWindow windowKey="chat" title="Chat" onClose={() => {}} persistGeometryKey="floating-window:chat">
|
|
<div>chat body</div>
|
|
</FloatingWindow>
|
|
</>
|
|
);
|
|
|
|
for (const id of ["FN-001", "FN-002"]) {
|
|
const panel = screen.getByTestId(`floating-window-task-detail-${id}`);
|
|
expect(panel.style.width).toBe("660px");
|
|
expect(panel.style.height).toBe("470px");
|
|
expect(panel.style.left).toBe("120px");
|
|
expect(panel.style.top).toBe("96px");
|
|
}
|
|
|
|
const chatPanel = screen.getByTestId("floating-window-chat");
|
|
expect(chatPanel.style.width).toBe("520px");
|
|
expect(chatPanel.style.height).toBe("390px");
|
|
expect(chatPanel.style.left).toBe("220px");
|
|
expect(chatPanel.style.top).toBe("140px");
|
|
});
|
|
|
|
it("makes only the mobile chat floating window full-screen", () => {
|
|
const mobileBlock = floatingWindowCss.match(/@media\s*\(max-width:\s*768px\)\s*\{[\s\S]*?\.floating-window--chat \.chat-view\s*\{[\s\S]*?\n\}/)?.[0];
|
|
|
|
expect(mobileBlock).toContain(".floating-window--chat");
|
|
expect(mobileBlock).toContain("width: 100vw !important;");
|
|
expect(mobileBlock).toContain("height: 100dvh !important;");
|
|
expect(mobileBlock).toContain(".floating-window--chat .floating-window__resize-handle");
|
|
expect(floatingWindowCss).not.toMatch(/@media\s*\(min-width:\s*769px\)[\s\S]*\.floating-window--chat[\s\S]*100dvh/);
|
|
});
|
|
});
|