matrixion/resources/qml/MessageInput.qml

490 lines
19 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-03-14 04:45:20 +03:00
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
2021-07-15 21:37:52 +03:00
import "./emoji"
2020-12-30 23:03:07 +03:00
import "./voip"
2023-02-25 19:03:30 +03:00
import "./ui"
2021-02-21 04:11:50 +03:00
import QtQuick 2.12
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import QtQuick.Window 2.13
2020-11-01 01:24:07 +03:00
import im.nheko 1.0
Rectangle {
2021-02-21 04:11:50 +03:00
id: inputBar
readonly property string text: messageInput.text
2021-05-13 09:23:56 +03:00
color: Nheko.colors.window
Layout.fillWidth: true
2021-02-21 04:11:50 +03:00
Layout.preferredHeight: row.implicitHeight
Layout.minimumHeight: 40
property bool showAllButtons: width > 450 || (messageInput.length == 0 && !messageInput.inputMethodComposing)
2020-12-18 20:49:24 +03:00
Component {
id: placeCallDialog
PlaceCall {
}
2021-01-12 01:51:39 +03:00
2020-12-18 20:49:24 +03:00
}
Component {
id: screenShareDialog
ScreenShare {
}
}
RowLayout {
2021-02-21 04:11:50 +03:00
id: row
visible: room ? room.permissions.canSend(MtxEvent.TextMessage) : false
anchors.fill: parent
spacing: 0
ImageButton {
visible: CallManager.callsSupported && showAllButtons
opacity: (CallManager.haveCallInvite || CallManager.isOnCallOnOtherDevice) ? 0.3 : 1
Layout.alignment: Qt.AlignBottom
hoverEnabled: true
width: 22
height: 22
2021-11-14 04:23:10 +03:00
image: CallManager.isOnCall ? ":/icons/icons/ui/end-call.svg" : ":/icons/icons/ui/place-call.svg"
2020-11-16 01:14:47 +03:00
ToolTip.visible: hovered
ToolTip.text: CallManager.isOnCall ? qsTr("Hang up") : (CallManager.isOnCallOnOtherDevice ? qsTr("Already on a call") : qsTr("Place a call"))
2021-02-21 04:11:50 +03:00
Layout.margins: 8
2020-12-18 20:49:24 +03:00
onClicked: {
if (room) {
2020-12-18 20:49:24 +03:00
if (CallManager.haveCallInvite) {
2021-01-12 01:51:39 +03:00
return ;
} else if (CallManager.isOnCall) {
2020-12-18 20:49:24 +03:00
CallManager.hangUp();
}
else if(CallManager.isOnCallOnOtherDevice) {
return;
}
else {
2020-12-18 20:49:24 +03:00
var dialog = placeCallDialog.createObject(timelineRoot);
2020-12-30 23:03:07 +03:00
dialog.open();
timelineRoot.destroyOnClose(dialog);
2020-12-18 20:49:24 +03:00
}
}
}
}
ImageButton {
visible: showAllButtons
Layout.alignment: Qt.AlignBottom
hoverEnabled: true
width: 22
height: 22
2021-11-14 04:23:10 +03:00
image: ":/icons/icons/ui/attach.svg"
2021-02-21 04:11:50 +03:00
Layout.margins: 8
onClicked: room.input.openFileSelection()
2020-11-16 01:14:47 +03:00
ToolTip.visible: hovered
ToolTip.text: qsTr("Send a file")
2020-11-15 06:52:49 +03:00
Rectangle {
anchors.fill: parent
2021-05-13 09:23:56 +03:00
color: Nheko.colors.window
visible: room && room.input.uploading
2020-11-15 06:52:49 +03:00
2023-02-25 19:03:30 +03:00
Spinner {
anchors.centerIn: parent
height: parent.height / 2
2020-11-15 06:52:49 +03:00
running: parent.visible
}
}
}
2021-02-21 04:11:50 +03:00
ScrollView {
id: textInput
Layout.alignment: Qt.AlignVCenter
Layout.maximumHeight: Window.height / 4
Layout.minimumHeight: fontMetrics.lineSpacing
Layout.preferredHeight: contentHeight
Layout.fillWidth: true
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
contentWidth: availableWidth
TextArea {
id: messageInput
2020-11-01 01:24:07 +03:00
2021-08-21 07:01:10 +03:00
property int completerTriggeredAt: 0
2020-11-20 03:22:36 +03:00
2020-11-24 19:32:45 +03:00
function insertCompletion(completion) {
messageInput.remove(completerTriggeredAt, cursorPosition);
messageInput.insert(cursorPosition, completion);
2020-11-24 19:32:45 +03:00
}
2020-11-25 21:03:22 +03:00
function openCompleter(pos, type) {
if (popup.opened) return;
2020-11-25 21:03:22 +03:00
completerTriggeredAt = pos;
2022-02-21 06:06:49 +03:00
completer.completerName = type;
2020-11-25 21:03:22 +03:00
popup.open();
completer.completer.setSearchString(messageInput.getText(completerTriggeredAt, cursorPosition)+messageInput.preeditText);
2020-11-25 21:03:22 +03:00
}
function positionCursorAtEnd() {
cursorPosition = messageInput.length;
}
function positionCursorAtStart() {
cursorPosition = 0;
}
2020-11-30 14:09:24 +03:00
selectByMouse: true
placeholderText: qsTr("Write a message...")
2021-05-13 09:23:56 +03:00
placeholderTextColor: Nheko.colors.buttonText
color: Nheko.colors.text
width: textInput.width
verticalAlignment: TextEdit.AlignVCenter
wrapMode: TextEdit.Wrap
padding: 0
topPadding: 8
bottomPadding: 8
leftPadding: inputBar.showAllButtons? 0 : 8
focus: true
2022-03-20 19:12:13 +03:00
property string lastChar
2021-01-19 05:25:56 +03:00
onTextChanged: {
if (room)
room.input.updateState(selectionStart, selectionEnd, cursorPosition, text);
forceActiveFocus();
2022-03-20 19:12:13 +03:00
if (cursorPosition > 0)
lastChar = text.charAt(cursorPosition-1)
else
lastChar = ''
if (lastChar == '@') {
2022-03-20 23:34:41 +03:00
messageInput.openCompleter(selectionStart-1, "user");
2022-03-20 19:12:13 +03:00
} else if (lastChar == ':') {
2022-03-20 23:34:41 +03:00
messageInput.openCompleter(selectionStart-1, "emoji");
2022-03-20 19:12:13 +03:00
} else if (lastChar == '#') {
2022-03-20 23:34:41 +03:00
messageInput.openCompleter(selectionStart-1, "roomAliases");
2022-03-20 19:12:13 +03:00
} else if (lastChar == "~") {
2022-03-20 23:34:41 +03:00
messageInput.openCompleter(selectionStart-1, "customEmoji");
} else if (lastChar == "/" && cursorPosition == 1) {
messageInput.openCompleter(selectionStart-1, "command");
2022-03-20 19:12:13 +03:00
}
2021-01-19 05:25:56 +03:00
}
2020-11-20 03:22:36 +03:00
onCursorPositionChanged: {
if (!room)
2021-01-19 05:25:56 +03:00
return ;
room.input.updateState(selectionStart, selectionEnd, cursorPosition, text);
if (popup.opened && cursorPosition <= completerTriggeredAt)
2020-11-20 03:22:36 +03:00
popup.close();
if (popup.opened)
2022-03-20 23:57:16 +03:00
completer.completer.setSearchString(messageInput.getText(completerTriggeredAt, cursorPosition)+messageInput.preeditText);
2020-11-20 03:22:36 +03:00
}
2022-03-20 23:57:16 +03:00
onPreeditTextChanged: {
if (popup.opened)
completer.completer.setSearchString(messageInput.getText(completerTriggeredAt, cursorPosition)+messageInput.preeditText);
}
onSelectionStartChanged: room.input.updateState(selectionStart, selectionEnd, cursorPosition, text)
onSelectionEndChanged: room.input.updateState(selectionStart, selectionEnd, cursorPosition, text)
2020-11-24 19:32:45 +03:00
// Ensure that we get escape key press events first.
2022-03-01 03:59:06 +03:00
Keys.onShortcutOverride: event.accepted = (popup.opened && (event.key === Qt.Key_Escape || event.key === Qt.Key_Tab || event.key === Qt.Key_Enter || event.key === Qt.Key_Space))
2020-11-01 01:24:07 +03:00
Keys.onPressed: {
if (event.matches(StandardKey.Paste)) {
2022-06-13 14:16:49 +03:00
event.accepted = room.input.tryPasteAttachment(false);
} else if (event.key == Qt.Key_Space) {
// close popup if user enters space after colon
if (cursorPosition == completerTriggeredAt + 1)
popup.close();
2022-03-01 03:59:06 +03:00
if (popup.opened && completer.count <= 0)
popup.close();
2020-11-20 03:22:36 +03:00
} else if (event.modifiers == Qt.ControlModifier && event.key == Qt.Key_U) {
messageInput.clear();
2020-11-20 03:22:36 +03:00
} else if (event.modifiers == Qt.ControlModifier && event.key == Qt.Key_P) {
messageInput.text = room.input.previousText();
2020-11-20 03:22:36 +03:00
} else if (event.modifiers == Qt.ControlModifier && event.key == Qt.Key_N) {
messageInput.text = room.input.nextText();
2020-11-20 03:22:36 +03:00
} else if (event.key == Qt.Key_Escape && popup.opened) {
2022-02-21 06:06:49 +03:00
completer.completerName = "";
2021-08-21 06:29:27 +03:00
popup.close();
2020-11-20 03:22:36 +03:00
event.accepted = true;
2021-08-21 06:29:27 +03:00
} else if (event.matches(StandardKey.SelectAll) && popup.opened) {
2022-02-21 06:06:49 +03:00
completer.completerName = "";
2020-11-20 03:22:36 +03:00
popup.close();
2022-03-01 03:59:06 +03:00
} else if (event.matches(StandardKey.InsertLineSeparator)) {
if (popup.opened) popup.close();
2022-11-05 01:42:35 +03:00
if (Settings.invertEnterKey && (!Qt.inputMethod.visible || Qt.platform.os === "windows")) {
2022-11-05 01:42:35 +03:00
room.input.send();
event.accepted = true;
}
2020-11-25 04:20:42 +03:00
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
if (popup.opened) {
2022-02-21 06:06:49 +03:00
var currentCompletion = completer.currentCompletion();
completer.completerName = "";
2020-11-25 04:20:42 +03:00
popup.close();
if (currentCompletion) {
messageInput.insertCompletion(currentCompletion);
2020-11-25 04:20:42 +03:00
event.accepted = true;
2022-03-01 03:59:06 +03:00
return;
2020-11-25 04:20:42 +03:00
}
2020-11-20 03:22:36 +03:00
}
if (!Settings.invertEnterKey && (!Qt.inputMethod.visible || Qt.platform.os === "windows")) {
room.input.send();
event.accepted = true;
}
2022-01-09 02:28:03 +03:00
} else if (event.key == Qt.Key_Tab && (event.modifiers == Qt.NoModifier || event.modifiers == Qt.ShiftModifier)) {
2020-11-20 03:22:36 +03:00
event.accepted = true;
2020-11-25 21:03:22 +03:00
if (popup.opened) {
if (event.modifiers & Qt.ShiftModifier)
2022-02-21 06:06:49 +03:00
completer.down();
else
2022-02-21 06:06:49 +03:00
completer.up();
2020-11-25 21:03:22 +03:00
} else {
var pos = cursorPosition - 1;
while (pos > -1) {
var t = messageInput.getText(pos, pos + 1);
2020-11-25 21:03:22 +03:00
console.log('"' + t + '"');
if (t == '@') {
messageInput.openCompleter(pos, "user");
2020-11-25 21:03:22 +03:00
return ;
} else if (t == ' ' || t == '\t') {
messageInput.openCompleter(pos + 1, "user");
return ;
2020-11-25 21:03:22 +03:00
} else if (t == ':') {
messageInput.openCompleter(pos, "emoji");
2020-11-25 21:03:22 +03:00
return ;
} else if (t == '~') {
messageInput.openCompleter(pos, "customEmoji");
return ;
2020-11-25 21:03:22 +03:00
}
pos = pos - 1;
}
// At start of input
messageInput.openCompleter(0, "user");
2020-11-25 21:03:22 +03:00
}
2020-11-20 03:22:36 +03:00
} else if (event.key == Qt.Key_Up && popup.opened) {
event.accepted = true;
2022-02-21 06:06:49 +03:00
completer.up();
} else if ((event.key == Qt.Key_Down || event.key == Qt.Key_Backtab) && popup.opened) {
2020-11-20 03:22:36 +03:00
event.accepted = true;
2022-02-21 06:06:49 +03:00
completer.down();
} else if (event.key == Qt.Key_Up && event.modifiers == Qt.NoModifier) {
2021-02-25 01:51:05 +03:00
if (cursorPosition == 0) {
event.accepted = true;
var idx = room.edit ? room.idToIndex(room.edit) + 1 : 0;
2021-02-25 01:51:05 +03:00
while (true) {
var id = room.indexToId(idx);
if (!id || room.getDump(id, "").isEditable) {
room.edit = id;
2021-02-25 01:51:05 +03:00
cursorPosition = 0;
Qt.callLater(positionCursorAtEnd);
2021-02-25 01:51:05 +03:00
break;
}
idx++;
}
} else if (positionAt(0, cursorRectangle.y + cursorRectangle.height / 2) === 0) {
2021-02-25 01:51:05 +03:00
event.accepted = true;
positionCursorAtStart();
2021-02-25 01:51:05 +03:00
}
} else if (event.key == Qt.Key_Down && event.modifiers == Qt.NoModifier) {
if (cursorPosition == messageInput.length && room.edit) {
2021-02-25 01:51:05 +03:00
event.accepted = true;
var idx = room.idToIndex(room.edit) - 1;
2021-02-25 01:51:05 +03:00
while (true) {
var id = room.indexToId(idx);
if (!id || room.getDump(id, "").isEditable) {
room.edit = id;
Qt.callLater(positionCursorAtStart);
2021-02-25 01:51:05 +03:00
break;
}
idx--;
}
} else if (positionAt(width, cursorRectangle.y + cursorRectangle.height / 2) === messageInput.length) {
event.accepted = true;
positionCursorAtEnd();
2021-02-25 01:51:05 +03:00
}
2020-11-20 03:22:36 +03:00
}
}
2021-01-17 06:05:02 +03:00
background: null
2020-11-20 03:22:36 +03:00
2020-11-20 04:38:08 +03:00
Connections {
function onRoomChanged() {
messageInput.clear();
if (room)
messageInput.append(room.input.text);
2022-02-21 06:06:49 +03:00
completer.completerName = "";
messageInput.forceActiveFocus();
2020-11-20 04:38:08 +03:00
}
target: timelineView
2020-11-20 04:38:08 +03:00
}
2020-11-24 19:32:45 +03:00
Connections {
function onCompletionClicked(completion) {
messageInput.insertCompletion(completion);
}
2022-02-21 06:06:49 +03:00
target: completer
2020-11-24 19:32:45 +03:00
}
2020-11-20 04:38:08 +03:00
2022-02-21 06:06:49 +03:00
Popup {
2020-11-20 03:22:36 +03:00
id: popup
2021-08-21 07:01:10 +03:00
x: messageInput.positionToRectangle(messageInput.completerTriggeredAt).x
y: messageInput.positionToRectangle(messageInput.completerTriggeredAt).y - height
2022-03-01 03:59:06 +03:00
2022-02-21 06:06:49 +03:00
background: null
2022-03-01 03:59:06 +03:00
padding: 0
2022-02-21 06:06:49 +03:00
Completer {
anchors.fill: parent
id: completer
2022-03-01 03:59:06 +03:00
rowMargin: 2
rowSpacing: 0
2022-02-21 06:06:49 +03:00
}
enter: Transition {
NumberAnimation {
property: "opacity"
from: 0
to: 1
duration: 100
}
}
exit: Transition {
NumberAnimation {
property: "opacity"
from: 1
to: 0
duration: 100
}
}
2020-11-15 06:52:49 +03:00
}
Connections {
function onTextChanged(newText) {
messageInput.text = newText;
messageInput.cursorPosition = newText.length;
}
ignoreUnknownSignals: true
target: room ? room.input : null
2020-11-01 01:24:07 +03:00
}
Connections {
function onReplyChanged() {
messageInput.forceActiveFocus();
}
function onEditChanged() {
messageInput.forceActiveFocus();
}
2022-09-30 04:27:05 +03:00
function onThreadChanged() {
messageInput.forceActiveFocus();
}
ignoreUnknownSignals: true
target: room
}
Connections {
function onFocusInput() {
messageInput.forceActiveFocus();
}
target: TimelineManager
}
MouseArea {
// workaround for wrong cursor shape on some platforms
anchors.fill: parent
2020-11-01 01:24:07 +03:00
acceptedButtons: Qt.MiddleButton
cursorShape: Qt.IBeamCursor
2022-06-13 14:16:49 +03:00
onPressed: (mouse) => mouse.accepted = room.input.tryPasteAttachment(true)
}
2021-01-17 06:05:02 +03:00
}
}
2021-07-15 21:37:52 +03:00
ImageButton {
id: stickerButton
visible: showAllButtons
2021-07-15 21:37:52 +03:00
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
Layout.margins: 8
hoverEnabled: true
width: 22
height: 22
image: ":/icons/icons/ui/sticky-note-solid.svg"
ToolTip.visible: hovered
ToolTip.text: qsTr("Stickers")
2021-07-20 00:41:47 +03:00
onClicked: stickerPopup.visible ? stickerPopup.close() : stickerPopup.show(stickerButton, room.roomId, function(row) {
2023-05-19 04:15:55 +03:00
room.input.sticker(row);
2021-07-15 21:37:52 +03:00
TimelineManager.focusMessageInput();
})
StickerPicker {
id: stickerPopup
colors: Nheko.colors
}
}
ImageButton {
2020-11-16 20:41:29 +03:00
id: emojiButton
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
2021-02-21 04:11:50 +03:00
Layout.margins: 8
hoverEnabled: true
width: 22
height: 22
2021-11-14 04:23:10 +03:00
image: ":/icons/icons/ui/smile.svg"
2020-11-16 01:14:47 +03:00
ToolTip.visible: hovered
ToolTip.text: qsTr("Emoji")
onClicked: emojiPopup.visible ? emojiPopup.close() : emojiPopup.show(emojiButton, function(emoji) {
messageInput.insert(messageInput.cursorPosition, emoji);
TimelineManager.focusMessageInput();
2020-11-16 20:41:29 +03:00
})
}
ImageButton {
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
2021-02-21 04:11:50 +03:00
Layout.margins: 8
hoverEnabled: true
width: 22
height: 22
2021-11-14 04:23:10 +03:00
image: ":/icons/icons/ui/send.svg"
2022-03-20 00:30:35 +03:00
Layout.rightMargin: 8
2020-11-16 01:14:47 +03:00
ToolTip.visible: hovered
ToolTip.text: qsTr("Send")
2020-11-15 06:52:49 +03:00
onClicked: {
room.input.send();
2020-11-15 06:52:49 +03:00
}
}
}
Text {
anchors.centerIn: parent
visible: room ? (!room.permissions.canSend(MtxEvent.TextMessage)) : false
text: qsTr("You don't have permission to send messages in this room")
2021-05-13 09:23:56 +03:00
color: Nheko.colors.text
}
}