125 lines
4.1 KiB
QML
125 lines
4.1 KiB
QML
// SPDX-FileCopyrightText: 2020-2023 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-FileCopyrightText: 2021-2022 Bart De Vries <bart@mogwai.be>
|
|
// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls as QQC2
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
import org.kde.neochat
|
|
|
|
QQC2.Control {
|
|
id: root
|
|
|
|
readonly property real pinnedWidth: Kirigami.Units.gridUnit * 6
|
|
property bool drawerEnabled: true
|
|
|
|
required property NeoChatConnection connection
|
|
|
|
leftPadding: 0
|
|
rightPadding: 0
|
|
topPadding: 0
|
|
bottomPadding: 0
|
|
|
|
property string selectedSpaceId
|
|
|
|
contentItem: Loader {
|
|
id: sidebarColumn
|
|
active: root.drawerEnabled
|
|
z: 0
|
|
|
|
sourceComponent: ColumnLayout {
|
|
spacing: 0
|
|
|
|
QQC2.ScrollView {
|
|
id: scrollView
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
QQC2.ScrollBar.vertical.policy: QQC2.ScrollBar.AlwaysOff
|
|
QQC2.ScrollBar.horizontal.policy: QQC2.ScrollBar.AlwaysOff
|
|
contentWidth: -1 // disable horizontal scroll
|
|
|
|
background: Rectangle {
|
|
color: Kirigami.Theme.backgroundColor
|
|
Kirigami.Theme.colorSet: Kirigami.Theme.View
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: column
|
|
width: scrollView.width
|
|
spacing: 0
|
|
|
|
AvatarTabButton {
|
|
id: allRoomButton
|
|
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: width - Kirigami.Units.smallSpacing
|
|
Layout.maximumHeight: width - Kirigami.Units.smallSpacing
|
|
Layout.topMargin: Kirigami.Units.smallSpacing / 2
|
|
|
|
text: i18n("All Rooms")
|
|
source: "globe"
|
|
|
|
contentItem: Kirigami.Icon {
|
|
source: "globe"
|
|
}
|
|
|
|
checked: root.selectedSpaceId === ""
|
|
onClicked: root.selectedSpaceId = ""
|
|
}
|
|
|
|
Repeater {
|
|
model: SortFilterSpaceListModel {
|
|
sourceModel: RoomListModel {
|
|
connection: root.connection
|
|
}
|
|
}
|
|
onCountChanged: {
|
|
root.enabled = count > 0
|
|
if (!root.connection.room(root.selectedSpaceId)) {
|
|
root.selectedSpaceId = ""
|
|
}
|
|
}
|
|
Component.onCompleted: root.enabled = count > 0
|
|
|
|
delegate: AvatarTabButton {
|
|
id: spaceDelegate
|
|
|
|
required property string displayName
|
|
required property string avatar
|
|
required property string roomId
|
|
required property var currentRoom
|
|
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: width - Kirigami.Units.smallSpacing
|
|
Layout.maximumHeight: width - Kirigami.Units.smallSpacing
|
|
|
|
text: displayName
|
|
source: spaceDelegate.avatar
|
|
|
|
onSelected: root.selectedSpaceId = roomId
|
|
checked: root.selectedSpaceId === roomId
|
|
onContextMenuRequested: root.createContextMenu(currentRoom)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function createContextMenu(room) {
|
|
let context = spaceListContextMenu.createObject(root, {
|
|
room: room,
|
|
connection: root.connection
|
|
});
|
|
context.open()
|
|
}
|
|
Component {
|
|
id: spaceListContextMenu
|
|
SpaceListContextMenu {}
|
|
}
|
|
}
|