nheko/resources/qml/MessageInput.qml

319 lines
12 KiB
QML
Raw Normal View History

2020-12-30 21:03:07 +01:00
import "./voip"
import QtQuick 2.9
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import QtQuick.Window 2.2
2020-10-31 23:24:07 +01:00
import im.nheko 1.0
Rectangle {
color: colors.window
Layout.fillWidth: true
2021-01-17 04:05:02 +01:00
Layout.preferredHeight: textInput.height + 16
Layout.minimumHeight: 40
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
}
RowLayout {
id: inputBar
anchors.fill: parent
2021-01-17 04:05:02 +01:00
anchors.margins: 8
spacing: 16
ImageButton {
visible: CallManager.callsSupported
2021-01-11 23:51:39 +01:00
opacity: CallManager.haveCallInvite ? 0.3 : 1
Layout.alignment: Qt.AlignBottom
hoverEnabled: true
width: 22
height: 22
image: CallManager.isOnCall ? ":/icons/icons/ui/end-call.png" : ":/icons/icons/ui/place-call.png"
2020-11-15 23:14:47 +01:00
ToolTip.visible: hovered
ToolTip.text: CallManager.isOnCall ? qsTr("Hang up") : qsTr("Place a call")
2021-01-17 04:05:02 +01:00
Layout.leftMargin: 8
2020-12-18 18:49:24 +01:00
onClicked: {
if (TimelineManager.timeline) {
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();
2021-01-11 23:51:39 +01:00
} else {
CallManager.refreshDevices();
2020-12-18 18:49:24 +01:00
var dialog = placeCallDialog.createObject(timelineRoot);
2020-12-30 21:03:07 +01:00
dialog.open();
2020-12-18 18:49:24 +01:00
}
}
}
}
ImageButton {
Layout.alignment: Qt.AlignBottom
hoverEnabled: true
width: 22
height: 22
image: ":/icons/icons/ui/paper-clip-outline.png"
2021-01-17 04:05:02 +01:00
Layout.leftMargin: CallManager.callsSupported ? 0 : 8
2020-11-15 04:52:49 +01:00
onClicked: TimelineManager.timeline.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
color: colors.window
2021-01-19 03:25:56 +01:00
visible: TimelineManager.timeline && TimelineManager.timeline.input.uploading
2020-11-15 04:52:49 +01:00
NhekoBusyIndicator {
anchors.fill: parent
running: parent.visible
}
}
}
2021-01-17 04:05:02 +01:00
Flickable {
id: textInput
2021-01-17 04:05:02 +01:00
function ensureVisible(r) {
if (contentX >= r.x)
contentX = r.x;
else if (contentX + width <= r.x + r.width)
contentX = r.x + r.width - width;
if (contentY >= r.y)
contentY = r.y;
else if (contentY + height <= r.y + r.height)
contentY = r.y + r.height - height;
}
Layout.alignment: Qt.AlignBottom
Layout.maximumHeight: Window.height / 4
2021-01-17 04:05:02 +01:00
Layout.minimumHeight: Settings.fontSize
Layout.fillWidth: true
2021-01-17 04:05:02 +01:00
clip: true
boundsBehavior: Flickable.StopAtBounds
flickableDirection: Flickable.VerticalFlick
implicitWidth: messageInput.width
implicitHeight: messageInput.height
contentWidth: messageInput.width
contentHeight: messageInput.height
TextArea {
id: messageInput
2020-10-31 23:24:07 +01:00
2020-11-20 01:22:36 +01:00
property int completerTriggeredAt: -1
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) {
completerTriggeredAt = pos;
popup.completerName = type;
popup.open();
popup.completer.setSearchString(messageInput.getText(completerTriggeredAt, cursorPosition));
2020-11-25 19:03:22 +01:00
}
2020-11-30 12:09:24 +01:00
selectByMouse: true
placeholderText: qsTr("Write a message...")
//placeholderTextColor: colors.buttonText
2021-01-19 03:25:56 +01:00
// only set the anchors on Qt 5.12 or higher
// see https://doc.qt.io/qt-5/qml-qtquick-controls2-popup.html#anchors.centerIn-prop
Component.onCompleted: {
if (placeholderTextColor !== undefined)
placeholderTextColor = colors.buttonText;
2021-01-19 03:25:56 +01:00
}
color: colors.text
2021-01-17 04:05:02 +01:00
width: textInput.width
wrapMode: TextEdit.Wrap
2021-01-17 04:05:02 +01:00
padding: 0
focus: true
2021-01-19 03:25:56 +01:00
onTextChanged: {
2021-01-19 23:58:25 +01:00
if (TimelineManager.timeline)
2021-01-19 03:25:56 +01:00
TimelineManager.timeline.input.updateState(selectionStart, selectionEnd, cursorPosition, text);
2021-01-19 23:58:25 +01:00
2021-01-19 03:25:56 +01:00
}
2021-01-17 04:05:02 +01:00
onCursorRectangleChanged: textInput.ensureVisible(cursorRectangle)
2020-11-20 01:22:36 +01:00
onCursorPositionChanged: {
2021-01-19 03:25:56 +01:00
if (!TimelineManager.timeline)
return ;
2020-11-20 01:22:36 +01:00
TimelineManager.timeline.input.updateState(selectionStart, selectionEnd, cursorPosition, text);
2020-11-20 02:38:08 +01:00
if (cursorPosition <= completerTriggeredAt) {
2020-11-20 01:22:36 +01:00
completerTriggeredAt = -1;
popup.close();
}
if (popup.opened)
popup.completer.setSearchString(messageInput.getText(completerTriggeredAt, cursorPosition));
2020-11-20 01:22:36 +01:00
}
2020-10-31 23:24:07 +01:00
onSelectionStartChanged: TimelineManager.timeline.input.updateState(selectionStart, selectionEnd, cursorPosition, text)
onSelectionEndChanged: TimelineManager.timeline.input.updateState(selectionStart, selectionEnd, cursorPosition, text)
2020-11-24 17:32:45 +01:00
// Ensure that we get escape key press events first.
2020-11-20 01:22:36 +01:00
Keys.onShortcutOverride: event.accepted = (completerTriggeredAt != -1 && (event.key === Qt.Key_Escape || event.key === Qt.Key_Tab || event.key === Qt.Key_Enter))
2020-10-31 23:24:07 +01:00
Keys.onPressed: {
if (event.matches(StandardKey.Paste)) {
2020-11-15 04:52:49 +01:00
TimelineManager.timeline.input.paste(false);
event.accepted = true;
} else if (event.key == Qt.Key_Space) {
if (popup.opened && popup.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 = TimelineManager.timeline.input.previousText();
2020-11-20 01:22:36 +01:00
} else if (event.modifiers == Qt.ControlModifier && event.key == Qt.Key_N) {
messageInput.text = TimelineManager.timeline.input.nextText();
2020-11-20 01:22:36 +01:00
} else if (event.key == Qt.Key_At) {
messageInput.openCompleter(cursorPosition, "user");
2020-11-20 01:22:36 +01:00
popup.open();
2020-11-20 04:33:11 +01:00
} else if (event.key == Qt.Key_Colon) {
messageInput.openCompleter(cursorPosition, "emoji");
2020-11-20 04:33:11 +01:00
popup.open();
2020-11-20 01:22:36 +01:00
} else if (event.key == Qt.Key_Escape && popup.opened) {
completerTriggeredAt = -1;
2020-11-20 02:38:08 +01:00
popup.completerName = "";
2020-11-20 01:22:36 +01:00
event.accepted = true;
popup.close();
2020-11-25 02:20:42 +01:00
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
if (popup.opened) {
var currentCompletion = popup.currentCompletion();
popup.completerName = "";
popup.close();
if (currentCompletion) {
messageInput.insertCompletion(currentCompletion);
2020-11-25 02:20:42 +01:00
event.accepted = true;
return ;
}
2020-11-20 01:22:36 +01:00
}
2020-11-25 02:20:42 +01:00
TimelineManager.timeline.input.send();
messageInput.clear();
2020-11-25 02:20:42 +01:00
event.accepted = true;
2020-11-25 19:03:22 +01:00
} else if (event.key == Qt.Key_Tab) {
2020-11-20 01:22:36 +01:00
event.accepted = true;
2020-11-25 19:03:22 +01:00
if (popup.opened) {
popup.up();
} 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 == '@' || t == ' ' || t == '\t') {
messageInput.openCompleter(pos, "user");
2020-11-25 19:03:22 +01:00
return ;
} else if (t == ':') {
messageInput.openCompleter(pos, "emoji");
2020-11-25 19:03:22 +01:00
return ;
}
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;
popup.up();
} else if (event.key == Qt.Key_Down && popup.opened) {
event.accepted = true;
popup.down();
}
}
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 {
onActiveTimelineChanged: {
messageInput.clear();
messageInput.append(TimelineManager.timeline.input.text());
messageInput.completerTriggeredAt = -1;
2020-11-20 02:38:08 +01:00
popup.completerName = "";
messageInput.forceActiveFocus();
2020-11-20 02:38:08 +01:00
}
target: TimelineManager
}
2020-11-24 17:32:45 +01:00
Connections {
onCompletionClicked: messageInput.insertCompletion(completion)
2020-11-24 17:32:45 +01:00
target: popup
}
2020-11-20 02:38:08 +01:00
2020-11-20 01:22:36 +01:00
Completer {
id: popup
x: messageInput.completerTriggeredAt >= 0 ? messageInput.positionToRectangle(messageInput.completerTriggeredAt).x : 0
y: messageInput.completerTriggeredAt >= 0 ? messageInput.positionToRectangle(messageInput.completerTriggeredAt).y - height : 0
2020-11-15 04:52:49 +01:00
}
Connections {
2021-01-19 03:25:56 +01:00
ignoreUnknownSignals: true
onInsertText: messageInput.insert(messageInput.cursorPosition, text)
2021-01-19 03:25:56 +01:00
target: TimelineManager.timeline ? TimelineManager.timeline.input : null
2020-10-31 23:24:07 +01:00
}
Connections {
ignoreUnknownSignals: true
onReplyChanged: messageInput.forceActiveFocus()
target: TimelineManager.timeline
}
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
2020-11-09 03:12:37 +01:00
onClicked: TimelineManager.timeline.input.paste(true)
}
2020-11-25 17:02:23 +01:00
NhekoDropArea {
anchors.fill: parent
2021-01-19 03:25:56 +01:00
roomid: TimelineManager.timeline ? TimelineManager.timeline.roomId() : ""
2020-11-25 17:02:23 +01:00
}
2021-01-17 04:05:02 +01:00
}
2021-01-17 04:05:02 +01:00
ScrollBar.vertical: ScrollBar {
}
}
ImageButton {
2020-11-16 18:41:29 +01:00
id: emojiButton
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
hoverEnabled: true
width: 22
height: 22
image: ":/icons/icons/ui/smile.png"
2020-11-15 23:14:47 +01:00
ToolTip.visible: hovered
ToolTip.text: qsTr("Emoji")
2020-11-16 18:41:29 +01:00
onClicked: emojiPopup.visible ? emojiPopup.close() : emojiPopup.show(emojiButton, function(emoji) {
messageInput.insert(messageInput.cursorPosition, emoji);
2020-11-16 18:41:29 +01:00
})
}
ImageButton {
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
hoverEnabled: true
width: 22
height: 22
image: ":/icons/icons/ui/cursor.png"
2021-01-17 04:05:02 +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: {
TimelineManager.timeline.input.send();
messageInput.clear();
2020-11-15 04:52:49 +01:00
}
}
}
}