2019-12-08 02:54:28 +03:00
|
|
|
import QtQuick 2.9
|
2020-02-02 02:27:28 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2019-10-06 13:12:29 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
2019-09-07 02:33:46 +03:00
|
|
|
import QtGraphicalEffects 1.0
|
2019-09-18 21:34:30 +03:00
|
|
|
import QtQuick.Window 2.2
|
2020-03-10 02:30:45 +03:00
|
|
|
import Qt.labs.settings 1.0
|
2019-08-30 20:29:25 +03:00
|
|
|
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-09-03 00:28:05 +03:00
|
|
|
|
2019-10-08 21:55:09 +03:00
|
|
|
import "./delegates"
|
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Page {
|
2019-10-17 10:36:16 +03:00
|
|
|
property var colors: currentActivePalette
|
|
|
|
property var systemInactive: SystemPalette { colorGroup: SystemPalette.Disabled }
|
|
|
|
property var inactiveColors: currentInactivePalette ? currentInactivePalette : systemInactive
|
2019-11-03 03:17:40 +03:00
|
|
|
property int avatarSize: 40
|
2019-09-19 22:53:24 +03:00
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
palette: colors
|
|
|
|
|
2020-04-30 23:02:41 +03:00
|
|
|
FontMetrics {
|
|
|
|
id: fontMetrics
|
|
|
|
}
|
|
|
|
|
2020-03-10 02:30:45 +03:00
|
|
|
Settings {
|
|
|
|
id: settings
|
|
|
|
category: "user"
|
|
|
|
property bool avatar_circles: true
|
2020-05-04 14:14:54 +03:00
|
|
|
property string emoji_font_family: "default"
|
2020-03-10 02:30:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Settings {
|
|
|
|
id: timelineSettings
|
|
|
|
category: "user/timeline"
|
|
|
|
property bool buttons: true
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:27:28 +03:00
|
|
|
Menu {
|
|
|
|
id: messageContextMenu
|
2020-02-02 02:33:55 +03:00
|
|
|
modal: true
|
2020-02-02 02:27:28 +03:00
|
|
|
|
2020-04-21 23:32:45 +03:00
|
|
|
function show(eventId_, eventType_, isEncrypted_, showAt) {
|
2020-02-02 02:27:28 +03:00
|
|
|
eventId = eventId_
|
|
|
|
eventType = eventType_
|
2020-04-21 23:32:45 +03:00
|
|
|
isEncrypted = isEncrypted_
|
2020-02-02 02:27:28 +03:00
|
|
|
popup(showAt)
|
|
|
|
}
|
|
|
|
|
|
|
|
property string eventId
|
|
|
|
property int eventType
|
2020-04-21 23:32:45 +03:00
|
|
|
property bool isEncrypted
|
2020-02-02 02:27:28 +03:00
|
|
|
|
2020-03-10 02:30:45 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Reply")
|
|
|
|
onClicked: chat.model.replyAction(messageContextMenu.eventId)
|
|
|
|
}
|
2020-02-02 02:27:28 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Read receipts")
|
|
|
|
onTriggered: chat.model.readReceiptsAction(messageContextMenu.eventId)
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Mark as read")
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("View raw message")
|
|
|
|
onTriggered: chat.model.viewRawMessage(messageContextMenu.eventId)
|
|
|
|
}
|
2020-04-21 23:32:45 +03:00
|
|
|
MenuItem {
|
|
|
|
visible: messageContextMenu.isEncrypted
|
|
|
|
height: visible ? implicitHeight : 0
|
|
|
|
text: qsTr("View decrypted raw message")
|
|
|
|
onTriggered: chat.model.viewDecryptedRawMessage(messageContextMenu.eventId)
|
|
|
|
}
|
2020-02-02 02:27:28 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Redact message")
|
|
|
|
onTriggered: chat.model.redactEvent(messageContextMenu.eventId)
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
visible: messageContextMenu.eventType == MtxEvent.ImageMessage || messageContextMenu.eventType == MtxEvent.VideoMessage || messageContextMenu.eventType == MtxEvent.AudioMessage || messageContextMenu.eventType == MtxEvent.FileMessage || messageContextMenu.eventType == MtxEvent.Sticker
|
2020-04-21 23:32:45 +03:00
|
|
|
height: visible ? implicitHeight : 0
|
2020-02-02 02:27:28 +03:00
|
|
|
text: qsTr("Save as")
|
|
|
|
onTriggered: timelineManager.timeline.saveMedia(messageContextMenu.eventId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-28 19:08:49 +03:00
|
|
|
id: timelineRoot
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: colors.window
|
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Label {
|
2019-11-10 02:30:02 +03:00
|
|
|
visible: !timelineManager.timeline && !timelineManager.isInitialSync
|
2019-11-08 16:39:45 +03:00
|
|
|
anchors.centerIn: parent
|
|
|
|
text: qsTr("No room open")
|
|
|
|
font.pointSize: 24
|
2020-04-29 22:41:46 +03:00
|
|
|
color: colors.text
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
2019-08-31 00:20:53 +03:00
|
|
|
|
2019-11-10 02:30:02 +03:00
|
|
|
BusyIndicator {
|
|
|
|
anchors.centerIn: parent
|
2020-04-29 13:15:20 +03:00
|
|
|
running: timelineManager.isInitialSync
|
2019-11-10 02:30:02 +03:00
|
|
|
height: 200
|
|
|
|
width: 200
|
2020-01-06 20:08:01 +03:00
|
|
|
z: 3
|
2019-11-10 02:30:02 +03:00
|
|
|
}
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
ListView {
|
|
|
|
id: chat
|
2019-09-01 23:34:36 +03:00
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
visible: timelineManager.timeline != null
|
2020-01-17 03:25:14 +03:00
|
|
|
|
2020-05-14 00:55:02 +03:00
|
|
|
cacheBuffer: 500
|
|
|
|
|
2020-01-17 03:25:14 +03:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: chatFooter.top
|
2019-08-31 00:20:53 +03:00
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
anchors.leftMargin: 4
|
|
|
|
anchors.rightMargin: scrollbar.width
|
2019-11-03 03:17:40 +03:00
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
model: timelineManager.timeline
|
2019-09-18 21:34:30 +03:00
|
|
|
|
2019-12-08 02:54:28 +03:00
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
|
2020-04-30 23:02:41 +03:00
|
|
|
ScrollHelper {
|
|
|
|
flickable: parent
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
2019-09-18 21:34:30 +03:00
|
|
|
|
2020-01-31 01:57:39 +03:00
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.MoveToPreviousPage
|
2020-01-31 02:02:15 +03:00
|
|
|
onActivated: { chat.contentY = chat.contentY - chat.height / 2; chat.returnToBounds(); }
|
2020-01-31 01:57:39 +03:00
|
|
|
}
|
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.MoveToNextPage
|
2020-01-31 02:02:15 +03:00
|
|
|
onActivated: { chat.contentY = chat.contentY + chat.height / 2; chat.returnToBounds(); }
|
2020-01-31 01:57:39 +03:00
|
|
|
}
|
2020-05-06 14:33:13 +03:00
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.Cancel
|
|
|
|
onActivated: chat.model.reply = undefined
|
|
|
|
}
|
|
|
|
Shortcut {
|
|
|
|
sequence: "Alt+Up"
|
|
|
|
onActivated: chat.model.reply = chat.model.indexToId(chat.model.reply? chat.model.idToIndex(chat.model.reply) + 1 : 0)
|
|
|
|
}
|
|
|
|
Shortcut {
|
|
|
|
sequence: "Alt+Down"
|
|
|
|
onActivated: {
|
|
|
|
var idx = chat.model.reply? chat.model.idToIndex(chat.model.reply) - 1 : -1
|
|
|
|
chat.model.reply = idx >= 0 ? chat.model.indexToId(idx) : undefined
|
|
|
|
}
|
|
|
|
}
|
2020-01-31 01:57:39 +03:00
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
|
|
id: scrollbar
|
2019-12-07 17:00:06 +03:00
|
|
|
parent: chat.parent
|
|
|
|
anchors.top: chat.top
|
|
|
|
anchors.left: chat.right
|
|
|
|
anchors.bottom: chat.bottom
|
2019-09-18 21:34:30 +03:00
|
|
|
}
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
spacing: 4
|
2020-01-04 01:21:33 +03:00
|
|
|
verticalLayoutDirection: ListView.BottomToTop
|
|
|
|
|
2020-01-06 20:08:01 +03:00
|
|
|
onCountChanged: if (atYEnd) model.currentIndex = 0 // Mark last event as read, since we are at the bottom
|
|
|
|
|
2020-01-04 01:21:33 +03:00
|
|
|
delegate: Rectangle {
|
|
|
|
// This would normally be previousSection, but our model's order is inverted.
|
|
|
|
property bool sectionBoundary: (ListView.nextSection != "" && ListView.nextSection !== ListView.section) || model.index === chat.count - 1
|
|
|
|
|
|
|
|
id: wrapper
|
|
|
|
property Item section
|
|
|
|
width: chat.width
|
|
|
|
height: section ? section.height + timelinerow.height : timelinerow.height
|
2020-01-06 20:24:50 +03:00
|
|
|
color: "transparent"
|
2020-01-04 01:21:33 +03:00
|
|
|
|
|
|
|
TimelineRow {
|
|
|
|
id: timelinerow
|
|
|
|
y: section ? section.y + section.height : 0
|
|
|
|
}
|
|
|
|
|
|
|
|
onSectionBoundaryChanged: {
|
|
|
|
if (sectionBoundary) {
|
|
|
|
var properties = {
|
|
|
|
'modelData': model.dump,
|
|
|
|
'section': ListView.section,
|
|
|
|
'nextSection': ListView.nextSection
|
|
|
|
}
|
|
|
|
section = sectionHeader.createObject(wrapper, properties)
|
|
|
|
} else {
|
|
|
|
section.destroy()
|
|
|
|
section = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-06 20:08:01 +03:00
|
|
|
Binding {
|
|
|
|
target: chat.model
|
|
|
|
property: "currentIndex"
|
2020-01-21 22:46:12 +03:00
|
|
|
when: y + height + 2 * chat.spacing > chat.contentY + chat.height && y < chat.contentY + chat.height
|
2020-01-06 20:08:01 +03:00
|
|
|
value: index
|
|
|
|
delayed: true
|
|
|
|
}
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
property: "section"
|
2020-01-04 01:21:33 +03:00
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: sectionHeader
|
|
|
|
Column {
|
|
|
|
property var modelData
|
|
|
|
property string section
|
|
|
|
property string nextSection
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
topPadding: 4
|
|
|
|
bottomPadding: 4
|
|
|
|
spacing: 8
|
|
|
|
|
2020-01-04 01:21:33 +03:00
|
|
|
visible: !!modelData
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
width: parent.width
|
|
|
|
height: (section.includes(" ") ? dateBubble.height + 8 + userName.height : userName.height) + 8
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: dateBubble
|
2020-01-04 01:21:33 +03:00
|
|
|
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
|
2019-11-08 16:39:45 +03:00
|
|
|
visible: section.includes(" ")
|
2020-01-04 01:21:33 +03:00
|
|
|
text: chat.model.formatDateSeparator(modelData.timestamp)
|
2020-05-06 00:43:43 +03:00
|
|
|
color: colors.text
|
2019-11-08 16:39:45 +03:00
|
|
|
|
2020-04-29 12:14:43 +03:00
|
|
|
height: fontMetrics.height * 1.4
|
|
|
|
width: contentWidth * 1.2
|
2020-04-28 10:38:13 +03:00
|
|
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2019-11-08 16:39:45 +03:00
|
|
|
background: Rectangle {
|
|
|
|
radius: parent.height / 2
|
2020-05-06 00:43:43 +03:00
|
|
|
color: colors.base
|
2019-11-03 04:09:36 +03:00
|
|
|
}
|
2019-09-01 23:34:36 +03:00
|
|
|
}
|
2019-11-08 16:39:45 +03:00
|
|
|
Row {
|
|
|
|
height: userName.height
|
2020-04-29 12:14:43 +03:00
|
|
|
spacing: 4
|
2019-11-08 16:39:45 +03:00
|
|
|
Avatar {
|
|
|
|
width: avatarSize
|
|
|
|
height: avatarSize
|
2020-01-04 01:21:33 +03:00
|
|
|
url: chat.model.avatarUrl(modelData.userId).replace("mxc://", "image://MxcImage/")
|
|
|
|
displayName: modelData.userName
|
2019-11-08 16:39:45 +03:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
2020-01-04 01:21:33 +03:00
|
|
|
onClicked: chat.model.openUserProfile(modelData.userId)
|
2019-11-08 16:39:45 +03:00
|
|
|
cursorShape: Qt.PointingHandCursor
|
2020-03-10 02:30:45 +03:00
|
|
|
propagateComposedEvents: true
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
|
|
|
}
|
2019-09-01 23:34:36 +03:00
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Label {
|
2019-11-08 16:39:45 +03:00
|
|
|
id: userName
|
2020-01-04 01:21:33 +03:00
|
|
|
text: chat.model.escapeEmoji(modelData.userName)
|
2020-02-20 22:51:07 +03:00
|
|
|
color: timelineManager.userColor(modelData.userId, colors.window)
|
2019-11-08 16:39:45 +03:00
|
|
|
textFormat: Text.RichText
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: chat.model.openUserProfile(section.split(" ")[0])
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
2020-03-10 02:30:45 +03:00
|
|
|
propagateComposedEvents: true
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
2019-11-03 04:09:36 +03:00
|
|
|
}
|
2019-09-01 23:34:36 +03:00
|
|
|
}
|
|
|
|
}
|
2019-09-01 15:17:33 +03:00
|
|
|
}
|
2020-01-17 03:25:14 +03:00
|
|
|
|
2020-04-29 13:15:20 +03:00
|
|
|
footer: BusyIndicator {
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
running: chat.model && chat.model.paginationInProgress
|
|
|
|
height: 50
|
|
|
|
width: 50
|
|
|
|
z: 3
|
|
|
|
}
|
2020-01-17 03:25:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: chatFooter
|
|
|
|
|
2020-04-30 23:02:41 +03:00
|
|
|
height: Math.max(fontMetrics.height * 1.2, footerContent.height)
|
2020-01-17 03:25:14 +03:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
z: 3
|
|
|
|
|
2020-02-03 21:21:03 +03:00
|
|
|
color: "transparent"
|
2020-01-17 03:25:14 +03:00
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
Column {
|
2020-01-29 03:20:39 +03:00
|
|
|
id: footerContent
|
2020-01-17 03:25:14 +03:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-03-28 21:12:00 +03:00
|
|
|
Label {
|
2020-01-28 21:08:16 +03:00
|
|
|
id: typingDisplay
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
anchors.rightMargin: 10
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-04-29 22:41:46 +03:00
|
|
|
color: colors.text
|
2020-01-28 21:08:16 +03:00
|
|
|
text: chat.model ? chat.model.formatTypingUsers(chat.model.typingUsers, colors.window) : ""
|
|
|
|
textFormat: Text.RichText
|
|
|
|
}
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
Rectangle {
|
2020-01-28 07:28:11 +03:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
id: replyPopup
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-04-13 17:22:30 +03:00
|
|
|
visible: chat.model && chat.model.reply
|
2020-01-28 21:08:16 +03:00
|
|
|
// Height of child, plus margins, plus border
|
|
|
|
height: replyPreview.height + 10
|
2020-02-03 21:21:03 +03:00
|
|
|
color: colors.base
|
2020-01-28 07:28:11 +03:00
|
|
|
|
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
Reply {
|
|
|
|
id: replyPreview
|
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
anchors.right: closeReplyButton.left
|
2020-01-29 03:20:39 +03:00
|
|
|
anchors.rightMargin: 20
|
2020-01-28 21:08:16 +03:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
|
2020-04-13 17:22:30 +03:00
|
|
|
modelData: chat.model ? chat.model.getDump(chat.model.reply) : {}
|
2020-02-20 22:51:07 +03:00
|
|
|
userColor: timelineManager.userColor(modelData.userId, colors.window)
|
2020-01-28 07:28:11 +03:00
|
|
|
}
|
2020-01-28 21:08:16 +03:00
|
|
|
|
2020-01-28 07:28:11 +03:00
|
|
|
ImageButton {
|
|
|
|
id: closeReplyButton
|
|
|
|
|
2020-01-28 21:08:16 +03:00
|
|
|
anchors.right: parent.right
|
2020-01-29 03:20:39 +03:00
|
|
|
anchors.rightMargin: 15
|
2020-01-28 21:08:16 +03:00
|
|
|
anchors.top: replyPreview.top
|
2020-01-29 03:20:39 +03:00
|
|
|
hoverEnabled: true
|
2020-01-30 06:01:44 +03:00
|
|
|
width: 16
|
|
|
|
height: 16
|
2020-01-28 21:08:16 +03:00
|
|
|
|
2020-01-28 07:28:11 +03:00
|
|
|
image: ":/icons/icons/ui/remove-symbol.png"
|
2020-02-02 02:27:28 +03:00
|
|
|
ToolTip.visible: closeReplyButton.hovered
|
|
|
|
ToolTip.text: qsTr("Close")
|
2020-01-28 07:28:11 +03:00
|
|
|
|
2020-04-13 17:22:30 +03:00
|
|
|
onClicked: chat.model.reply = undefined
|
2020-01-28 07:28:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-31 00:20:53 +03:00
|
|
|
}
|
2019-08-31 23:43:31 +03:00
|
|
|
}
|
2019-08-30 20:29:25 +03:00
|
|
|
}
|