nheko/resources/qml/TimelineView.qml

151 lines
3.5 KiB
QML
Raw Normal View History

import QtQuick 2.6
import QtQuick.Controls 2.1
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 com.github.nheko 1.0
import "./delegates"
2019-08-30 19:29:25 +02:00
Rectangle {
anchors.fill: parent
property var colors: currentActivePalette
property var systemInactive: SystemPalette { colorGroup: SystemPalette.Disabled }
property var inactiveColors: currentInactivePalette ? currentInactivePalette : systemInactive
property int avatarSize: 40
2019-09-19 21:53:24 +02:00
2019-09-07 01:33:46 +02:00
color: colors.window
2019-08-30 19:29:25 +02:00
Text {
2019-08-31 22:43:31 +02:00
visible: !timelineManager.timeline
2019-08-30 19:29:25 +02:00
anchors.centerIn: parent
text: qsTr("No room open")
font.pointSize: 24
2019-09-07 01:33:46 +02:00
color: colors.windowText
2019-08-30 19:29:25 +02:00
}
2019-08-30 23:20:53 +02:00
ListView {
id: chat
2019-10-25 13:20:05 +02:00
cacheBuffer: 2000
2019-08-31 22:43:31 +02:00
visible: timelineManager.timeline != null
2019-08-30 23:20:53 +02:00
anchors.fill: parent
anchors.leftMargin: 4
anchors.rightMargin: scrollbar.width
2019-09-18 20:34:30 +02:00
model: timelineManager.timeline
onModelChanged: {
if (model) {
currentIndex = model.currentIndex
if (model.currentIndex == count - 1) {
positionViewAtEnd()
} else {
positionViewAtIndex(model.currentIndex, ListView.End)
}
2019-10-09 19:34:57 +02:00
if (contentHeight < height) {
model.fetchHistory();
}
2019-09-18 20:34:30 +02:00
}
}
ScrollBar.vertical: ScrollBar {
id: scrollbar
anchors.top: parent.top
anchors.left: parent.right
anchors.bottom: parent.bottom
2019-09-18 20:34:30 +02:00
onPressedChanged: if (!pressed) chat.updatePosition()
}
2019-08-31 22:43:31 +02:00
2019-09-18 20:34:30 +02:00
property bool atBottom: false
onCountChanged: {
if (atBottom && Window.active) {
var newIndex = count - 1 // last index
positionViewAtEnd()
currentIndex = newIndex
model.currentIndex = newIndex
}
2019-10-09 19:34:57 +02:00
if (contentHeight < height && model) {
2019-10-09 19:34:57 +02:00
model.fetchHistory();
}
2019-09-18 20:34:30 +02:00
}
2019-10-09 19:34:57 +02:00
onAtYBeginningChanged: if (atYBeginning) model.fetchHistory()
2019-09-18 20:34:30 +02:00
function updatePosition() {
for (var y = chat.contentY + chat.height; y > chat.height; y -= 5) {
var i = chat.itemAt(100, y);
if (!i) continue;
if (!i.isFullyVisible()) continue;
chat.model.currentIndex = i.getIndex();
chat.currentIndex = i.getIndex()
atBottom = i.getIndex() == count - 1;
console.log("bottom:" + atBottom)
break;
}
}
onMovementEnded: updatePosition()
spacing: 4
2019-10-27 22:01:40 +01:00
delegate: TimelineRow {
function isFullyVisible() {
return height > 1 && (y - chat.contentY - 1) + height < chat.height
}
function getIndex() {
return index;
}
}
section {
property: "section"
delegate: Column {
topPadding: 4
bottomPadding: 4
spacing: 8
width: parent.width
height: (section.includes(" ") ? dateBubble.height + 8 + userName.height : userName.height) + 8
2019-10-08 21:26:52 +02:00
Label {
id: dateBubble
anchors.horizontalCenter: parent.horizontalCenter
visible: section.includes(" ")
text: chat.model.formatDateSeparator(new Date(Number(section.split(" ")[1])))
2019-09-07 01:33:46 +02:00
color: colors.windowText
height: contentHeight * 1.2
width: contentWidth * 1.2
horizontalAlignment: Text.AlignHCenter
background: Rectangle {
radius: parent.height / 2
2019-09-07 01:33:46 +02:00
color: colors.dark
}
}
Row {
height: userName.height
spacing: 4
2019-09-07 22:22:07 +02:00
Avatar {
2019-09-19 21:53:24 +02:00
width: avatarSize
height: avatarSize
2019-09-07 22:22:07 +02:00
url: chat.model.avatarUrl(section.split(" ")[0]).replace("mxc://", "image://MxcImage/")
displayName: chat.model.displayName(section.split(" ")[0])
}
Text {
id: userName
2019-09-07 02:01:44 +02:00
text: chat.model.escapeEmoji(chat.model.displayName(section.split(" ")[0]))
2019-09-07 01:33:46 +02:00
color: chat.model.userColor(section.split(" ")[0], colors.window)
2019-09-07 02:01:44 +02:00
textFormat: Text.RichText
}
}
}
2019-08-30 23:20:53 +02:00
}
2019-08-31 22:43:31 +02:00
}
2019-08-30 19:29:25 +02:00
}