mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 11:36:24 +01:00
Merge pull request #566 from vector-im/composer-improvements
Support for multiline messages
This commit is contained in:
commit
365c8d0953
@ -536,14 +536,18 @@ a {
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
.MessageComposer_input > input {
|
||||
padding: 0 16px;
|
||||
.MessageComposer_input > textarea {
|
||||
border: none;
|
||||
border-radius: 24px;
|
||||
background: #F6F6F6;
|
||||
height: 48px;
|
||||
font-size: 14px;
|
||||
font-family: "Inter", sans-serif;
|
||||
resize: none;
|
||||
flex: 1;
|
||||
padding: 14px;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
max-height: 113px;
|
||||
}
|
||||
|
||||
.MessageComposer_input > button.send {
|
||||
|
@ -25,14 +25,19 @@ export class MessageComposer extends TemplateView {
|
||||
this._input = null;
|
||||
this._attachmentPopup = null;
|
||||
this._focusInput = null;
|
||||
this._rafResizeHandle = undefined;
|
||||
}
|
||||
|
||||
render(t, vm) {
|
||||
this._input = t.input({
|
||||
placeholder: vm.isEncrypted ? "Send an encrypted message…" : "Send a message…",
|
||||
this._input = t.textarea({
|
||||
enterkeyhint: 'send',
|
||||
onKeydown: e => this._onKeyDown(e),
|
||||
onInput: () => vm.setInput(this._input.value),
|
||||
onInput: () => {
|
||||
vm.setInput(this._input.value);
|
||||
this._adjustHeight();
|
||||
},
|
||||
placeholder: vm.isEncrypted ? "Send an encrypted message…" : "Send a message…",
|
||||
rows: "1"
|
||||
});
|
||||
this._focusInput = () => this._input.focus();
|
||||
this.value.on("focus", this._focusInput);
|
||||
@ -82,11 +87,12 @@ export class MessageComposer extends TemplateView {
|
||||
this._input.focus();
|
||||
if (await this.value.sendMessage(this._input.value)) {
|
||||
this._input.value = "";
|
||||
this._adjustHeight();
|
||||
}
|
||||
}
|
||||
|
||||
_onKeyDown(event) {
|
||||
if (event.key === "Enter") {
|
||||
if (event.key === "Enter" && !event.shiftKey) {
|
||||
this._trySend();
|
||||
}
|
||||
}
|
||||
@ -105,4 +111,16 @@ export class MessageComposer extends TemplateView {
|
||||
this._attachmentPopup.showRelativeTo(evt.target, 12);
|
||||
}
|
||||
}
|
||||
|
||||
_adjustHeight() {
|
||||
if (this._rafResizeHandle) {
|
||||
return;
|
||||
}
|
||||
this._rafResizeHandle = window.requestAnimationFrame(() => {
|
||||
const scrollHeight = this._input.scrollHeight;
|
||||
this._input.style.height = `${scrollHeight}px`;
|
||||
this._rafResizeHandle = undefined;
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user