]> cat aescling's git repositories - mastodon.git/commitdiff
Add support for submitting media description with ctrl+enter (#12272)
authorThibG <thib@sitedethib.com>
Mon, 4 Nov 2019 11:59:17 +0000 (12:59 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Mon, 4 Nov 2019 11:59:17 +0000 (12:59 +0100)
app/javascript/mastodon/features/ui/components/focal_point_modal.js

index 3694ab9046a9123d2e9f0aee0e6d8153a4d7e33a..bbd463fca921d05d59ff2b3b469b5f2fedc15fad 100644 (file)
@@ -184,6 +184,15 @@ class FocalPointModal extends ImmutablePureComponent {
     this.setState({ description: e.target.value, dirty: true });
   }
 
+  handleKeyDown = (e) => {
+    if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
+      e.preventDefault();
+      e.stopPropagation();
+      this.setState({ description: e.target.value, dirty: true });
+      this.handleSubmit();
+    }
+  }
+
   handleSubmit = () => {
     this.props.onSave(this.state.description, this.state.focusX, this.state.focusY);
     this.props.onClose();
@@ -254,6 +263,7 @@ class FocalPointModal extends ImmutablePureComponent {
                 className='setting-text light'
                 value={detecting ? '…' : description}
                 onChange={this.handleChange}
+                onKeyDown={this.handleKeyDown}
                 disabled={detecting}
                 autoFocus
               />