UX: adds shortcuts for quote (q) and fast edit (e) (#14552)

This commit is contained in:
Joffrey JAFFEUX 2021-10-07 17:22:28 +02:00 committed by GitHub
parent a55642a30a
commit 2af6052307
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 1 deletions

View File

@ -232,6 +232,8 @@ export default Component.extend(KeyEnterEscape, {
}
$quoteButton.offset({ top, left });
this.element.querySelector("button")?.focus();
});
},
@ -279,6 +281,24 @@ export default Component.extend(KeyEnterEscape, {
});
},
keyDown(event) {
this._super(...arguments);
if (!this.visible) {
return;
}
if (!this._displayFastEditInput && event.key === "e") {
this._toggleFastEditForm();
return false;
}
if (event.key === "q") {
this.insertQuote();
return false;
}
},
willDestroyElement() {
$(document)
.off("mousedown.quote-button")

View File

@ -4,7 +4,9 @@
class="btn-flat insert-quote"
action=(action "insertQuote")
icon="quote-left"
label="post.quote_reply"}}
label="post.quote_reply"
title="post.quote_reply_shortcut"
}}
{{/if}}
{{#if siteSettings.enable_fast_edit}}
@ -14,6 +16,7 @@
action=(action "_toggleFastEditForm")
label="post.quote_edit"
class="btn-flat quote-edit-label"
title="post.quote_edit_shortcut"
}}
{{/if}}
{{/if}}

View File

@ -423,6 +423,12 @@ aside.quote {
color: var(--secondary-or-primary);
}
.btn:focus:not(:hover),
.btn:focus:not(:hover) .d-icon {
color: var(--secondary);
background-color: var(--secondary-high);
}
.insert-quote + .quote-sharing {
border-left: 1px solid rgba(255, 255, 255, 0.3);
}

View File

@ -3016,7 +3016,9 @@ en:
post:
quote_reply: "Quote"
quote_reply_shortcut: "Or press q"
quote_edit: "Edit"
quote_edit_shortcut: "Or press e"
quote_share: "Share"
edit_reason: "Reason: "
post_number: "post %{number}"