moment/harmonyqml/components/SidePane/AccountDelegate.qml

77 lines
2.0 KiB
QML
Raw Normal View History

import QtQuick.Layouts 1.3
import "../Base"
2019-03-22 14:28:14 +11:00
HColumnLayout {
id: accountDelegate
width: parent.width
2019-03-22 14:28:14 +11:00
property string roomListUserId: userId
HRowLayout {
id: row
2019-03-26 09:29:46 +11:00
HAvatar { id: avatar; name: displayName; dimension: 36 }
2019-03-26 09:29:46 +11:00
HColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
2019-03-26 09:29:46 +11:00
HLabel {
id: accountLabel
text: displayName.value || userId
2019-04-29 05:36:43 +10:00
elide: HLabel.ElideRight
2019-03-26 09:29:46 +11:00
maximumLineCount: 1
Layout.fillWidth: true
leftPadding: 6
rightPadding: leftPadding
2019-03-26 09:29:46 +11:00
}
HTextField {
id: statusEdit
text: statusMessage || ""
2019-03-26 09:29:46 +11:00
placeholderText: qsTr("Set status message")
font.pixelSize: HStyle.fontSize.small
background: null
padding: 0
leftPadding: accountLabel.leftPadding
rightPadding: leftPadding
Layout.fillWidth: true
onEditingFinished: {
//Backend.setStatusMessage(userId, text)
pageStack.forceActiveFocus()
}
}
}
2019-03-26 09:29:46 +11:00
HButton {
id: toggleExpand
iconName: roomList.visible ? "up" : "down"
iconDimension: 16
backgroundColor: "transparent"
onClicked: roomList.visible = ! roomList.visible
Layout.preferredHeight: row.height
2019-03-22 14:28:14 +11:00
}
}
RoomList {
id: roomList
visible: true
interactive: false // no scrolling
userId: roomListUserId
Layout.preferredHeight: roomList.visible ? roomList.contentHeight : 0
Layout.preferredWidth:
parent.width - Layout.leftMargin - Layout.rightMargin
Layout.margins: accountList.spacing
Layout.rightMargin: 0
2019-04-29 05:52:26 +10:00
Layout.leftMargin:
sidePane.width <= (sidePane.Layout.minimumWidth + Layout.margins) ?
0 : Layout.margins
}
2019-03-22 14:28:14 +11:00
}