diff --git a/src/platform/web/ui/session/room/MessageComposer.js b/src/platform/web/ui/session/room/MessageComposer.js index 6bb44ee0..3863dddd 100644 --- a/src/platform/web/ui/session/room/MessageComposer.js +++ b/src/platform/web/ui/session/room/MessageComposer.js @@ -34,7 +34,11 @@ export class MessageComposer extends TemplateView { onKeydown: e => this._onKeyDown(e), onInput: () => { vm.setInput(this._input.value); - this._adjustHeight(); + if (this._input.value) { + this._adjustHeight(); + } else { + this._clearHeight(); + } }, placeholder: vm.isEncrypted ? "Send an encrypted messageā€¦" : "Send a messageā€¦", rows: "1" @@ -85,9 +89,24 @@ export class MessageComposer extends TemplateView { async _trySend() { this._input.focus(); - if (await this.value.sendMessage(this._input.value)) { - this._input.value = ""; + // we clear the composer while enqueuing + // and restore it when that didn't work somehow + // to prevent the user from sending the message + // every time they hit enter while it's still enqueuing. + const {value} = this._input; + const restoreValue = () => { + this._input.value = value; this._adjustHeight(); + }; + this._input.value = ""; + this._clearHeight(); + try { + if (!await this.value.sendMessage(value)) { + restoreValue(); + } + } catch (err) { + restoreValue(); + console.error(err); } } @@ -125,4 +144,8 @@ export class MessageComposer extends TemplateView { }); } + _clearHeight() { + this._input.style.removeProperty("height"); + } + }