nheko/resources/qml/TimelineView.qml

175 lines
4.1 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
import Qt.labs.qmlmodels 1.0
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
2019-09-07 01:33:46 +02:00
SystemPalette { id: colors; colorGroup: SystemPalette.Active }
SystemPalette { id: inactiveColors; colorGroup: SystemPalette.Disabled }
2019-09-19 21:53:24 +02:00
property int avatarSize: 32
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-09-09 21:42:33 +02:00
cacheBuffer: parent.height
2019-08-31 22:43:31 +02:00
visible: timelineManager.timeline != null
2019-08-30 23:20:53 +02:00
anchors.fill: parent
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)
}
}
}
ScrollBar.vertical: ScrollBar {
id: scrollbar
anchors.top: parent.top
anchors.right: 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
}
}
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
delegate: DelegateChooser {
role: "type"
DelegateChoice {
roleValue: MtxEvent.TextMessage
TimelineRow { view: chat; TextMessage { id: kid } }
2019-09-18 20:34:30 +02:00
}
DelegateChoice {
roleValue: MtxEvent.NoticeMessage
TimelineRow { view: chat; NoticeMessage { id: kid } }
2019-09-18 20:34:30 +02:00
}
DelegateChoice {
roleValue: MtxEvent.EmoteMessage
TimelineRow { view: chat; TextMessage { id: kid } }
}
DelegateChoice {
roleValue: MtxEvent.ImageMessage
TimelineRow { view: chat; ImageMessage { id: kid } }
2019-09-18 22:58:25 +02:00
}
DelegateChoice {
roleValue: MtxEvent.Sticker
TimelineRow { view: chat; ImageMessage { id: kid } }
2019-09-19 23:02:56 +02:00
}
DelegateChoice {
roleValue: MtxEvent.FileMessage
TimelineRow { view: chat; FileMessage { id: kid } }
}
DelegateChoice {
roleValue: MtxEvent.VideoMessage
TimelineRow { view: chat; PlayableMediaMessage { id: kid } }
}
DelegateChoice {
roleValue: MtxEvent.AudioMessage
TimelineRow { view: chat; PlayableMediaMessage { id: kid } }
}
DelegateChoice {
roleValue: MtxEvent.Redacted
TimelineRow { view: chat; Redacted { id: kid } }
}
2019-10-08 21:26:52 +02:00
DelegateChoice {
//roleValue: MtxEvent.Redacted
TimelineRow { view: chat; Placeholder { id: kid } }
}
}
section {
property: "section"
delegate: Column {
topPadding: 4
bottomPadding: 4
spacing: 8
width: parent.width
2019-10-08 21:26:52 +02:00
Component.onCompleted: chat.forceLayout()
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
}