matrixion/qml/CommunitiesList.qml

168 lines
6.3 KiB
QML
Raw Normal View History

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