nheko/resources/qml/UserProfile.qml

230 lines
7.3 KiB
QML
Raw Normal View History

2020-05-17 15:34:47 +02:00
import QtQuick 2.9
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import QtQuick.Window 2.3
2020-05-22 07:47:02 +02:00
import im.nheko 1.0
import "./device-verification"
2020-05-17 15:34:47 +02:00
ApplicationWindow{
property var user_data
2020-06-28 17:31:34 +02:00
property var avatarUrl
2020-05-17 15:34:47 +02:00
property var colors: currentActivePalette
id:userProfileDialog
2020-06-26 00:54:42 +02:00
height: 650
2020-06-25 19:08:48 +02:00
width: 420
2020-05-17 15:34:47 +02:00
modality:Qt.WindowModal
Layout.alignment: Qt.AlignHCenter
palette: colors
2020-05-27 10:49:26 +02:00
UserProfileList{
id: userProfileList
userId: user_data.userId
onUserIdChanged : {
userProfileList.updateDeviceList()
}
onDeviceListUpdated : {
modelDeviceList.deviceList = userProfileList
}
2020-05-17 15:34:47 +02:00
}
Component {
id: deviceVerificationDialog
DeviceVerification {}
}
Component{
id: deviceVerificationFlow
DeviceVerificationFlow {}
}
2020-05-17 15:34:47 +02:00
background: Item{
id: userProfileItem
width: userProfileDialog.width
height: userProfileDialog.height
2020-06-25 19:08:48 +02:00
2020-06-26 00:54:42 +02:00
// Layout.fillHeight : true
2020-05-17 15:34:47 +02:00
ColumnLayout{
anchors.fill: userProfileItem
width: userProfileDialog.width
spacing: 10
Avatar{
id: userProfileAvatar
2020-06-28 17:31:34 +02:00
url: avatarUrl.replace("mxc://", "image://MxcImage/")
2020-05-17 15:34:47 +02:00
height: 130
width: 130
2020-06-28 17:31:34 +02:00
displayName: user_data.userName
userid: user_data.userId
2020-05-17 15:34:47 +02:00
Layout.alignment: Qt.AlignHCenter
2020-06-25 19:08:48 +02:00
Layout.margins : {
top: 10
}
2020-05-17 15:34:47 +02:00
}
Label{
id: userProfileName
2020-05-27 10:49:26 +02:00
text: user_data.userName
2020-05-17 15:34:47 +02:00
fontSizeMode: Text.HorizontalFit
2020-06-25 19:08:48 +02:00
font.pixelSize: 20
2020-06-28 17:31:34 +02:00
color:TimelineManager.userColor(user_data.userId, colors.window)
font.bold: true
2020-05-17 15:34:47 +02:00
Layout.alignment: Qt.AlignHCenter
}
Label{
id: matrixUserID
2020-05-27 10:49:26 +02:00
text: user_data.userId
2020-05-17 15:34:47 +02:00
fontSizeMode: Text.HorizontalFit
2020-06-25 19:08:48 +02:00
font.pixelSize: 15
color:colors.text
2020-05-17 15:34:47 +02:00
Layout.alignment: Qt.AlignHCenter
}
2020-06-26 00:54:42 +02:00
RowLayout{
Layout.alignment: Qt.AlignHCenter
ImageButton{
image:":/icons/icons/ui/do-not-disturb-rounded-sign.png"
Layout.margins: {
left: 5
right: 5
}
ToolTip.visible: hovered
ToolTip.text: qsTr("Ban the user")
onClicked : {
userProfileList.banUser()
}
}
// ImageButton{
// image:":/icons/icons/ui/volume-off-indicator.png"
// Layout.margins: {
// left: 5
// right: 5
// }
// ToolTip.visible: hovered
// ToolTip.text: qsTr("Ignore messages from this user")
// onClicked : {
// userProfileList.ignoreUser()
// }
// }
ImageButton{
2020-06-26 11:40:37 +02:00
image:":/icons/icons/ui/black-bubble-speech.png"
2020-06-26 00:54:42 +02:00
Layout.margins: {
left: 5
right: 5
}
ToolTip.visible: hovered
2020-06-26 11:40:37 +02:00
ToolTip.text: qsTr("Start a private chat")
2020-06-26 00:54:42 +02:00
onClicked : {
2020-06-26 11:40:37 +02:00
userProfileList.startChat()
2020-06-26 00:54:42 +02:00
}
}
ImageButton{
2020-06-26 11:40:37 +02:00
image:":/icons/icons/ui/round-remove-button.png"
2020-06-26 00:54:42 +02:00
Layout.margins: {
left: 5
right: 5
}
ToolTip.visible: hovered
2020-06-26 11:40:37 +02:00
ToolTip.text: qsTr("Kick the user")
2020-06-26 00:54:42 +02:00
onClicked : {
2020-06-26 11:40:37 +02:00
userProfileList.kickUser()
2020-06-26 00:54:42 +02:00
}
}
}
2020-05-17 15:34:47 +02:00
ScrollView {
2020-06-26 00:54:42 +02:00
implicitHeight: userProfileDialog.height/2 + 20
2020-05-17 15:34:47 +02:00
implicitWidth: userProfileDialog.width-20
clip: true
Layout.alignment: Qt.AlignHCenter
2020-05-27 10:49:26 +02:00
ListView{
id: deviceList
anchors.fill: parent
clip: true
2020-06-25 19:08:48 +02:00
spacing: 4
2020-05-27 10:49:26 +02:00
model: UserProfileModel{
id: modelDeviceList
}
delegate: RowLayout{
width: parent.width
2020-06-25 19:08:48 +02:00
Layout.margins : {
top : 50
}
ColumnLayout{
Text{
Layout.fillWidth: true
color: colors.text
font.bold: true
Layout.alignment: Qt.AlignRight
text: deviceID
}
Text{
Layout.fillWidth: true
color:colors.text
Layout.alignment: Qt.AlignRight
text: displayName
}
2020-05-27 10:49:26 +02:00
}
Button{
id: verifyButton
text:"Verify"
onClicked: {
var newFlow = deviceVerificationFlow.createObject(userProfileDialog,
{userId : user_data.userId,sender: true,deviceId : model.deviceID});
deviceVerificationList.add(newFlow.tranId);
var dialog = deviceVerificationDialog.createObject(userProfileDialog,
{flow: newFlow});
dialog.show();
}
2020-06-25 19:08:48 +02:00
Layout.margins:{
right: 10
}
palette {
button: "white"
}
contentItem: Text {
text: verifyButton.text
color: "black"
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
2020-05-27 10:49:26 +02:00
}
}
2020-05-17 15:34:47 +02:00
}
}
Button{
id: okbutton
2020-05-17 15:34:47 +02:00
text:"OK"
onClicked: userProfileDialog.close()
2020-06-26 00:54:42 +02:00
2020-06-26 11:40:37 +02:00
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
2020-06-25 19:08:48 +02:00
Layout.margins : {
right : 10
2020-06-28 17:31:34 +02:00
bottom: 5
}
palette {
button: "white"
2020-05-17 15:34:47 +02:00
}
contentItem: Text {
text: okbutton.text
color: "black"
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
2020-05-17 15:34:47 +02:00
}
}
Item { Layout.fillHeight: true }
}
}