50 lines
1.3 KiB
QML
50 lines
1.3 KiB
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
import "../../Base"
|
|
|
|
HColumnLayout {
|
|
property bool collapsed: false
|
|
property int normalSpacing: collapsed ? 0 : 8
|
|
|
|
Behavior on normalSpacing {
|
|
NumberAnimation { duration: HStyle.animationDuration }
|
|
}
|
|
|
|
HListView {
|
|
id: memberList
|
|
|
|
spacing: normalSpacing
|
|
topMargin: normalSpacing
|
|
bottomMargin: normalSpacing
|
|
Layout.leftMargin: normalSpacing
|
|
Layout.rightMargin: normalSpacing
|
|
|
|
model: chatPage.roomInfo.sortedMembers
|
|
delegate: MemberDelegate {}
|
|
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
HTextField {
|
|
id: filterField
|
|
placeholderText: qsTr("Filter members")
|
|
backgroundColor: HStyle.sidePane.filterRooms.background
|
|
|
|
// Without this, if the user types in the field, changes of room, then
|
|
// comes back, the field will be empty but the filter still applied.
|
|
Component.onCompleted:
|
|
text = Backend.clients.get(chatPage.userId).getMemberFilter(
|
|
chatPage.category, chatPage.roomId
|
|
)
|
|
|
|
onTextChanged: Backend.clients.get(chatPage.userId).setMemberFilter(
|
|
chatPage.category, chatPage.roomId, text
|
|
)
|
|
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: HStyle.bottomElementsHeight
|
|
}
|
|
}
|