2019-11-10 05:20:53 +11:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import "../../Base"
|
|
|
|
import "../../utils.js" as Utils
|
|
|
|
|
|
|
|
HBox {
|
|
|
|
id: addChatBox
|
|
|
|
clickButtonOnEnter: "apply"
|
|
|
|
|
|
|
|
onFocusChanged: userField.forceActiveFocus()
|
|
|
|
|
|
|
|
buttonModel: [
|
2019-11-10 05:29:19 +11:00
|
|
|
{ name: "apply", text: qsTr("Start chat"),
|
|
|
|
iconName: "start-direct-chat", enabled: Boolean(userField.text) },
|
2019-11-10 05:20:53 +11:00
|
|
|
{ name: "cancel", text: qsTr("Cancel"), iconName: "cancel" },
|
|
|
|
]
|
|
|
|
|
|
|
|
buttonCallbacks: ({
|
|
|
|
apply: button => {
|
|
|
|
button.loading = true
|
|
|
|
errorMessage.text = ""
|
|
|
|
|
2019-11-10 05:57:46 +11:00
|
|
|
let args = [userField.text, encryptCheckBox.checked]
|
2019-11-10 05:20:53 +11:00
|
|
|
|
|
|
|
py.callClientCoro(userId, "new_direct_chat", args, roomId => {
|
|
|
|
button.loading = false
|
|
|
|
errorMessage.text = ""
|
|
|
|
pageLoader.showRoom(userId, roomId)
|
|
|
|
|
|
|
|
}, (type, args) => {
|
|
|
|
button.loading = false
|
|
|
|
|
|
|
|
let txt = qsTr("Unknown error - %1: %2").arg(type).arg(args)
|
|
|
|
|
|
|
|
if (type === "InvalidUserInContext")
|
2019-12-05 00:32:07 +11:00
|
|
|
txt = qsTr("You can't invite yourself!")
|
2019-11-10 05:20:53 +11:00
|
|
|
|
|
|
|
if (type === "UserNotFound")
|
2019-12-05 00:32:07 +11:00
|
|
|
txt = qsTr("This user does not exist")
|
2019-11-10 05:20:53 +11:00
|
|
|
|
|
|
|
errorMessage.text = txt
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
cancel: button => {
|
|
|
|
userField.text = ""
|
|
|
|
errorMessage.text = ""
|
|
|
|
pageLoader.showPrevious()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
readonly property string userId: addChatPage.userId
|
|
|
|
|
|
|
|
|
2019-11-10 06:19:10 +11:00
|
|
|
CurrentUserAvatar {
|
|
|
|
Layout.alignment: Qt.AlignCenter
|
|
|
|
Layout.preferredWidth: 128
|
|
|
|
Layout.preferredHeight: Layout.preferredWidth
|
|
|
|
}
|
|
|
|
|
2019-11-10 05:20:53 +11:00
|
|
|
HTextField {
|
|
|
|
id: userField
|
|
|
|
placeholderText: qsTr("User ID (e.g. @john:matrix.org)")
|
|
|
|
error: Boolean(errorMessage.text)
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2019-11-10 05:57:46 +11:00
|
|
|
EncryptCheckBox {
|
|
|
|
id: encryptCheckBox
|
|
|
|
|
|
|
|
Layout.maximumWidth: parent.width
|
|
|
|
}
|
|
|
|
|
2019-11-10 05:20:53 +11:00
|
|
|
HLabel {
|
|
|
|
id: errorMessage
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
color: theme.colors.errorText
|
|
|
|
|
|
|
|
visible: Layout.maximumHeight > 0
|
|
|
|
Layout.maximumHeight: text ? implicitHeight : 0
|
|
|
|
Behavior on Layout.maximumHeight { HNumberAnimation {} }
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
}
|