Browse Source

[Glitch] Add support for submitting media description with ctrl+enter

Port 7488a9e154 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
closed-social-glitch-2
ThibG 5 years ago
committed by Thibaut Girka
parent
commit
ea55f70f97
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      app/javascript/flavours/glitch/features/ui/components/focal_point_modal.js

+ 10
- 0
app/javascript/flavours/glitch/features/ui/components/focal_point_modal.js View 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
/>

Loading…
Cancel
Save