FIX: Allow dismissing Discard Drafts modal via ESC (#12532)

This commit is contained in:
Penar Musaraj 2021-03-26 13:07:19 -04:00 committed by GitHub
parent edc0f61920
commit db7be947df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View File

@ -51,7 +51,7 @@ export default Component.extend({
//only respond to events when the modal is visible
if (!this.element.classList.contains("hidden")) {
if (e.which === 27 && this.dismissable) {
next(() => $(".modal-header button.modal-close").click());
next(() => this.attrs.closeModal("initiatedByESC"));
}
if (e.which === 13 && this.triggerClickOnEnter(e)) {
@ -130,9 +130,7 @@ export default Component.extend({
this.set("dismissable", true);
}
if (data.headerClass) {
this.set("headerClass", data.headerClass);
}
this.set("headerClass", data.headerClass || null);
if (this.element) {
const autofocusInputs = this.element.querySelectorAll(

View File

@ -3,6 +3,10 @@ import { isiPad } from "discourse/lib/utilities";
// A mixin where hitting ESC calls `cancelled` and ctrl+enter calls `save.
export default {
keyDown(e) {
if (document.body.classList.contains("modal-open")) {
return;
}
if (e.which === 27) {
this.cancelled();
return false;

View File

@ -1,4 +1,4 @@
{{#d-modal-body dismissable=false headerClass="empty"}}
{{#d-modal-body headerClass="hidden"}}
<div class="instructions">
{{i18n "post.cancel_composer.confirm"}}
</div>

View File

@ -54,10 +54,8 @@
.modal-header {
display: flex;
&:not(.empty) {
padding: 10px 15px;
border-bottom: 1px solid var(--primary-low);
}
padding: 10px 15px;
border-bottom: 1px solid var(--primary-low);
align-items: center;
.title {