mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.3 KiB
108 lines
3.3 KiB
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import ".."
|
|
import QtQuick 2.15
|
|
import QtQuick.Window 2.13
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls 2.3
|
|
import QtQml.Models 2.15
|
|
import im.nheko 1.0
|
|
|
|
ApplicationWindow {
|
|
id: createDirectRoot
|
|
title: qsTr("Create Direct Chat")
|
|
property var profile
|
|
property bool otherUserHasE2ee: profile? dMod.count > 0 : true
|
|
minimumHeight: layout.implicitHeight+2*layout.anchors.margins+footer.height
|
|
minimumWidth: footer.width
|
|
|
|
Shortcut {
|
|
sequence: StandardKey.Cancel
|
|
onActivated: roomDirectoryWindow.close()
|
|
}
|
|
DelegateModel {
|
|
id: dMod
|
|
model: profile? profile.deviceList : undefined
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: layout
|
|
anchors.fill: parent
|
|
anchors.margins: Nheko.paddingSmall
|
|
MatrixTextField {
|
|
id: userID
|
|
property bool isValidMxid: text.match("@.+?:.{3,}")
|
|
Layout.fillWidth: true
|
|
focus: true
|
|
placeholderText: qsTr("Name")
|
|
onTextChanged: {
|
|
if(isValidMxid) {
|
|
profile = TimelineManager.getGlobalUserProfile(text);
|
|
} else
|
|
profile = null;
|
|
}
|
|
}
|
|
|
|
GridLayout {
|
|
Layout.fillWidth: true
|
|
rows: 2
|
|
columns: 2
|
|
rowSpacing: Nheko.paddingSmall
|
|
columnSpacing: Nheko.paddingMedium
|
|
|
|
Avatar {
|
|
Layout.rowSpan: 2
|
|
Layout.preferredWidth: Nheko.avatarSize
|
|
Layout.preferredHeight: Nheko.avatarSize
|
|
Layout.alignment: Qt.AlignLeft
|
|
userid: profile? profile.mxid : ""
|
|
url: profile? profile.avatarUrl.replace("mxc://", "image://MxcImage/") : null
|
|
displayName: profile? profile.displayName : ""
|
|
enabled: false
|
|
}
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: profile? profile.displayName : ""
|
|
color: TimelineManager.userColor(userID.text, Nheko.colors.window)
|
|
font.pointSize: fontMetrics.font.pointSize
|
|
}
|
|
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: userID.text
|
|
color: Nheko.colors.buttonText
|
|
font.pointSize: fontMetrics.font.pointSize * 0.9
|
|
}
|
|
}
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
Label {
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignLeft
|
|
text: qsTr("Encryption")
|
|
color: Nheko.colors.text
|
|
}
|
|
ToggleButton {
|
|
Layout.alignment: Qt.AlignRight
|
|
id: encryption
|
|
checked: otherUserHasE2ee
|
|
}
|
|
}
|
|
}
|
|
footer: DialogButtonBox {
|
|
standardButtons: DialogButtonBox.Cancel
|
|
Button {
|
|
text: "Start Direct Chat"
|
|
DialogButtonBox.buttonRole: DialogButtonBox.AcceptRole
|
|
enabled: userID.isValidMxid
|
|
}
|
|
onRejected: createDirectRoot.close();
|
|
onAccepted: {
|
|
profile.startChat()
|
|
createDirectRoot.close()
|
|
}
|
|
}
|
|
}
|
|
|