2019-07-07 23:52:41 -04:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
2019-07-13 05:39:01 -04:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
2019-05-12 13:17:42 -04:00
|
|
|
import "../../Base"
|
|
|
|
|
2019-07-12 18:15:06 -04:00
|
|
|
HHighlightRectangle {
|
2019-05-12 13:17:42 -04:00
|
|
|
id: memberDelegate
|
|
|
|
width: memberList.width
|
|
|
|
height: childrenRect.height
|
|
|
|
|
2019-07-07 22:41:32 -04:00
|
|
|
property var memberInfo: users.find(model.userId)
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-07-12 18:15:06 -04:00
|
|
|
Row {
|
|
|
|
width: parent.width - leftPadding * 2
|
|
|
|
padding: roomSidePane.currentSpacing / 2
|
|
|
|
leftPadding: roomSidePane.currentSpacing
|
|
|
|
rightPadding: 0
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-07-12 18:15:06 -04:00
|
|
|
HRowLayout {
|
|
|
|
width: parent.width
|
|
|
|
spacing: roomSidePane.currentSpacing
|
|
|
|
|
|
|
|
HUserAvatar {
|
|
|
|
id: avatar
|
|
|
|
userId: model.userId
|
|
|
|
}
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-07-12 18:15:06 -04:00
|
|
|
HColumnLayout {
|
|
|
|
Layout.fillWidth: true
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-07-12 18:15:06 -04:00
|
|
|
HLabel {
|
|
|
|
id: memberName
|
|
|
|
text: memberInfo.displayName || model.userId
|
|
|
|
elide: Text.ElideRight
|
|
|
|
verticalAlignment: Qt.AlignVCenter
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-07-16 05:08:27 -04:00
|
|
|
Layout.fillWidth: true
|
2019-07-12 18:15:06 -04:00
|
|
|
}
|
2019-05-12 13:17:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|