Merge pull request #1210 from Armored-Dragon/fix/ac_scrolling
Some checks are pending
Master API-docs CI Build and Deploy / Build and deploy API-docs (push) Waiting to run
Master Doxygen CI Build and Deploy / Build and deploy Doxygen documentation (push) Waiting to run

Fix ArmoredChat scrolling
This commit is contained in:
Dale Glass 2024-11-02 20:28:07 +01:00 committed by GitHub
commit 620be77917
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 66 additions and 47 deletions

View file

@ -164,7 +164,8 @@
case "action": case "action":
switch (event.action) { switch (event.action) {
case "erase_history": case "erase_history":
Settings.setValue("ArmoredChat-Messages", []); Settings.setValue("ArmoredChat-Messages", null);
messageHistory = [];
_emitEvent({ _emitEvent({
type: "clear_messages", type: "clear_messages",
}); });

View file

@ -1,5 +1,5 @@
import QtQuick 2.7 import QtQuick 2.7
import QtQuick.Controls 2.0 import QtQuick.Controls 2.15
import QtQuick.Layouts 1.3 import QtQuick.Layouts 1.3
import controlsUit 1.0 as HifiControlsUit import controlsUit 1.0 as HifiControlsUit
@ -30,7 +30,7 @@ Rectangle {
running: false running: false
repeat: false repeat: false
onTriggered: { onTriggered: {
scrollToBottom(); scrollToBottom(true);
} }
} }
@ -145,49 +145,60 @@ Rectangle {
anchors.top: navigation_bar.bottom anchors.top: navigation_bar.bottom
visible: ["local", "domain"].includes(pageVal) ? true : false visible: ["local", "domain"].includes(pageVal) ? true : false
// Chat Message History // Chat Message History
ListView { Flickable {
width: parent.width width: parent.width
height: parent.height - 40 height: parent.height - 40
contentWidth: parent.width
contentHeight: listview.height
clip: true clip: true
interactive: true id: messageViewFlickable
spacing: 5
id: listview
delegate: Loader { ColumnLayout {
property int delegateIndex: index id: listview
property string delegateText: model.text Layout.fillWidth: true
property string delegateUsername: model.username
property string delegateDate: model.date
width: listview.width
sourceComponent: { Repeater {
if (model.type === "chat") { model: getChannel(pageVal)
return template_chat_message; delegate: Loader {
} else if (model.type === "notification") { property int delegateIndex: model.index
return template_notification; property string delegateText: model.text
property string delegateUsername: model.username
property string delegateDate: model.date
sourceComponent: {
if (model.type === "chat") {
return template_chat_message;
} else if (model.type === "notification") {
return template_notification;
}
}
} }
} }
} }
ScrollBar.vertical: ScrollBar { ScrollBar.vertical: ScrollBar {
id: chat_scrollbar size: 100
height: 100 minimumSize: 0.1
size: 0.05
} }
model: getChannel(pageVal) rebound: Transition {
NumberAnimation {
properties: "x,y"
duration: 1
}
}
} }
ListModel { ListModel {
id: local id: local
} }
ListModel { ListModel {
id: domain id: domain
} }
// Chat Entry // Chat Entry
Rectangle { Rectangle {
@ -346,7 +357,7 @@ Rectangle {
Component { Component {
id: template_chat_message id: template_chat_message
Rectangle{ Rectangle {
property int index: delegateIndex property int index: delegateIndex
property string texttest: delegateText property string texttest: delegateText
property string username: delegateUsername property string username: delegateUsername
@ -354,6 +365,8 @@ Rectangle {
height: Math.max(65, children[1].height + 30) height: Math.max(65, children[1].height + 30)
color: index % 2 === 0 ? "transparent" : Qt.rgba(0.15,0.15,0.15,1) color: index % 2 === 0 ? "transparent" : Qt.rgba(0.15,0.15,0.15,1)
width: listview.parent.parent.width
Layout.fillWidth: true
Item { Item {
width: parent.width - 10 width: parent.width - 10
@ -372,7 +385,7 @@ Rectangle {
} }
} }
TextEdit{ TextEdit {
anchors.top: parent.children[0].bottom anchors.top: parent.children[0].bottom
x: 5 x: 5
text: texttest text: texttest
@ -453,16 +466,25 @@ Rectangle {
} }
property var channels: { property var channels: {
"local": local, "local": local,
"domain": domain, "domain": domain,
} }
function scrollToBottom() { function scrollToBottom(bypassDistanceCheck = false, extraMoveDistance = 0) {
if (listview.count == 0) return; const totalHeight = listview.height; // Total height of the content
listview.positionViewAtEnd(); const currentPosition = messageViewFlickable.contentY; // Current position of the view
const windowHeight = listview.parent.parent.height; // Total height of the window
const bottomPosition = currentPosition + windowHeight;
// Check if the view is within 300 units from the bottom
const closeEnoughToBottom = totalHeight - bottomPosition <= 300;
if (!bypassDistanceCheck && !closeEnoughToBottom) return;
if (totalHeight < windowHeight) return; // No reason to scroll, we don't have an overflow.
if (bottomPosition == totalHeight) return; // At the bottom, do nothing.
messageViewFlickable.contentY = listview.height - listview.parent.parent.height;
messageViewFlickable.returnToBounds();
} }
@ -471,13 +493,13 @@ Rectangle {
// Format content // Format content
message = formatContent(message); message = formatContent(message);
message = embedImages(message); message = embedImages(message);
if (type === "notification"){ if (type === "notification"){
channel.append({ text: message, date: date, type: "notification" }); channel.append({ text: message, date: date, type: "notification" });
last_message_user = ""; last_message_user = "";
scrollToBottom(); scrollToBottom(null, 30);
last_message_time = new Date(); last_message_time = new Date();
return; return;
} }
@ -489,22 +511,18 @@ Rectangle {
var last_item_index = channel.count - 1; var last_item_index = channel.count - 1;
var last_item = channel.get(last_item_index); var last_item = channel.get(last_item_index);
// FIXME: When adding a new message this would check to see if we could append the incoming message if (last_message_user === username && elapsed_minutes < 1 && last_item){
// to the bottom of the last message. This current implimentation causes issues with scrollToBottom() message = "<br>" + message
// Specifically, scrolling to the bottom does not like image embeds. last_item.text = last_item.text += "\n" + message;
// This needs to be reworked entirely before it can be reimplimented load_scroll_timer.running = true;
// if (last_message_user === username && elapsed_minutes < 1 && last_item){ last_message_time = new Date();
// message = "<br>" + message return;
// last_item.text = last_item.text += "\n" + message; }
// scrollToBottom()
// last_message_time = new Date();
// return;
// }
last_message_user = username; last_message_user = username;
last_message_time = new Date(); last_message_time = new Date();
channel.append({ text: message, username: username, date: date, type: type }); channel.append({ text: message, username: username, date: date, type: type });
scrollToBottom(); load_scroll_timer.running = true;
} }
function getChannel(id) { function getChannel(id) {