|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
import "./dialogs"
|
|
|
|
import Qt.labs.platform 1.1 as Platform
|
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
Page {
|
|
|
|
ListView {
|
|
|
|
id: roomlist
|
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
height: parent.height
|
|
|
|
model: Rooms
|
|
|
|
|
|
|
|
ScrollHelper {
|
|
|
|
flickable: parent
|
|
|
|
anchors.fill: parent
|
|
|
|
enabled: !Settings.mobileMode
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
onActiveTimelineChanged: {
|
|
|
|
roomlist.positionViewAtIndex(Rooms.roomidToIndex(TimelineManager.timeline.roomId()), ListView.Contain);
|
|
|
|
console.log("Test" + TimelineManager.timeline.roomId() + " " + Rooms.roomidToIndex(TimelineManager.timeline.roomId));
|
|
|
|
}
|
|
|
|
target: TimelineManager
|
|
|
|
}
|
|
|
|
|
|
|
|
Platform.Menu {
|
|
|
|
id: roomContextMenu
|
|
|
|
|
|
|
|
property string roomid
|
|
|
|
property var tags
|
|
|
|
|
|
|
|
function show(roomid_, tags_) {
|
|
|
|
roomid = roomid_;
|
|
|
|
tags = tags_;
|
|
|
|
roomContextMenu.clear();
|
|
|
|
roomContextMenu.addItem(leaveOpt.createObject(roomContextMenu));
|
|
|
|
roomContextMenu.addItem(separatorOpt.createObject(roomContextMenu));
|
|
|
|
for (let tag of Rooms.tags()) {
|
|
|
|
roomContextMenu.addItem(tagDelegate.createObject(roomContextMenu, {
|
|
|
|
"t": tag
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
roomContextMenu.addItem(newTagOpt.createObject(roomContextMenu));
|
|
|
|
open();
|
|
|
|
}
|
|
|
|
|
|
|
|
InputDialog {
|
|
|
|
id: newTag
|
|
|
|
|
|
|
|
title: qsTr("New tag")
|
|
|
|
prompt: qsTr("Enter the tag you want to use:")
|
|
|
|
onAccepted: function(text) {
|
|
|
|
Rooms.toggleTag(roomContextMenu.roomid, "u." + text, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: leaveOpt
|
|
|
|
|
|
|
|
Platform.MenuItem {
|
|
|
|
text: qsTr("Leave room")
|
|
|
|
onTriggered: Rooms.leave(roomContextMenu.roomid)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: separatorOpt
|
|
|
|
|
|
|
|
Platform.MenuSeparator {
|
|
|
|
text: qsTr("Tag room as:")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: tagDelegate
|
|
|
|
|
|
|
|
Platform.MenuItem {
|
|
|
|
property string t
|
|
|
|
|
|
|
|
text: {
|
|
|
|
switch (t) {
|
|
|
|
case "m.favourite":
|
|
|
|
return qsTr("Favourite");
|
|
|
|
case "m.lowpriority":
|
|
|
|
return qsTr("Low priority");
|
|
|
|
case "m.server_notice":
|
|
|
|
return qsTr("Server notice");
|
|
|
|
default:
|
|
|
|
return t.substring(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
checkable: true
|
|
|
|
checked: roomContextMenu.tags.includes(t)
|
|
|
|
onTriggered: Rooms.toggleTag(roomContextMenu.roomid, t, checked)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: newTagOpt
|
|
|
|
|
|
|
|
Platform.MenuItem {
|
|
|
|
text: qsTr("Create new tag...")
|
|
|
|
onTriggered: newTag.show()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
delegate: Rectangle {
|
|
|
|
id: roomItem
|
|
|
|
|
|
|
|
property color background: Nheko.colors.window
|
|
|
|
property color importantText: Nheko.colors.text
|
|
|
|
property color unimportantText: Nheko.colors.buttonText
|
|
|
|
property color bubbleBackground: Nheko.colors.highlight
|
|
|
|
property color bubbleText: Nheko.colors.highlightedText
|
|
|
|
|
|
|
|
color: background
|
|
|
|
height: Math.ceil(fontMetrics.lineSpacing * 2.3 + Nheko.paddingMedium * 2)
|
|
|
|
width: ListView.view.width
|
|
|
|
state: "normal"
|
|
|
|
states: [
|
|
|
|
State {
|
|
|
|
name: "highlight"
|
|
|
|
when: hovered.hovered && !(TimelineManager.timeline && model.roomId == TimelineManager.timeline.roomId())
|
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: roomItem
|
|
|
|
background: Nheko.colors.dark
|
|
|
|
importantText: Nheko.colors.brightText
|
|
|
|
unimportantText: Nheko.colors.brightText
|
|
|
|
bubbleBackground: Nheko.colors.highlight
|
|
|
|
bubbleText: Nheko.colors.highlightedText
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: "selected"
|
|
|
|
when: TimelineManager.timeline && model.roomId == TimelineManager.timeline.roomId()
|
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: roomItem
|
|
|
|
background: Nheko.colors.highlight
|
|
|
|
importantText: Nheko.colors.highlightedText
|
|
|
|
unimportantText: Nheko.colors.highlightedText
|
|
|
|
bubbleBackground: Nheko.colors.highlightedText
|
|
|
|
bubbleText: Nheko.colors.highlight
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
TapHandler {
|
|
|
|
acceptedButtons: Qt.RightButton
|
|
|
|
onSingleTapped: roomContextMenu.show(model.roomId, model.tags)
|
|
|
|
gesturePolicy: TapHandler.ReleaseWithinBounds
|
|
|
|
}
|
|
|
|
|
|
|
|
HoverHandler {
|
|
|
|
id: hovered
|
|
|
|
}
|
|
|
|
|
|
|
|
TapHandler {
|
|
|
|
onSingleTapped: TimelineManager.setHistoryView(model.roomId)
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
spacing: Nheko.paddingMedium
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: Nheko.paddingMedium
|
|
|
|
|
|
|
|
Avatar {
|
|
|
|
// In the future we could show an online indicator by setting the userid for the avatar
|
|
|
|
//userid: Nheko.currentUser.userid
|
|
|
|
|
|
|
|
id: avatar
|
|
|
|
|
|
|
|
enabled: false
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
height: Math.ceil(fontMetrics.lineSpacing * 2.3)
|
|
|
|
width: Math.ceil(fontMetrics.lineSpacing * 2.3)
|
|
|
|
url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
|
|
|
|
displayName: model.roomName
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: textContent
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.minimumWidth: 100
|
|
|
|
width: parent.width - avatar.width
|
|
|
|
Layout.preferredWidth: parent.width - avatar.width
|
|
|
|
spacing: Nheko.paddingSmall
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
ElidedLabel {
|
|
|
|
Layout.alignment: Qt.AlignBottom
|
|
|
|
color: roomItem.importantText
|
|
|
|
elideWidth: textContent.width - timestamp.width - Nheko.paddingMedium
|
|
|
|
fullText: model.roomName
|
|
|
|
textFormat: Text.RichText
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: timestamp
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignBottom
|
|
|
|
font.pixelSize: fontMetrics.font.pixelSize * 0.9
|
|
|
|
color: roomItem.unimportantText
|
|
|
|
text: model.time
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
spacing: 0
|
|
|
|
visible: !model.isInvite
|
|
|
|
height: visible ? 0 : undefined
|
|
|
|
|
|
|
|
ElidedLabel {
|
|
|
|
color: roomItem.unimportantText
|
|
|
|
font.weight: Font.Thin
|
|
|
|
font.pixelSize: fontMetrics.font.pixelSize * 0.9
|
|
|
|
elideWidth: textContent.width - (notificationBubble.visible ? notificationBubble.width : 0) - Nheko.paddingSmall
|
|
|
|
fullText: model.lastMessage
|
|
|
|
textFormat: Text.RichText
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: notificationBubble
|
|
|
|
|
|
|
|
visible: model.notificationCount > 0
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
height: fontMetrics.averageCharacterWidth * 3
|
|
|
|
width: height
|
|
|
|
radius: height / 2
|
|
|
|
color: model.hasLoudNotification ? Nheko.theme.red : roomItem.bubbleBackground
|
|
|
|
|
|
|
|
Label {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
width: parent.width * 0.8
|
|
|
|
height: parent.height * 0.8
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
fontSizeMode: Text.Fit
|
|
|
|
font.bold: true
|
|
|
|
font.pixelSize: fontMetrics.font.pixelSize * 0.8
|
|
|
|
color: model.hasLoudNotification ? "white" : roomItem.bubbleText
|
|
|
|
text: model.notificationCount > 99 ? "99+" : model.notificationCount
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
spacing: Nheko.paddingMedium
|
|
|
|
visible: model.isInvite
|
|
|
|
enabled: visible
|
|
|
|
height: visible ? 0 : undefined
|
|
|
|
|
|
|
|
ElidedLabel {
|
|
|
|
elideWidth: textContent.width / 2 - 2 * Nheko.paddingMedium
|
|
|
|
fullText: qsTr("Accept")
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
leftPadding: Nheko.paddingMedium
|
|
|
|
rightPadding: Nheko.paddingMedium
|
|
|
|
color: Nheko.colors.brightText
|
|
|
|
|
|
|
|
TapHandler {
|
|
|
|
onSingleTapped: Rooms.acceptInvite(model.roomId)
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
color: Nheko.theme.alternateButton
|
|
|
|
radius: height / 2
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ElidedLabel {
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
elideWidth: textContent.width / 2 - 2 * Nheko.paddingMedium
|
|
|
|
fullText: qsTr("Decline")
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
leftPadding: Nheko.paddingMedium
|
|
|
|
rightPadding: Nheko.paddingMedium
|
|
|
|
color: Nheko.colors.brightText
|
|
|
|
|
|
|
|
TapHandler {
|
|
|
|
onSingleTapped: Rooms.declineInvite(model.roomId)
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
color: Nheko.theme.alternateButton
|
|
|
|
radius: height / 2
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
height: parent.height - Nheko.paddingSmall * 2
|
|
|
|
width: 3
|
|
|
|
color: Nheko.colors.highlight
|
|
|
|
visible: model.hasUnreadMessages
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
color: Nheko.theme.sidebarBackground
|
|
|
|
}
|
|
|
|
|
|
|
|
header: ColumnLayout {
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: userInfoPanel
|
|
|
|
|
|
|
|
function openUserProfile() {
|
|
|
|
Nheko.updateUserProfile();
|
|
|
|
var userProfile = userProfileComponent.createObject(timelineRoot, {
|
|
|
|
"profile": Nheko.currentUser
|
|
|
|
});
|
|
|
|
userProfile.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
color: Nheko.colors.window
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignBottom
|
|
|
|
Layout.preferredHeight: userInfoGrid.implicitHeight + 2 * Nheko.paddingMedium
|
|
|
|
Layout.minimumHeight: 40
|
|
|
|
|
|
|
|
InputDialog {
|
|
|
|
id: statusDialog
|
|
|
|
|
|
|
|
title: qsTr("Status Message")
|
|
|
|
prompt: qsTr("Enter your status message:")
|
|
|
|
onAccepted: function(text) {
|
|
|
|
Nheko.setStatusMessage(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Platform.Menu {
|
|
|
|
id: userInfoMenu
|
|
|
|
|
|
|
|
Platform.MenuItem {
|
|
|
|
text: qsTr("Profile settings")
|
|
|
|
onTriggered: userInfoPanel.openUserProfile()
|
|
|
|
}
|
|
|
|
|
|
|
|
Platform.MenuItem {
|
|
|
|
text: qsTr("Set status message")
|
|
|
|
onTriggered: statusDialog.show()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
TapHandler {
|
|
|
|
acceptedButtons: Qt.LeftButton
|
|
|
|
onSingleTapped: userInfoPanel.openUserProfile()
|
|
|
|
onLongPressed: userInfoMenu.open()
|
|
|
|
gesturePolicy: TapHandler.ReleaseWithinBounds
|
|
|
|
}
|
|
|
|
|
|
|
|
TapHandler {
|
|
|
|
acceptedButtons: Qt.RightButton
|
|
|
|
onSingleTapped: userInfoMenu.open()
|
|
|
|
gesturePolicy: TapHandler.ReleaseWithinBounds
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: userInfoGrid
|
|
|
|
|
|
|
|
spacing: Nheko.paddingMedium
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: Nheko.paddingMedium
|
|
|
|
|
|
|
|
Avatar {
|
|
|
|
id: avatar
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
Layout.preferredWidth: fontMetrics.lineSpacing * 2
|
|
|
|
Layout.preferredHeight: fontMetrics.lineSpacing * 2
|
|
|
|
url: Nheko.currentUser.avatarUrl.replace("mxc://", "image://MxcImage/")
|
|
|
|
displayName: Nheko.currentUser.displayName
|
|
|
|
userid: Nheko.currentUser.userid
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: col
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
Layout.fillWidth: true
|
|
|
|
width: parent.width - avatar.width - logoutButton.width - Nheko.paddingMedium * 2
|
|
|
|
Layout.preferredWidth: parent.width - avatar.width - logoutButton.width - Nheko.paddingMedium * 2
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
ElidedLabel {
|
|
|
|
Layout.alignment: Qt.AlignBottom
|
|
|
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
|
|
|
font.weight: Font.DemiBold
|
|
|
|
fullText: Nheko.currentUser.displayName
|
|
|
|
elideWidth: col.width
|
|
|
|
}
|
|
|
|
|
|
|
|
ElidedLabel {
|
|
|
|
Layout.alignment: Qt.AlignTop
|
|
|
|
color: Nheko.colors.buttonText
|
|
|
|
font.weight: Font.Thin
|
|
|
|
font.pointSize: fontMetrics.font.pointSize * 0.9
|
|
|
|
elideWidth: col.width
|
|
|
|
fullText: Nheko.currentUser.userid
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
id: logoutButton
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
image: ":/icons/icons/ui/power-button-off.png"
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Logout")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: Nheko.theme.separator
|
|
|
|
height: 2
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: ColumnLayout {
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: Nheko.theme.separator
|
|
|
|
height: 1
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: Nheko.colors.window
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignBottom
|
|
|
|
Layout.preferredHeight: buttonRow.implicitHeight
|
|
|
|
Layout.minimumHeight: 40
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: buttonRow
|
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.margins: Nheko.paddingMedium
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
Layout.alignment: Qt.AlignBottom | Qt.AlignLeft
|
|
|
|
hoverEnabled: true
|
|
|
|
width: 22
|
|
|
|
height: 22
|
|
|
|
image: ":/icons/icons/ui/plus-black-symbol.png"
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Start a new chat")
|
|
|
|
Layout.margins: Nheko.paddingMedium
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter
|
|
|
|
hoverEnabled: true
|
|
|
|
width: 22
|
|
|
|
height: 22
|
|
|
|
image: ":/icons/icons/ui/speech-bubbles-comment-option.png"
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Room directory")
|
|
|
|
Layout.margins: Nheko.paddingMedium
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
Layout.alignment: Qt.AlignBottom | Qt.AlignRight
|
|
|
|
hoverEnabled: true
|
|
|
|
width: 22
|
|
|
|
height: 22
|
|
|
|
image: ":/icons/icons/ui/settings.png"
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("User settings")
|
|
|
|
Layout.margins: Nheko.paddingMedium
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|