Spectral/qml/form/RoomListForm.qml

241 lines
7.1 KiB
QML
Raw Normal View History

2018-07-12 01:44:41 +00:00
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
2018-02-23 14:39:14 +00:00
import QtGraphicalEffects 1.0
2018-07-12 01:44:41 +00:00
import QtQuick.Controls.Material 2.2
import QtQml.Models 2.3
import Matrique 0.1
import SortFilterProxyModel 0.2
import Matrique.Settings 0.1
import "../component"
2018-02-23 14:39:14 +00:00
Item {
property alias listModel: roomListProxyModel.sourceModel
property var enteredRoom: null
2018-09-02 13:26:42 +00:00
Label {
z: 10
2018-09-04 13:13:14 +00:00
2018-09-02 13:26:42 +00:00
text: MSettings.miniMode ? "Empty" : "Here? No, not here."
anchors.centerIn: parent
visible: listView.count === 0
}
2018-02-23 14:39:14 +00:00
ColumnLayout {
anchors.fill: parent
spacing: 0
2018-09-02 13:26:42 +00:00
TextField {
2018-02-23 14:39:14 +00:00
Layout.fillWidth: true
2018-09-02 13:26:42 +00:00
Layout.preferredHeight: 40
Layout.margins: 12
2018-09-04 13:13:14 +00:00
id: searchField
2018-09-02 13:26:42 +00:00
leftPadding: MSettings.miniMode ? 4 : 32
topPadding: 0
bottomPadding: 0
placeholderText: "Search..."
2018-09-04 13:13:14 +00:00
background: Rectangle { color: MSettings.darkTheme ? "#282828" : "#fafafa" }
2018-02-23 14:39:14 +00:00
2018-09-02 13:26:42 +00:00
Shortcut {
sequence: StandardKey.Find
onActivated: searchField.forceActiveFocus()
}
}
2018-09-02 13:26:42 +00:00
SortFilterProxyModel {
id: roomListProxyModel
2018-09-04 13:13:14 +00:00
2018-09-02 13:26:42 +00:00
filters: RegExpFilter {
roleName: "name"
pattern: searchField.text
caseSensitivity: Qt.CaseInsensitive
}
proxyRoles: ExpressionRole {
name: "display"
expression: {
switch (category) {
case 1: return "Invited"
case 2: return "Favorites"
case 3: return "Rooms"
case 4: return "People"
case 5: return "Low Priorities"
}
}
2018-02-23 14:39:14 +00:00
}
2018-09-02 13:26:42 +00:00
sorters: [
RoleSorter { roleName: "category" },
RoleSorter {
enabled: MSettings.rearrangeByActivity
roleName: "unreadCount"
sortOrder: Qt.DescendingOrder
},
StringSorter { roleName: "name" }
]
2018-02-23 14:39:14 +00:00
}
2018-09-02 13:26:42 +00:00
ListView {
2018-02-23 14:39:14 +00:00
Layout.fillWidth: true
Layout.fillHeight: true
2018-09-02 13:26:42 +00:00
id: listView
2018-03-01 11:56:02 +00:00
2018-09-02 13:26:42 +00:00
spacing: 1
clip: true
2018-02-23 14:39:14 +00:00
2018-09-02 13:26:42 +00:00
model: roomListProxyModel
2018-08-17 04:55:57 +00:00
2018-09-02 13:26:42 +00:00
currentIndex: -1
2018-09-02 23:13:39 +00:00
highlightFollowsCurrentItem: true
highlightMoveDuration: 200
highlightResizeDuration: 0
2018-09-02 13:26:42 +00:00
boundsBehavior: Flickable.DragOverBounds
2018-02-23 14:39:14 +00:00
2018-09-02 13:26:42 +00:00
ScrollBar.vertical: ScrollBar {}
2018-09-02 13:26:42 +00:00
delegate: Rectangle {
readonly property bool highlighted: currentRoom === enteredRoom
2018-07-08 12:54:06 +00:00
2018-09-02 13:26:42 +00:00
width: parent.width
height: 64
2018-09-02 23:13:39 +00:00
color: MSettings.darkTheme ? "#282828" : "#fafafa"
2018-02-23 14:39:14 +00:00
2018-09-02 13:26:42 +00:00
AutoMouseArea {
anchors.fill: parent
2018-09-02 13:26:42 +00:00
hoverEnabled: MSettings.miniMode
2018-09-02 13:26:42 +00:00
onSecondaryClicked: Qt.createComponent("qrc:/qml/menu/RoomContextMenu.qml").createObject(this)
onPrimaryClicked: category === RoomType.Invited ? inviteDialog.open() : enteredRoom = currentRoom
2018-09-02 13:26:42 +00:00
ToolTip.visible: MSettings.miniMode && containsMouse
ToolTip.text: name
}
2018-09-02 23:13:39 +00:00
Rectangle {
anchors.fill: parent
2018-09-04 13:13:14 +00:00
2018-09-06 04:34:15 +00:00
visible: highlightCount > 0 || highlighted
2018-09-02 23:13:39 +00:00
color: Material.accent
opacity: 0.1
}
2018-09-02 13:26:42 +00:00
Rectangle {
width: 4
height: parent.height
2018-09-04 13:13:14 +00:00
2018-09-02 13:26:42 +00:00
color: Material.accent
visible: unreadCount > 0 || highlighted
}
2018-08-24 05:31:17 +00:00
2018-09-02 13:26:42 +00:00
RowLayout {
anchors.fill: parent
anchors.margins: 12
2018-09-04 13:13:14 +00:00
2018-09-02 13:26:42 +00:00
spacing: 12
2018-08-24 05:31:17 +00:00
2018-09-06 08:22:00 +00:00
// ImageStatus {
// Layout.preferredWidth: height
// Layout.fillHeight: true
// source: avatar ? "image://mxc/" + avatar : ""
// displayText: name
// }
ImageItem {
id: imageItem
2018-09-02 13:26:42 +00:00
Layout.preferredWidth: height
Layout.fillHeight: true
2018-09-06 08:22:00 +00:00
hint: name || "No Name"
defaultColor: stringToColor(name || "No Name")
image: avatar
}
2018-09-02 13:26:42 +00:00
ColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
Layout.alignment: Qt.AlignHCenter
2018-09-02 13:26:42 +00:00
visible: parent.width > 64
Label {
Layout.fillWidth: true
Layout.fillHeight: true
2018-09-02 13:26:42 +00:00
text: name || "No Name"
font.pointSize: 12
elide: Text.ElideRight
wrapMode: Text.NoWrap
}
2018-09-02 13:26:42 +00:00
Label {
Layout.fillWidth: true
Layout.fillHeight: true
text: (lastEvent == "" ? topic : lastEvent).replace(/(\r\n\t|\n|\r\t)/gm,"");
2018-09-02 13:26:42 +00:00
elide: Text.ElideRight
wrapMode: Text.NoWrap
}
}
}
2018-09-02 13:26:42 +00:00
}
2018-09-02 13:26:42 +00:00
section.property: "display"
section.criteria: ViewSection.FullString
section.delegate: Label {
width: parent.width
height: 24
2018-09-04 13:13:14 +00:00
2018-09-02 13:26:42 +00:00
text: section
color: "grey"
leftPadding: MSettings.miniMode ? undefined : 16
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
horizontalAlignment: MSettings.miniMode ? Text.AlignHCenter : undefined
}
2018-08-07 15:41:18 +00:00
2018-09-02 13:26:42 +00:00
Dialog {
id: inviteDialog
parent: ApplicationWindow.overlay
2018-08-17 04:55:57 +00:00
2018-09-02 13:26:42 +00:00
x: (window.width - width) / 2
y: (window.height - height) / 2
width: 360
2018-08-17 04:55:57 +00:00
2018-09-02 13:26:42 +00:00
title: "Action Required"
modal: true
standardButtons: Dialog.Ok | Dialog.Cancel
2018-08-17 04:55:57 +00:00
2018-09-02 13:26:42 +00:00
contentItem: Label { text: "Accept this invitation?" }
2018-08-17 04:55:57 +00:00
2018-09-02 13:26:42 +00:00
onAccepted: currentRoom.acceptInvitation()
onRejected: currentRoom.forget()
2018-02-23 14:39:14 +00:00
}
}
}
2018-09-06 08:22:00 +00:00
function stringToColor(str) {
var hash = 0;
for (var i = 0; i < str.length; i++) {
hash = str.charCodeAt(i) + ((hash << 5) - hash);
}
var colour = '#';
for (var j = 0; j < 3; j++) {
var value = (hash >> (j * 8)) & 0xFF;
colour += ('00' + value.toString(16)).substr(-2);
}
return colour;
}
2018-02-23 14:39:14 +00:00
}