UX: allows to close popover on escape (#16698)

This commit is contained in:
Joffrey JAFFEUX 2022-05-10 13:41:02 +02:00 committed by GitHub
parent 5fb6dd5664
commit 142ae3b5e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import tippy from "tippy.js";
import { guidFor } from "@ember/object/internals";
import { action } from "@ember/object";
import { next } from "@ember/runloop";
import { hideOnEscapePlugin } from "discourse/lib/d-popover";
export default class DiscoursePopover extends Component {
tagName = "";
@ -50,6 +51,7 @@ export default class DiscoursePopover extends Component {
allowHTML: false,
appendTo: "parent",
hideOnClick: true,
plugins: [hideOnEscapePlugin],
content:
this.options?.content ||
document

View File

@ -3,6 +3,29 @@ import { run } from "@ember/runloop";
import tippy from "tippy.js";
import { iconHTML } from "discourse-common/lib/icon-library";
export const hideOnEscapePlugin = {
name: "hideOnEscape",
defaultValue: true,
fn({ hide }) {
function onKeyDown(event) {
if (event.keyCode === 27) {
hide();
}
}
return {
onShow() {
document.addEventListener("keydown", onKeyDown);
},
onHide() {
document.removeEventListener("keydown", onKeyDown);
},
};
},
};
export function hidePopover(event) {
if (event?.target?._tippy) {
showPopover(event);
@ -20,6 +43,7 @@ export function showPopover(event, options = {}) {
trigger: "mouseenter click",
hideOnClick: true,
zIndex: 1400,
plugins: [hideOnEscapePlugin],
},
options
);

View File

@ -8,7 +8,7 @@ import {
} from "discourse/tests/helpers/qunit-helpers";
import hbs from "htmlbars-inline-precompile";
import { showPopover } from "discourse/lib/d-popover";
import { click } from "@ember/test-helpers";
import { click, triggerKeyEvent } from "@ember/test-helpers";
discourseModule("Integration | Component | d-popover", function (hooks) {
setupRenderingTest(hooks);
@ -85,4 +85,18 @@ discourseModule("Integration | Component | d-popover", function (hooks) {
assert.ok(exists(".d-popover.foo"));
},
});
componentTest("d-popover component closes on escape key", {
template: hbs`{{#d-popover as |state|}}{{d-button icon=(if state.isExpanded "chevron-up" "chevron-down")}}{{/d-popover}}`,
async test(assert) {
await click(".btn");
assert.ok(exists(".d-popover.is-expanded"));
await triggerKeyEvent(document, "keydown", 27);
assert.notOk(exists(".d-popover.is-expanded"));
},
});
});