2019-12-08 02:54:28 +03:00
|
|
|
import QtQuick 2.9
|
2019-10-06 12:08:13 +03:00
|
|
|
import QtQuick.Controls 2.1
|
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
|
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"
|
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
Item {
|
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
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: colors.window
|
|
|
|
|
|
|
|
Text {
|
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
|
|
|
|
color: colors.windowText
|
|
|
|
}
|
2019-08-31 00:20:53 +03:00
|
|
|
|
2019-11-10 02:30:02 +03:00
|
|
|
BusyIndicator {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
running: timelineManager.isInitialSync
|
|
|
|
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
|
|
|
|
|
|
|
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-01-22 00:22:25 +03:00
|
|
|
pixelAligned: true
|
2019-12-08 02:54:28 +03:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
acceptedButtons: Qt.NoButton
|
|
|
|
propagateComposedEvents: true
|
|
|
|
z: -1
|
|
|
|
onWheel: {
|
|
|
|
if (wheel.angleDelta != 0) {
|
|
|
|
chat.contentY = chat.contentY - wheel.angleDelta.y
|
|
|
|
wheel.accepted = true
|
|
|
|
chat.forceLayout()
|
2020-01-06 20:08:01 +03:00
|
|
|
chat.returnToBounds()
|
2019-11-08 16:39:45 +03:00
|
|
|
}
|
2019-10-09 20:34:57 +03:00
|
|
|
}
|
2019-09-18 21:34:30 +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)
|
2019-11-08 16:39:45 +03:00
|
|
|
color: colors.windowText
|
|
|
|
|
|
|
|
height: contentHeight * 1.2
|
|
|
|
width: contentWidth * 1.2
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
background: Rectangle {
|
|
|
|
radius: parent.height / 2
|
|
|
|
color: colors.dark
|
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
|
|
|
|
spacing: 4
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2019-09-01 23:34:36 +03:00
|
|
|
|
2019-11-08 16:39:45 +03:00
|
|
|
Text {
|
|
|
|
id: userName
|
2020-01-04 01:21:33 +03:00
|
|
|
text: chat.model.escapeEmoji(modelData.userName)
|
|
|
|
color: chat.model.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
|
|
|
|
}
|
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
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: chatFooter
|
|
|
|
|
|
|
|
height: Math.max(16, typingDisplay.height)
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
z: 3
|
|
|
|
|
|
|
|
color: colors.window
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
anchors.rightMargin: 10
|
|
|
|
|
|
|
|
id: typingDisplay
|
|
|
|
text: chat.model ? chat.model.formatTypingUsers(chat.model.typingUsers, chatFooter.color) : ""
|
2020-01-21 22:41:09 +03:00
|
|
|
textFormat: Text.RichText
|
2020-01-17 03:25:14 +03:00
|
|
|
color: colors.windowText
|
|
|
|
}
|
2019-08-31 00:20:53 +03:00
|
|
|
}
|
2019-08-31 23:43:31 +03:00
|
|
|
}
|
2019-08-30 20:29:25 +03:00
|
|
|
}
|