nheko/resources/qml/TimelineView.qml

527 lines
13 KiB
QML
Raw Normal View History

import QtQuick 2.9
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
2019-09-07 01:33:46 +02:00
import QtGraphicalEffects 1.0
2019-09-18 20:34:30 +02:00
import QtQuick.Window 2.2
2019-08-30 19:29:25 +02:00
import im.nheko 1.0
2020-05-14 02:19:15 +02:00
import im.nheko.EmojiModel 1.0
import "./delegates"
2020-05-14 02:19:15 +02:00
import "./emoji"
import "./device-verification"
Page {
id: timelineRoot
property var colors: currentActivePalette
property var systemInactive: SystemPalette { colorGroup: SystemPalette.Disabled }
property var inactiveColors: currentInactivePalette ? currentInactivePalette : systemInactive
property int avatarSize: 40
property real highlightHue: colors.highlight.hslHue
property real highlightSat: colors.highlight.hslSaturation
property real highlightLight: colors.highlight.hslLightness
2019-09-19 21:53:24 +02:00
palette: colors
2020-04-30 22:02:41 +02:00
FontMetrics {
id: fontMetrics
}
2020-07-25 22:57:54 +02:00
EmojiPicker {
id: emojiPopup
width: 7 * 52 + 20
height: 6 * 52
colors: palette
model: EmojiProxyModel {
category: EmojiCategory.People
sourceModel: EmojiModel {}
}
}
2020-05-14 02:19:15 +02:00
Menu {
id: messageContextMenu
2020-02-02 00:33:55 +01:00
modal: true
2020-07-26 02:06:38 +02:00
function show(eventId_, eventType_, isEncrypted_, showAt_, position) {
eventId = eventId_
eventType = eventType_
isEncrypted = isEncrypted_
2020-07-26 02:06:38 +02:00
if (position)
popup(position, showAt_)
else
2020-07-20 00:42:48 +02:00
popup(showAt_)
}
property string eventId
property int eventType
property bool isEncrypted
2020-07-20 00:42:48 +02:00
2020-05-08 02:53:24 +02:00
MenuItem {
text: qsTr("React")
2020-07-20 00:42:48 +02:00
onClicked: emojiPopup.show(messageContextMenu.parent, messageContextMenu.eventId)
2020-05-08 02:53:24 +02:00
}
MenuItem {
text: qsTr("Reply")
onClicked: chat.model.replyAction(messageContextMenu.eventId)
}
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)
}
MenuItem {
visible: messageContextMenu.isEncrypted
height: visible ? implicitHeight : 0
text: qsTr("View decrypted raw message")
onTriggered: chat.model.viewDecryptedRawMessage(messageContextMenu.eventId)
}
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
height: visible ? implicitHeight : 0
text: qsTr("Save as")
2020-06-24 16:24:22 +02:00
onTriggered: TimelineManager.timeline.saveMedia(messageContextMenu.eventId)
}
}
Rectangle {
anchors.fill: parent
color: colors.window
Component {
id: deviceVerificationDialog
DeviceVerification {}
}
Connections {
2020-06-24 16:24:22 +02:00
target: TimelineManager
2020-07-28 23:55:47 +02:00
function onNewDeviceVerificationRequest(flow,transactionId,userId,deviceId,isRequest) {
var dialog = deviceVerificationDialog.createObject(timelineRoot, {flow: flow});
dialog.show();
}
}
2020-07-04 04:24:28 +02:00
Connections {
target: TimelineManager.timeline
function onOpenProfile(profile) {
var userProfile = userProfileComponent.createObject(timelineRoot,{profile: profile});
userProfile.show();
}
}
Label {
2020-06-24 16:24:22 +02:00
visible: !TimelineManager.timeline && !TimelineManager.isInitialSync
anchors.centerIn: parent
text: qsTr("No room open")
font.pointSize: 24
2020-04-29 21:41:46 +02:00
color: colors.text
}
2019-08-30 23:20:53 +02:00
BusyIndicator {
visible: running
anchors.centerIn: parent
2020-06-24 16:24:22 +02:00
running: TimelineManager.isInitialSync
height: 200
width: 200
z: 3
}
ColumnLayout {
anchors.fill: parent
Rectangle {
id: topBar
Layout.fillWidth: true
implicitHeight: topLayout.height + 16
z: 3
color: colors.base
MouseArea {
anchors.fill: parent
onClicked: TimelineManager.openRoomSettings();
}
GridLayout {
id: topLayout
anchors.left: parent.left
anchors.right: parent.right
anchors.margins: 8
anchors.verticalCenter: parent.verticalCenter
//Layout.margins: 8
ImageButton {
id: backToRoomsButton
Layout.column: 0
Layout.row: 0
Layout.rowSpan: 2
Layout.alignment: Qt.AlignVCenter
visible: TimelineManager.isNarrowView
image: ":/icons/icons/ui/angle-pointing-to-left.png"
ToolTip.visible: hovered
ToolTip.text: qsTr("Back to room list")
onClicked: TimelineManager.backToRooms()
}
Avatar {
Layout.column: 1
Layout.row: 0
Layout.rowSpan: 2
Layout.alignment: Qt.AlignVCenter
width: avatarSize
height: avatarSize
2020-09-03 19:51:50 +02:00
url: chat.model ? chat.model.roomAvatarUrl.replace("mxc://", "image://MxcImage/") : ""
displayName: chat.model ? chat.model.roomName : qsTr("No room selected")
MouseArea {
anchors.fill: parent
onClicked: TimelineManager.openRoomSettings();
}
}
Label {
Layout.fillWidth: true
Layout.column: 2
Layout.row: 0
2020-10-02 16:58:13 +02:00
color: colors.text
font.pointSize: fontMetrics.font.pointSize * 1.1
2020-09-03 19:51:50 +02:00
text: chat.model ? chat.model.roomName : qsTr("No room selected")
MouseArea {
anchors.fill: parent
onClicked: TimelineManager.openRoomSettings();
}
}
MatrixText {
Layout.fillWidth: true
Layout.column: 2
Layout.row: 1
Layout.maximumHeight: fontMetrics.lineSpacing * 2 // show 2 lines
clip: true
2020-09-03 19:51:50 +02:00
text: chat.model ? chat.model.roomTopic : ""
}
ImageButton {
id: roomOptionsButton
Layout.column: 3
Layout.row: 0
Layout.rowSpan: 2
Layout.alignment: Qt.AlignVCenter
image: ":/icons/icons/ui/vertical-ellipsis.png"
ToolTip.visible: hovered
ToolTip.text: qsTr("Room options")
onClicked: roomOptionsMenu.popup(roomOptionsButton)
Menu {
id: roomOptionsMenu
MenuItem {
text: qsTr("Invite users")
onTriggered: TimelineManager.openInviteUsersDialog();
}
MenuItem {
text: qsTr("Members")
onTriggered: TimelineManager.openMemberListDialog();
}
MenuItem {
text: qsTr("Leave room")
onTriggered: TimelineManager.openLeaveRoomDialog();
}
MenuItem {
text: qsTr("Settings")
onTriggered: TimelineManager.openRoomSettings();
}
}
}
}
}
ListView {
id: chat
2020-06-24 16:24:22 +02:00
visible: TimelineManager.timeline != null
2020-01-17 01:25:14 +01:00
cacheBuffer: 400
Layout.fillWidth: true
Layout.fillHeight: true
2020-06-24 16:24:22 +02:00
model: TimelineManager.timeline
2019-09-18 20:34:30 +02:00
boundsBehavior: Flickable.StopAtBounds
2020-04-30 22:02:41 +02:00
ScrollHelper {
flickable: parent
anchors.fill: parent
}
2019-09-18 20:34:30 +02:00
pixelAligned: true
2020-01-30 23:57:39 +01:00
Shortcut {
sequence: StandardKey.MoveToPreviousPage
2020-01-31 00:02:15 +01:00
onActivated: { chat.contentY = chat.contentY - chat.height / 2; chat.returnToBounds(); }
2020-01-30 23:57:39 +01:00
}
Shortcut {
sequence: StandardKey.MoveToNextPage
2020-01-31 00:02:15 +01:00
onActivated: { chat.contentY = chat.contentY + chat.height / 2; chat.returnToBounds(); }
2020-01-30 23:57:39 +01: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-30 23:57:39 +01:00
ScrollBar.vertical: ScrollBar {
id: scrollbar
2019-09-18 20:34:30 +02:00
}
spacing: 4
2020-01-03 23:21:33 +01:00
verticalLayoutDirection: ListView.BottomToTop
onCountChanged: if (atYEnd) model.currentIndex = 0 // Mark last event as read, since we are at the bottom
property int delegateMaxWidth: (Settings.timelineMaxWidth > 100 && (parent.width - Settings.timelineMaxWidth) > scrollbar.width*2) ? Settings.timelineMaxWidth : (parent.width - scrollbar.width*2)
delegate: Item {
2020-01-03 23:21:33 +01:00
// 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
2020-07-08 02:02:48 +02:00
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
width: chat.delegateMaxWidth
2020-01-03 23:21:33 +01:00
height: section ? section.height + timelinerow.height : timelinerow.height
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-07-25 22:57:54 +02:00
Connections {
target: chat
function onMovementEnded() {
if (y + height + 2 * chat.spacing > chat.contentY + chat.height && y < chat.contentY + chat.height)
chat.model.currentIndex = index;
}
}
}
2020-06-28 17:31:34 +02:00
Component{
id: userProfileComponent
UserProfile{}
}
section {
property: "section"
2020-01-03 23:21:33 +01:00
}
Component {
id: sectionHeader
Column {
property var modelData
property string section
property string nextSection
topPadding: 4
bottomPadding: 4
spacing: 8
2020-01-03 23:21:33 +01:00
visible: !!modelData
width: parent.width
height: (section.includes(" ") ? dateBubble.height + 8 + userName.height : userName.height) + 8
Label {
id: dateBubble
2020-01-03 23:21:33 +01:00
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
visible: section.includes(" ")
2020-01-03 23:21:33 +01:00
text: chat.model.formatDateSeparator(modelData.timestamp)
2020-05-05 23:43:43 +02:00
color: colors.text
2020-04-29 11:14:43 +02:00
height: fontMetrics.height * 1.4
width: contentWidth * 1.2
2020-04-28 09:38:13 +02:00
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
background: Rectangle {
radius: parent.height / 2
2020-05-05 23:43:43 +02:00
color: colors.base
}
}
2020-05-27 10:49:26 +02:00
Row {
height: userName.height
spacing: 8
Avatar {
width: avatarSize
height: avatarSize
2020-01-03 23:21:33 +01:00
url: chat.model.avatarUrl(modelData.userId).replace("mxc://", "image://MxcImage/")
displayName: modelData.userName
userid: modelData.userId
MouseArea {
anchors.fill: parent
2020-07-04 04:24:28 +02:00
onClicked: chat.model.openUserProfile(modelData.userId)
cursorShape: Qt.PointingHandCursor
propagateComposedEvents: true
}
}
Label {
id: userName
text: TimelineManager.escapeEmoji(modelData.userName)
2020-06-24 16:24:22 +02:00
color: TimelineManager.userColor(modelData.userId, colors.window)
textFormat: Text.RichText
MouseArea {
anchors.fill: parent
2020-05-27 10:49:26 +02:00
Layout.alignment: Qt.AlignHCenter
2020-07-04 04:24:28 +02:00
onClicked: chat.model.openUserProfile(modelData.userId)
cursorShape: Qt.PointingHandCursor
propagateComposedEvents: true
}
}
}
}
}
2020-01-17 01:25:14 +01:00
2020-07-25 22:57:54 +02:00
footer: BusyIndicator {
anchors.horizontalCenter: parent.horizontalCenter
running: chat.model && chat.model.paginationInProgress
height: 50
width: 50
z: 3
}
2020-01-17 01:25:14 +01:00
}
Item {
2020-01-17 01:25:14 +01:00
id: chatFooter
implicitHeight: Math.max(fontMetrics.height * 1.2, footerContent.height)
Layout.fillWidth: true
2020-01-17 01:25:14 +01:00
z: 3
2020-01-28 19:08:16 +01:00
Column {
id: footerContent
2020-01-17 01:25:14 +01:00
anchors.left: parent.left
anchors.right: parent.right
2020-09-20 08:58:25 +02:00
anchors.bottom: parent.bottom
Rectangle {
id: typingRect
anchors.left: parent.left
anchors.right: parent.right
color: (chat.model && chat.model.typingUsers.length > 0) ? colors.window : "transparent"
2020-09-20 08:58:25 +02:00
height: typingDisplay.height
Label {
id: typingDisplay
anchors.left: parent.left
2020-09-18 15:18:31 +02:00
anchors.leftMargin: 10
anchors.right: parent.right
2020-09-18 15:18:31 +02:00
anchors.rightMargin: 10
color: colors.text
text: chat.model ? chat.model.formatTypingUsers(chat.model.typingUsers, colors.window) : ""
textFormat: Text.RichText
}
}
2020-01-28 05:28:11 +01:00
2020-01-28 19:08:16 +01:00
Rectangle {
2020-01-28 05:28:11 +01:00
anchors.left: parent.left
anchors.right: parent.right
2020-01-28 19:08:16 +01:00
id: replyPopup
2020-01-28 05:28:11 +01:00
2020-04-13 16:22:30 +02:00
visible: chat.model && chat.model.reply
2020-01-28 19:08:16 +01:00
// Height of child, plus margins, plus border
height: replyPreview.height + 10
2020-02-03 19:21:03 +01:00
color: colors.base
2020-01-28 05:28:11 +01:00
2020-01-28 19:08:16 +01:00
Reply {
id: replyPreview
anchors.left: parent.left
anchors.leftMargin: 10
anchors.right: closeReplyButton.left
anchors.rightMargin: 20
2020-01-28 19:08:16 +01:00
anchors.bottom: parent.bottom
2020-07-09 23:15:22 +02:00
modelData: chat.model ? chat.model.getDump(chat.model.reply, chat.model.id) : {}
2020-06-24 16:24:22 +02:00
userColor: TimelineManager.userColor(modelData.userId, colors.window)
2020-01-28 05:28:11 +01:00
}
2020-01-28 19:08:16 +01:00
2020-01-28 05:28:11 +01:00
ImageButton {
id: closeReplyButton
2020-01-28 19:08:16 +01:00
anchors.right: parent.right
anchors.rightMargin: 15
2020-01-28 19:08:16 +01:00
anchors.top: replyPreview.top
hoverEnabled: true
width: 16
height: 16
2020-01-28 19:08:16 +01:00
2020-01-28 05:28:11 +01:00
image: ":/icons/icons/ui/remove-symbol.png"
ToolTip.visible: closeReplyButton.hovered
ToolTip.text: qsTr("Close")
2020-01-28 05:28:11 +01:00
2020-04-13 16:22:30 +02:00
onClicked: chat.model.reply = undefined
2020-01-28 05:28:11 +01:00
}
}
}
2019-08-30 23:20:53 +02:00
}
2020-09-22 18:07:36 +02:00
ActiveCallBar {
2020-09-22 18:07:36 +02:00
Layout.fillWidth: true
z: 3
}
2019-08-31 22:43:31 +02:00
}
}
2019-08-30 19:29:25 +02:00
}