nheko/resources/qml/MessageInput.qml

480 lines
18 KiB
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-14 02:45:20 +01:00
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
2021-07-15 20:37:52 +02:00
import "./emoji"
2020-12-30 21:03:07 +01:00
import "./voip"
2021-02-21 02:11:50 +01:00
import QtQuick 2.12
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import QtQuick.Window 2.13
2020-10-31 23:24:07 +01:00
import im.nheko 1.0
Rectangle {
2021-02-21 02:11:50 +01:00
id: inputBar
2021-05-13 08:23:56 +02:00
color: Nheko.colors.window
Layout.fillWidth: true
2021-02-21 02:11:50 +01:00
Layout.preferredHeight: row.implicitHeight
Layout.minimumHeight: 40
property bool showAllButtons: width > 450 || (messageInput.length == 0 && !messageInput.inputMethodComposing)
2020-12-18 18:49:24 +01:00
Component {
id: placeCallDialog
PlaceCall {
}
2021-01-11 23:51:39 +01:00
2020-12-18 18:49:24 +01:00
}
Component {
id: screenShareDialog
ScreenShare {
}
}
RowLayout {
2021-02-21 02:11:50 +01: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 02:23:10 +01:00
image: CallManager.isOnCall ? ":/icons/icons/ui/end-call.svg" : ":/icons/icons/ui/place-call.svg"
2020-11-15 23:14:47 +01: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 02:11:50 +01:00
Layout.margins: 8
2020-12-18 18:49:24 +01:00
onClicked: {
if (room) {
2020-12-18 18:49:24 +01:00
if (CallManager.haveCallInvite) {
2021-01-11 23:51:39 +01:00
return ;
} else if (CallManager.isOnCall) {
2020-12-18 18:49:24 +01:00
CallManager.hangUp();
}
else if(CallManager.isOnCallOnOtherDevice) {
return;
}
else {
2020-12-18 18:49:24 +01:00
var dialog = placeCallDialog.createObject(timelineRoot);
2020-12-30 21:03:07 +01:00
dialog.open();
timelineRoot.destroyOnClose(dialog);
2020-12-18 18:49:24 +01:00
}
}
}
}
ImageButton {
visible: showAllButtons
Layout.alignment: Qt.AlignBottom
hoverEnabled: true
width: 22
height: 22
2021-11-14 02:23:10 +01:00
image: ":/icons/icons/ui/attach.svg"
2021-02-21 02:11:50 +01:00
Layout.margins: 8
onClicked: room.input.openFileSelection()
2020-11-15 23:14:47 +01:00
ToolTip.visible: hovered
ToolTip.text: qsTr("Send a file")
2020-11-15 04:52:49 +01:00
Rectangle {
anchors.fill: parent
2021-05-13 08:23:56 +02:00
color: Nheko.colors.window
visible: room && room.input.uploading
2020-11-15 04:52:49 +01:00
NhekoBusyIndicator {
anchors.fill: parent
running: parent.visible
}
}
}
2021-02-21 02:11:50 +01: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-10-31 23:24:07 +01:00
2021-08-21 06:01:10 +02:00
property int completerTriggeredAt: 0
2020-11-20 01:22:36 +01:00
2020-11-24 17:32:45 +01:00
function insertCompletion(completion) {
messageInput.remove(completerTriggeredAt, cursorPosition);
messageInput.insert(cursorPosition, completion);
2020-11-24 17:32:45 +01:00
}
2020-11-25 19:03:22 +01:00
function openCompleter(pos, type) {
if (popup.opened) return;
2020-11-25 19:03:22 +01:00
completerTriggeredAt = pos;
2022-02-21 04:06:49 +01:00
completer.completerName = type;
2020-11-25 19:03:22 +01:00
popup.open();
completer.completer.setSearchString(messageInput.getText(completerTriggeredAt, cursorPosition)+messageInput.preeditText);
2020-11-25 19:03:22 +01:00
}
function positionCursorAtEnd() {
cursorPosition = messageInput.length;
}
function positionCursorAtStart() {
cursorPosition = 0;
}
2020-11-30 12:09:24 +01:00
selectByMouse: true
placeholderText: qsTr("Write a message...")
2021-05-13 08:23:56 +02: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 17:12:13 +01:00
property string lastChar
2021-01-19 03:25:56 +01:00
onTextChanged: {
if (room)
room.input.updateState(selectionStart, selectionEnd, cursorPosition, text);
forceActiveFocus();
2022-03-20 17:12:13 +01:00
if (cursorPosition > 0)
lastChar = text.charAt(cursorPosition-1)
else
lastChar = ''
if (lastChar == '@') {
2022-03-20 21:34:41 +01:00
messageInput.openCompleter(selectionStart-1, "user");
2022-03-20 17:12:13 +01:00
} else if (lastChar == ':') {
2022-03-20 21:34:41 +01:00
messageInput.openCompleter(selectionStart-1, "emoji");
2022-03-20 17:12:13 +01:00
} else if (lastChar == '#') {
2022-03-20 21:34:41 +01:00
messageInput.openCompleter(selectionStart-1, "roomAliases");
2022-03-20 17:12:13 +01:00
} else if (lastChar == "~") {
2022-03-20 21:34:41 +01:00
messageInput.openCompleter(selectionStart-1, "customEmoji");
2022-03-20 17:12:13 +01:00
}
2021-01-19 03:25:56 +01:00
}
2020-11-20 01:22:36 +01:00
onCursorPositionChanged: {
if (!room)
2021-01-19 03:25:56 +01:00
return ;
room.input.updateState(selectionStart, selectionEnd, cursorPosition, text);
if (popup.opened && cursorPosition <= completerTriggeredAt)
2020-11-20 01:22:36 +01:00
popup.close();
if (popup.opened)
2022-03-20 21:57:16 +01:00
completer.completer.setSearchString(messageInput.getText(completerTriggeredAt, cursorPosition)+messageInput.preeditText);
2020-11-20 01:22:36 +01:00
}
2022-03-20 21:57:16 +01: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 17:32:45 +01:00
// Ensure that we get escape key press events first.
2022-03-01 01:59:06 +01: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-10-31 23:24:07 +01:00
Keys.onPressed: {
if (event.matches(StandardKey.Paste)) {
2022-06-13 13:16:49 +02: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 01:59:06 +01:00
if (popup.opened && completer.count <= 0)
popup.close();
2020-11-20 01:22:36 +01:00
} else if (event.modifiers == Qt.ControlModifier && event.key == Qt.Key_U) {
messageInput.clear();
2020-11-20 01:22:36 +01:00
} else if (event.modifiers == Qt.ControlModifier && event.key == Qt.Key_P) {
messageInput.text = room.input.previousText();
2020-11-20 01:22:36 +01:00
} else if (event.modifiers == Qt.ControlModifier && event.key == Qt.Key_N) {
messageInput.text = room.input.nextText();
2020-11-20 01:22:36 +01:00
} else if (event.key == Qt.Key_Escape && popup.opened) {
2022-02-21 04:06:49 +01:00
completer.completerName = "";
2021-08-21 05:29:27 +02:00
popup.close();
2020-11-20 01:22:36 +01:00
event.accepted = true;
2021-08-21 05:29:27 +02:00
} else if (event.matches(StandardKey.SelectAll) && popup.opened) {
2022-02-21 04:06:49 +01:00
completer.completerName = "";
2020-11-20 01:22:36 +01:00
popup.close();
2022-03-01 01:59:06 +01:00
} else if (event.matches(StandardKey.InsertLineSeparator)) {
if (popup.opened) popup.close();
2020-11-25 02:20:42 +01:00
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
if (popup.opened) {
2022-02-21 04:06:49 +01:00
var currentCompletion = completer.currentCompletion();
completer.completerName = "";
2020-11-25 02:20:42 +01:00
popup.close();
if (currentCompletion) {
messageInput.insertCompletion(currentCompletion);
2020-11-25 02:20:42 +01:00
event.accepted = true;
2022-03-01 01:59:06 +01:00
return;
2020-11-25 02:20:42 +01:00
}
2020-11-20 01:22:36 +01:00
}
if (!Qt.inputMethod.visible || Qt.platform.os === "windows") {
room.input.send();
event.accepted = true;
}
2022-01-09 00:28:03 +01:00
} else if (event.key == Qt.Key_Tab && (event.modifiers == Qt.NoModifier || event.modifiers == Qt.ShiftModifier)) {
2020-11-20 01:22:36 +01:00
event.accepted = true;
2020-11-25 19:03:22 +01:00
if (popup.opened) {
if (event.modifiers & Qt.ShiftModifier)
2022-02-21 04:06:49 +01:00
completer.down();
else
2022-02-21 04:06:49 +01:00
completer.up();
2020-11-25 19:03:22 +01:00
} else {
var pos = cursorPosition - 1;
while (pos > -1) {
var t = messageInput.getText(pos, pos + 1);
2020-11-25 19:03:22 +01:00
console.log('"' + t + '"');
if (t == '@') {
messageInput.openCompleter(pos, "user");
2020-11-25 19:03:22 +01:00
return ;
} else if (t == ' ' || t == '\t') {
messageInput.openCompleter(pos + 1, "user");
return ;
2020-11-25 19:03:22 +01:00
} else if (t == ':') {
messageInput.openCompleter(pos, "emoji");
2020-11-25 19:03:22 +01:00
return ;
} else if (t == '~') {
messageInput.openCompleter(pos, "customEmoji");
return ;
2020-11-25 19:03:22 +01:00
}
pos = pos - 1;
}
// At start of input
messageInput.openCompleter(0, "user");
2020-11-25 19:03:22 +01:00
}
2020-11-20 01:22:36 +01:00
} else if (event.key == Qt.Key_Up && popup.opened) {
event.accepted = true;
2022-02-21 04:06:49 +01:00
completer.up();
} else if ((event.key == Qt.Key_Down || event.key == Qt.Key_Backtab) && popup.opened) {
2020-11-20 01:22:36 +01:00
event.accepted = true;
2022-02-21 04:06:49 +01:00
completer.down();
} else if (event.key == Qt.Key_Up && event.modifiers == Qt.NoModifier) {
2021-02-24 23:51:05 +01:00
if (cursorPosition == 0) {
event.accepted = true;
var idx = room.edit ? room.idToIndex(room.edit) + 1 : 0;
2021-02-24 23:51:05 +01:00
while (true) {
var id = room.indexToId(idx);
if (!id || room.getDump(id, "").isEditable) {
room.edit = id;
2021-02-24 23:51:05 +01:00
cursorPosition = 0;
Qt.callLater(positionCursorAtEnd);
2021-02-24 23:51:05 +01:00
break;
}
idx++;
}
} else if (positionAt(0, cursorRectangle.y + cursorRectangle.height / 2) === 0) {
2021-02-24 23:51:05 +01:00
event.accepted = true;
positionCursorAtStart();
2021-02-24 23:51:05 +01:00
}
} else if (event.key == Qt.Key_Down && event.modifiers == Qt.NoModifier) {
if (cursorPosition == messageInput.length && room.edit) {
2021-02-24 23:51:05 +01:00
event.accepted = true;
var idx = room.idToIndex(room.edit) - 1;
2021-02-24 23:51:05 +01:00
while (true) {
var id = room.indexToId(idx);
if (!id || room.getDump(id, "").isEditable) {
room.edit = id;
Qt.callLater(positionCursorAtStart);
2021-02-24 23:51:05 +01:00
break;
}
idx--;
}
} else if (positionAt(width, cursorRectangle.y + cursorRectangle.height / 2) === messageInput.length) {
event.accepted = true;
positionCursorAtEnd();
2021-02-24 23:51:05 +01:00
}
2020-11-20 01:22:36 +01:00
}
}
2021-01-17 04:05:02 +01:00
background: null
2020-11-20 01:22:36 +01:00
2020-11-20 02:38:08 +01:00
Connections {
function onRoomChanged() {
messageInput.clear();
if (room)
messageInput.append(room.input.text);
2022-02-21 04:06:49 +01:00
completer.completerName = "";
messageInput.forceActiveFocus();
2020-11-20 02:38:08 +01:00
}
target: timelineView
2020-11-20 02:38:08 +01:00
}
2020-11-24 17:32:45 +01:00
Connections {
function onCompletionClicked(completion) {
messageInput.insertCompletion(completion);
}
2022-02-21 04:06:49 +01:00
target: completer
2020-11-24 17:32:45 +01:00
}
2020-11-20 02:38:08 +01:00
2022-02-21 04:06:49 +01:00
Popup {
2020-11-20 01:22:36 +01:00
id: popup
2021-08-21 06:01:10 +02:00
x: messageInput.positionToRectangle(messageInput.completerTriggeredAt).x
y: messageInput.positionToRectangle(messageInput.completerTriggeredAt).y - height
2022-03-01 01:59:06 +01:00
2022-02-21 04:06:49 +01:00
background: null
2022-03-01 01:59:06 +01:00
padding: 0
2022-02-21 04:06:49 +01:00
Completer {
anchors.fill: parent
id: completer
2022-03-01 01:59:06 +01:00
rowMargin: 2
rowSpacing: 0
2022-02-21 04:06:49 +01: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 04:52:49 +01:00
}
Connections {
function onTextChanged(newText) {
messageInput.text = newText;
messageInput.cursorPosition = newText.length;
}
ignoreUnknownSignals: true
target: room ? room.input : null
2020-10-31 23:24:07 +01:00
}
Connections {
function onReplyChanged() {
messageInput.forceActiveFocus();
}
function onEditChanged() {
messageInput.forceActiveFocus();
}
2022-09-30 03:27:05 +02: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-10-31 23:24:07 +01:00
acceptedButtons: Qt.MiddleButton
cursorShape: Qt.IBeamCursor
2022-06-13 13:16:49 +02:00
onPressed: (mouse) => mouse.accepted = room.input.tryPasteAttachment(true)
}
2021-01-17 04:05:02 +01:00
}
}
2021-07-15 20:37:52 +02:00
ImageButton {
id: stickerButton
visible: showAllButtons
2021-07-15 20:37:52 +02: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-19 23:41:47 +02:00
onClicked: stickerPopup.visible ? stickerPopup.close() : stickerPopup.show(stickerButton, room.roomId, function(row) {
2021-07-15 20:37:52 +02:00
room.input.sticker(stickerPopup.model.sourceModel, row);
TimelineManager.focusMessageInput();
})
StickerPicker {
id: stickerPopup
colors: Nheko.colors
}
}
ImageButton {
2020-11-16 18:41:29 +01:00
id: emojiButton
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
2021-02-21 02:11:50 +01:00
Layout.margins: 8
hoverEnabled: true
width: 22
height: 22
2021-11-14 02:23:10 +01:00
image: ":/icons/icons/ui/smile.svg"
2020-11-15 23:14:47 +01: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 18:41:29 +01:00
})
}
ImageButton {
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
2021-02-21 02:11:50 +01:00
Layout.margins: 8
hoverEnabled: true
width: 22
height: 22
2021-11-14 02:23:10 +01:00
image: ":/icons/icons/ui/send.svg"
2022-03-19 22:30:35 +01:00
Layout.rightMargin: 8
2020-11-15 23:14:47 +01:00
ToolTip.visible: hovered
ToolTip.text: qsTr("Send")
2020-11-15 04:52:49 +01:00
onClicked: {
room.input.send();
2020-11-15 04:52:49 +01: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 08:23:56 +02:00
color: Nheko.colors.text
}
}