nheko/resources/qml/CommunitiesList.qml

226 lines
8.2 KiB
QML
Raw Normal View History

2021-06-11 13:12:43 +02:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
// SPDX-FileCopyrightText: 2023 Nheko Contributors
2021-06-11 13:12:43 +02:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
import "./components"
2021-06-11 13:12:43 +02:00
import "./dialogs"
import Qt.labs.platform 1.1 as Platform
2021-06-13 01:48:11 +02:00
import QtQml 2.12
import QtQuick 2.12
import QtQuick.Controls 2.5
2021-06-11 13:12:43 +02:00
import QtQuick.Layouts 1.3
import im.nheko 1.0
Page {
2021-12-01 00:02:41 +01:00
id: communitySidebar
2021-06-11 13:12:43 +02:00
//leftPadding: Nheko.paddingSmall
//rightPadding: Nheko.paddingSmall
property int avatarSize: Math.ceil(fontMetrics.lineSpacing * 1.6)
property bool collapsed: false
ListView {
id: communitiesList
anchors.left: parent.left
anchors.right: parent.right
height: parent.height
2021-12-01 00:02:41 +01:00
model: Communities.filtered()
2021-06-11 13:12:43 +02:00
ScrollHelper {
flickable: parent
anchors.fill: parent
enabled: !Settings.mobileMode
}
Platform.Menu {
id: communityContextMenu
2021-06-11 17:54:05 +02:00
property string tagId
property bool hidden
property bool muted
2021-06-11 13:12:43 +02:00
function show(id_, hidden_, muted_) {
2021-06-11 17:54:05 +02:00
tagId = id_;
hidden = hidden_;
muted = muted_;
2021-06-11 13:12:43 +02:00
open();
}
Platform.MenuItem {
text: qsTr("Do not show notification counts for this community or tag.")
checkable: true
checked: communityContextMenu.muted
onTriggered: Communities.toggleTagMute(communityContextMenu.tagId)
}
2021-06-11 13:12:43 +02:00
Platform.MenuItem {
text: qsTr("Hide rooms with this tag or from this community by default.")
checkable: true
checked: communityContextMenu.hidden
2021-06-11 17:54:05 +02:00
onTriggered: Communities.toggleTagId(communityContextMenu.tagId)
2021-06-11 13:12:43 +02:00
}
}
2021-11-03 23:20:28 +01:00
delegate: ItemDelegate {
2021-06-11 13:12:43 +02:00
id: communityItem
2021-11-03 23:20:28 +01:00
property color backgroundColor: Nheko.colors.window
2021-06-11 13:12:43 +02:00
property color importantText: Nheko.colors.text
property color unimportantText: Nheko.colors.buttonText
property color bubbleBackground: Nheko.colors.highlight
property color bubbleText: Nheko.colors.highlightedText
required property var model
2021-06-11 13:12:43 +02:00
height: avatarSize + 2 * Nheko.paddingMedium
width: ListView.view.width
state: "normal"
2021-11-03 23:20:28 +01:00
ToolTip.visible: hovered && collapsed
ToolTip.text: model.tooltip
ToolTip.delay: Nheko.tooltipDelay
onClicked: Communities.setCurrentTagId(model.id)
onPressAndHold: communityContextMenu.show(model.id, model.hidden, model.muted)
2021-06-11 13:12:43 +02:00
states: [
State {
name: "highlight"
when: (communityItem.hovered || model.hidden) && !(Communities.currentTagId === model.id)
2021-06-11 13:12:43 +02:00
PropertyChanges {
target: communityItem
2021-11-03 23:20:28 +01:00
backgroundColor: Nheko.colors.dark
2021-06-11 13:12:43 +02:00
importantText: Nheko.colors.brightText
unimportantText: Nheko.colors.brightText
bubbleBackground: Nheko.colors.highlight
bubbleText: Nheko.colors.highlightedText
}
},
State {
name: "selected"
when: Communities.currentTagId == model.id
2021-06-11 13:12:43 +02:00
PropertyChanges {
target: communityItem
2021-11-03 23:20:28 +01:00
backgroundColor: Nheko.colors.highlight
2021-06-11 13:12:43 +02:00
importantText: Nheko.colors.highlightedText
unimportantText: Nheko.colors.highlightedText
bubbleBackground: Nheko.colors.highlightedText
bubbleText: Nheko.colors.highlight
}
}
]
2021-11-03 23:20:28 +01:00
Item {
anchors.fill: parent
2021-06-11 13:12:43 +02:00
2021-11-03 23:20:28 +01:00
TapHandler {
acceptedButtons: Qt.RightButton
onSingleTapped: communityContextMenu.show(model.id, model.hidden, model.muted)
2021-11-03 23:20:28 +01:00
gesturePolicy: TapHandler.ReleaseWithinBounds
acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | PointerDevice.TouchPad
}
2021-06-11 13:12:43 +02:00
}
RowLayout {
2021-12-01 00:02:41 +01:00
id: r
2021-06-11 13:12:43 +02:00
spacing: Nheko.paddingMedium
anchors.fill: parent
anchors.margins: Nheko.paddingMedium
anchors.leftMargin: Nheko.paddingMedium + (communitySidebar.collapsed ? 0 : (fontMetrics.lineSpacing * model.depth))
2021-12-01 00:02:41 +01:00
ImageButton {
visible: !communitySidebar.collapsed && model.collapsible
2021-12-01 00:02:41 +01:00
Layout.preferredHeight: fontMetrics.lineSpacing
Layout.preferredWidth: fontMetrics.lineSpacing
Layout.alignment: Qt.AlignVCenter
height: fontMetrics.lineSpacing
width: fontMetrics.lineSpacing
image: model.collapsed ? ":/icons/icons/ui/collapsed.svg" : ":/icons/icons/ui/expanded.svg"
2021-12-01 00:02:41 +01:00
ToolTip.visible: hovered
ToolTip.delay: Nheko.tooltipDelay
ToolTip.text: model.collapsed ? qsTr("Expand") : qsTr("Collapse")
2021-12-01 00:02:41 +01:00
hoverEnabled: true
onClicked: model.collapsed = !model.collapsed
2021-12-01 00:02:41 +01:00
}
Item {
Layout.preferredWidth: fontMetrics.lineSpacing
visible: !communitySidebar.collapsed && !model.collapsible && Communities.containsSubspaces
2021-12-01 00:02:41 +01:00
}
2021-06-11 13:12:43 +02:00
Avatar {
id: avatar
enabled: false
Layout.alignment: Qt.AlignVCenter
height: avatarSize
width: avatarSize
url: {
if (model.avatarUrl.startsWith("mxc://"))
return model.avatarUrl.replace("mxc://", "image://MxcImage/");
2021-06-11 14:51:29 +02:00
else
return "image://colorimage/" + model.avatarUrl + "?" + communityItem.unimportantText;
2021-06-11 13:12:43 +02:00
}
roomid: model.id
displayName: model.displayName
2021-11-03 23:20:28 +01:00
color: communityItem.backgroundColor
NotificationBubble {
notificationCount: model.unreadMessages
hasLoudNotification: model.hasLoudNotification
bubbleBackgroundColor: communityItem.bubbleBackground
bubbleTextColor: communityItem.bubbleText
font.pixelSize: fontMetrics.font.pixelSize * 0.6
mayBeVisible: communitySidebar.collapsed && !model.muted && Settings.spaceNotifications
anchors.right: avatar.right
anchors.bottom: avatar.bottom
anchors.margins: -Nheko.paddingSmall
}
2021-06-11 14:51:29 +02:00
}
ElidedLabel {
2021-12-01 00:02:41 +01:00
visible: !communitySidebar.collapsed
2021-06-11 14:51:29 +02:00
Layout.alignment: Qt.AlignVCenter
color: communityItem.importantText
2021-12-01 00:33:22 +01:00
Layout.fillWidth: true
elideWidth: width
fullText: model.displayName
2021-06-11 14:51:29 +02:00
textFormat: Text.PlainText
}
2021-06-11 13:12:43 +02:00
2021-06-11 14:51:29 +02:00
Item {
Layout.fillWidth: true
2021-06-11 13:12:43 +02:00
}
NotificationBubble {
notificationCount: model.unreadMessages
hasLoudNotification: model.hasLoudNotification
bubbleBackgroundColor: communityItem.bubbleBackground
bubbleTextColor: communityItem.bubbleText
mayBeVisible: !communitySidebar.collapsed && !model.muted && Settings.spaceNotifications
Layout.alignment: Qt.AlignRight
Layout.leftMargin: Nheko.paddingSmall
}
2021-06-11 13:12:43 +02:00
}
2021-11-11 21:32:38 +01:00
background: Rectangle {
color: communityItem.backgroundColor
2021-11-11 21:32:38 +01:00
}
2021-06-11 13:12:43 +02:00
}
}
background: Rectangle {
color: Nheko.theme.sidebarBackground
}
}