nheko/resources/qml/CommunitiesList.qml

160 lines
5.0 KiB
QML
Raw Normal View History

2021-06-11 13:12:43 +02:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
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 {
//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
model: Communities
ScrollHelper {
flickable: parent
anchors.fill: parent
enabled: !Settings.mobileMode
}
Platform.Menu {
id: communityContextMenu
2021-06-11 17:54:05 +02:00
property string tagId
2021-06-11 13:12:43 +02:00
function show(id_, tags_) {
2021-06-11 17:54:05 +02:00
tagId = id_;
2021-06-11 13:12:43 +02:00
open();
}
Platform.MenuItem {
2021-06-11 17:54:05 +02:00
text: qsTr("Hide rooms with this tag or from this space by default.")
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
height: avatarSize + 2 * Nheko.paddingMedium
width: ListView.view.width
state: "normal"
2021-11-03 23:20:28 +01:00
ToolTip.visible: hovered && collapsed
2021-06-11 13:12:43 +02:00
ToolTip.text: model.tooltip
2021-11-11 21:32:38 +01:00
onClicked: Communities.setCurrentTagId(model.id)
onPressAndHold: communityContextMenu.show(model.id)
2021-06-11 13:12:43 +02:00
states: [
State {
name: "highlight"
2021-11-03 23:20:28 +01:00
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
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)
gesturePolicy: TapHandler.ReleaseWithinBounds
acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | PointerDevice.TouchPad
}
2021-06-11 13:12:43 +02:00
}
RowLayout {
spacing: Nheko.paddingMedium
anchors.fill: parent
anchors.margins: Nheko.paddingMedium
Avatar {
id: avatar
enabled: false
Layout.alignment: Qt.AlignVCenter
height: avatarSize
width: avatarSize
url: {
2021-06-11 14:51:29 +02:00
if (model.avatarUrl.startsWith("mxc://"))
return model.avatarUrl.replace("mxc://", "image://MxcImage/");
else
return "image://colorimage/" + model.avatarUrl + "?" + communityItem.unimportantText;
2021-06-11 13:12:43 +02:00
}
2021-09-08 02:38:39 +02:00
roomid: model.id
2021-06-11 13:12:43 +02:00
displayName: model.displayName
2021-11-03 23:20:28 +01:00
color: communityItem.backgroundColor
2021-06-11 14:51:29 +02:00
}
ElidedLabel {
visible: !collapsed
Layout.alignment: Qt.AlignVCenter
color: communityItem.importantText
elideWidth: parent.width - avatar.width - Nheko.paddingMedium
fullText: model.displayName
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
}
}
2021-11-11 21:32:38 +01:00
background: Rectangle {
color: backgroundColor
}
2021-06-11 13:12:43 +02:00
}
}
background: Rectangle {
color: Nheko.theme.sidebarBackground
}
}