2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
2019-04-29 05:45:42 +10:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-29 05:18:36 +10:00
|
|
|
import "../Base"
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-05-12 07:51:00 +10:00
|
|
|
HRectangle {
|
2019-03-22 14:28:14 +11:00
|
|
|
function setFocus() { textArea.forceActiveFocus() }
|
|
|
|
|
2019-04-21 07:45:51 +10:00
|
|
|
id: root
|
2019-03-22 14:28:14 +11:00
|
|
|
Layout.fillWidth: true
|
2019-05-13 05:57:18 +10:00
|
|
|
Layout.minimumHeight: HStyle.bottomElementsHeight
|
2019-03-26 09:29:46 +11:00
|
|
|
Layout.preferredHeight: textArea.implicitHeight
|
2019-03-22 14:28:14 +11:00
|
|
|
// parent.height / 2 causes binding loop?
|
|
|
|
Layout.maximumHeight: pageStack.height / 2
|
2019-04-29 05:18:36 +10:00
|
|
|
color: HStyle.chat.sendBox.background
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HRowLayout {
|
2019-03-22 14:28:14 +11:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HAvatar {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: avatar
|
2019-07-03 03:59:52 +10:00
|
|
|
name: chatPage.sender.displayName || stripUserId(chatPage.userId)
|
2019-04-29 01:32:02 +10:00
|
|
|
dimension: root.Layout.minimumHeight
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HScrollableTextArea {
|
2019-03-22 14:28:14 +11:00
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
id: textArea
|
|
|
|
placeholderText: qsTr("Type a message...")
|
2019-04-29 05:13:18 +10:00
|
|
|
backgroundColor: "transparent"
|
2019-04-29 01:50:46 +10:00
|
|
|
area.focus: true
|
2019-04-19 17:11:56 +10:00
|
|
|
|
2019-05-18 06:01:42 +10:00
|
|
|
property bool textChangedSinceLostFocus: false
|
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
function setTyping(typing) {
|
2019-07-04 11:20:49 +10:00
|
|
|
return
|
2019-05-03 04:54:37 +10:00
|
|
|
Backend.clients.get(chatPage.userId)
|
2019-04-29 01:50:46 +10:00
|
|
|
.setTypingState(chatPage.roomId, typing)
|
|
|
|
}
|
2019-04-19 17:11:56 +10:00
|
|
|
|
2019-05-18 06:01:42 +10:00
|
|
|
onTextChanged: {
|
|
|
|
setTyping(Boolean(text))
|
|
|
|
textChangedSinceLostFocus = true
|
|
|
|
}
|
|
|
|
area.onEditingFinished: { // when lost focus
|
|
|
|
if (text && textChangedSinceLostFocus) {
|
|
|
|
setTyping(false)
|
|
|
|
textChangedSinceLostFocus = false
|
|
|
|
}
|
|
|
|
}
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
Keys.onReturnPressed: {
|
|
|
|
event.accepted = true
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
if (event.modifiers & Qt.ShiftModifier ||
|
|
|
|
event.modifiers & Qt.ControlModifier ||
|
|
|
|
event.modifiers & Qt.AltModifier) {
|
|
|
|
textArea.insert(textArea.cursorPosition, "\n")
|
|
|
|
return
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
2019-04-19 17:11:56 +10:00
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
if (textArea.text === "") { return }
|
2019-07-04 11:20:49 +10:00
|
|
|
|
|
|
|
var args = [chatPage.roomId, textArea.text]
|
|
|
|
py.callClientCoro(chatPage.userId, "send_markdown", args)
|
2019-05-07 11:07:59 +10:00
|
|
|
area.clear()
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
2019-04-29 01:50:46 +10:00
|
|
|
|
2019-05-07 11:07:59 +10:00
|
|
|
// Numpad enter
|
|
|
|
Keys.onEnterPressed: Keys.onReturnPressed(event)
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|