2020-05-28 22:22:51 +00:00
|
|
|
import QtQuick 2.14
|
2020-06-04 23:42:11 +00:00
|
|
|
|
2020-05-27 22:59:17 +00:00
|
|
|
import QtQuick.Controls 2.3
|
2020-05-28 22:22:51 +00:00
|
|
|
import QtQuick.Controls 2.14 as QQC2
|
2020-05-27 22:59:17 +00:00
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Qt.labs.platform 1.1
|
2020-06-04 23:42:11 +00:00
|
|
|
import QtQml.Models 2.3
|
2020-05-27 22:59:17 +00:00
|
|
|
import "../../../../shared"
|
|
|
|
import "../../../../imports"
|
2020-05-28 17:34:54 +00:00
|
|
|
import "./samples/"
|
2020-05-27 22:59:17 +00:00
|
|
|
|
2020-05-28 22:22:51 +00:00
|
|
|
ScrollView {
|
2020-06-04 23:42:11 +00:00
|
|
|
id: scrollView
|
|
|
|
|
2020-05-28 17:34:54 +00:00
|
|
|
property var messageList: MessagesData {}
|
2020-05-28 22:22:51 +00:00
|
|
|
|
2020-06-04 23:42:11 +00:00
|
|
|
contentItem: chatLogView
|
2020-05-28 22:22:51 +00:00
|
|
|
anchors.fill: parent
|
2020-05-27 22:59:17 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
2020-06-04 23:42:11 +00:00
|
|
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
2020-05-28 22:22:51 +00:00
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
|
2020-06-04 23:42:11 +00:00
|
|
|
ListView {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 4
|
|
|
|
id: chatLogView
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
onCountChanged: {
|
2020-06-05 22:20:45 +00:00
|
|
|
if (!this.atYEnd) {
|
|
|
|
// User has scrolled up, we don't want to scroll back
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt.callLater( chatLogView.positionViewAtEnd )
|
2020-06-04 19:07:07 +00:00
|
|
|
}
|
2020-06-04 23:42:11 +00:00
|
|
|
model: messageListDelegate
|
2020-06-08 17:29:28 +00:00
|
|
|
section.property: "fromAuthor"
|
2020-06-05 22:20:45 +00:00
|
|
|
section.criteria: ViewSection.FullString
|
2020-06-04 23:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DelegateModel {
|
|
|
|
id: messageListDelegate
|
2020-06-05 22:20:45 +00:00
|
|
|
property var lessThan: [
|
|
|
|
function(left, right) { return left.clock < right.clock }
|
|
|
|
]
|
2020-05-28 22:22:51 +00:00
|
|
|
|
2020-06-05 22:20:45 +00:00
|
|
|
property int sortOrder: 0
|
|
|
|
onSortOrderChanged: items.setGroups(0, items.count, "unsorted")
|
2020-06-04 23:42:11 +00:00
|
|
|
|
|
|
|
function insertPosition(lessThan, item) {
|
|
|
|
var lower = 0
|
|
|
|
var upper = items.count
|
|
|
|
while (lower < upper) {
|
|
|
|
var middle = Math.floor(lower + (upper - lower) / 2)
|
|
|
|
var result = lessThan(item.model, items.get(middle).model);
|
|
|
|
if (result) {
|
|
|
|
upper = middle
|
|
|
|
} else {
|
|
|
|
lower = middle + 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return lower
|
|
|
|
}
|
|
|
|
|
|
|
|
function sort(lessThan) {
|
|
|
|
while (unsortedItems.count > 0) {
|
|
|
|
var item = unsortedItems.get(0)
|
|
|
|
var index = insertPosition(lessThan, item)
|
|
|
|
item.groups = "items"
|
|
|
|
items.move(item.itemsIndex, index)
|
2020-05-28 22:22:51 +00:00
|
|
|
}
|
2020-06-04 23:42:11 +00:00
|
|
|
}
|
2020-05-27 22:59:17 +00:00
|
|
|
|
2020-06-04 23:42:11 +00:00
|
|
|
items.includeByDefault: false
|
|
|
|
groups: DelegateModelGroup {
|
|
|
|
id: unsortedItems
|
|
|
|
name: "unsorted"
|
|
|
|
includeByDefault: true
|
|
|
|
onChanged: {
|
2020-06-05 22:20:45 +00:00
|
|
|
if (messageListDelegate.sortOrder == messageListDelegate.lessThan.length)
|
|
|
|
setGroups(0, count, "items")
|
|
|
|
else {
|
|
|
|
messageListDelegate.sort(messageListDelegate.lessThan[messageListDelegate.sortOrder])
|
|
|
|
}
|
2020-05-28 22:22:51 +00:00
|
|
|
}
|
2020-05-27 22:59:17 +00:00
|
|
|
}
|
2020-06-05 22:20:45 +00:00
|
|
|
model: messageList
|
2020-06-08 17:29:28 +00:00
|
|
|
|
|
|
|
Message {
|
2020-06-05 22:20:45 +00:00
|
|
|
id: msgDelegate
|
2020-06-08 17:29:28 +00:00
|
|
|
chatId: model.chatId
|
2020-06-05 22:20:45 +00:00
|
|
|
userName: model.userName
|
|
|
|
message: model.message
|
|
|
|
identicon: model.identicon
|
|
|
|
isCurrentUser: model.isCurrentUser
|
|
|
|
timestamp: model.timestamp
|
|
|
|
sticker: model.sticker
|
|
|
|
contentType: model.contentType
|
|
|
|
authorCurrentMsg: msgDelegate.ListView.section
|
|
|
|
authorPrevMsg: msgDelegate.ListView.previousSection
|
|
|
|
}
|
2020-05-27 22:59:17 +00:00
|
|
|
}
|
2020-06-04 23:42:11 +00:00
|
|
|
|
2020-05-27 22:59:17 +00:00
|
|
|
}
|
2020-05-28 15:55:52 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
}
|
|
|
|
##^##*/
|