Skip to content

Commit

Permalink
fix(ui5-popover): fix auto close when click on iframe inside a shadow…
Browse files Browse the repository at this point in the history
… root (#8961)

* fix(ui5-popover): fix auto close when click on iframe inside a shadow root

* chore: fix test

* chore: fix test
  • Loading branch information
TeodorTaushanov committed May 15, 2024
1 parent d05839d commit 5c2f5f6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/main/src/popup-utils/PopoverRegistry.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { isClickInRect } from "@ui5/webcomponents-base/dist/util/PopupUtils.js";
import type { Interval } from "@ui5/webcomponents-base/dist/types.js";
import getActiveElement from "@ui5/webcomponents-base/dist/util/getActiveElement.js";
import type Popover from "../Popover.js";
import { instanceOfPopover } from "../Popover.js";
import { getOpenedPopups, addOpenedPopup, removeOpenedPopup } from "./OpenedPopupsRegistry.js";
Expand All @@ -20,7 +21,7 @@ const repositionPopovers = () => {
};

const closePopoversIfLostFocus = () => {
if (document.activeElement!.tagName === "IFRAME") {
if (getActiveElement()!.tagName === "IFRAME") {
getRegistry().reverse().forEach(popup => popup.instance.closePopup(false, false, true));
}
};
Expand Down
6 changes: 6 additions & 0 deletions packages/main/test/pages/Popover.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@

<body class="popover2auto">
<iframe id="clickThisIframe" src="//localhost:8080"></iframe>
<div id="host">
<template shadowrootmode="open">
<span>I'm in the shadow DOM</span>
<iframe id="clickThisIframeInsideShadowRoot" src="//localhost:8080"></iframe>
</template>
</div>
<ui5-button id="btn">Click me !</ui5-button>

<ui5-popover id="pop" class="popover6auto" placement="Top" accessible-name="This popover is important">
Expand Down
14 changes: 14 additions & 0 deletions packages/main/test/specs/Popover.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,20 @@ describe("Popover general interaction", () => {
assert.notOk(await popover.isDisplayedInViewport(), "Popover is closed.");
});

it("tests clicking on an iframe inside a shadow root closes the popover", async () => {
const btnOpenPopover = await browser.$("#btn");
await btnOpenPopover.click();

const popover = await browser.$("#pop");
const iframe = await browser.$("#host").shadow$("#clickThisIframeInsideShadowRoot");

assert.ok(await popover.isDisplayedInViewport(), "Popover is opened.");

await iframe.click();

assert.notOk(await popover.isDisplayedInViewport(), "Popover is closed.");
});

it("Test initial focus when content is provided after the header and footer", async () => {
const listContainerItem = await browser.$("#popoverFocusButton");
await listContainerItem.scrollIntoView();
Expand Down

0 comments on commit 5c2f5f6

Please sign in to comment.