104 lines
2.4 KiB
QML
104 lines
2.4 KiB
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
import QtQuick.Layouts 1.15
|
||
|
|
||
|
import StatusQ.Core 0.1
|
||
|
import StatusQ.Core.Theme 0.1
|
||
|
|
||
|
import shared.controls.delegates 1.0
|
||
|
|
||
|
import utils 1.0
|
||
|
|
||
|
|
||
|
Control {
|
||
|
id: root
|
||
|
|
||
|
property alias model: listView.model
|
||
|
property int maximumListHeight: 188
|
||
|
|
||
|
readonly property alias count: listView.count
|
||
|
|
||
|
signal removeMemberRequested(int index)
|
||
|
|
||
|
function positionListAtEnd() {
|
||
|
listView.positionViewAtEnd()
|
||
|
}
|
||
|
|
||
|
QtObject {
|
||
|
id: d
|
||
|
|
||
|
readonly property int delegateHeight: 47
|
||
|
}
|
||
|
|
||
|
contentItem: Column {
|
||
|
spacing: 8
|
||
|
|
||
|
RowLayout {
|
||
|
width: root.availableWidth
|
||
|
spacing: 0
|
||
|
|
||
|
component Text: StatusBaseText {
|
||
|
color: Theme.palette.baseColor1
|
||
|
text: qsTr("Members")
|
||
|
font.pixelSize: Theme.tertiaryTextFontSize
|
||
|
elide: Text.ElideRight
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
text: qsTr("Members")
|
||
|
}
|
||
|
|
||
|
Item { Layout.fillWidth: true }
|
||
|
|
||
|
Text {
|
||
|
text: qsTr("%n member(s)", "", root.count)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Rectangle {
|
||
|
width: root.availableWidth
|
||
|
height: Math.min(root.maximumListHeight,
|
||
|
d.delegateHeight * root.count)
|
||
|
|
||
|
radius: Style.current.radius
|
||
|
color: Theme.palette.indirectColor1
|
||
|
|
||
|
StatusListView {
|
||
|
id: listView
|
||
|
|
||
|
anchors.fill: parent
|
||
|
|
||
|
delegate: ContactListItemDelegate {
|
||
|
width: ListView.view.width
|
||
|
height: d.delegateHeight
|
||
|
asset.width: 29
|
||
|
asset.height: 29
|
||
|
|
||
|
color: "transparent"
|
||
|
|
||
|
StatusIcon {
|
||
|
id: deleteIcon
|
||
|
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
anchors.right: parent.right
|
||
|
anchors.rightMargin: 10
|
||
|
|
||
|
width: 16
|
||
|
height: 16
|
||
|
|
||
|
icon: "delete"
|
||
|
color: Theme.palette.directColor1
|
||
|
|
||
|
MouseArea {
|
||
|
anchors.fill: parent
|
||
|
cursorShape: Qt.PointingHandCursor
|
||
|
|
||
|
onClicked: root.removeMemberRequested(model.index)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|