import QtQuick 2.12 import QtQuick.Layouts 1.12 import "../Base" Column { id: accountDelegate width: parent.width spacing: theme.spacing / 2 opacity: paneToolBar.roomFilter && roomList.model.count < 1 ? 0.35 : 1 Behavior on opacity { HNumberAnimation {} } property bool expanded: true readonly property var modelItem: model Component.onCompleted: expanded = ! window.uiState.collapseAccounts[model.user_id] onExpandedChanged: { window.uiState.collapseAccounts[model.user_id] = ! expanded window.uiStateChanged() } HInteractiveRectangle { width: parent.width height: childrenRect.height color: theme.sidePane.account.background TapHandler { onTapped: pageStack.showPage( "EditAccount/EditAccount", { "userId": model.user_id } ) } HRowLayout { id: row width: parent.width HUserAvatar { id: avatar userId: model.user_id displayName: model.display_name avatarUrl: model.avatar_url } HLabel { id: accountLabel color: theme.sidePane.account.name text: model.display_name || model.user_id font.pixelSize: theme.fontSize.big elide: HLabel.ElideRight leftPadding: sidePane.currentSpacing rightPadding: leftPadding Layout.fillWidth: true Layout.fillHeight: true } ExpandButton { id: expandButton expandableItem: accountDelegate Layout.preferredHeight: row.height } } } RoomList { id: roomList visible: height > 0 width: parent.width height: childrenRect.height * (accountDelegate.expanded ? 1 : 0) clip: heightAnimation.running userId: modelItem.user_id Behavior on height { HNumberAnimation { id: heightAnimation } } } }