Fix chat scrolling (#288)

* fix: Change chat scrolling behavior
* feat: Add compact mode for chat blocks
This commit is contained in:
Petr Mironychev
2025-12-04 20:00:53 +01:00
committed by GitHub
parent fc33bb60d0
commit 5c8a8f305d
4 changed files with 382 additions and 170 deletions

View File

@ -148,7 +148,7 @@ ChatRootView {
ListView { ListView {
id: chatListView id: chatListView
signal hideServiceComponents(int itemIndex) property bool userScrolledUp: false
Layout.fillWidth: true Layout.fillWidth: true
Layout.fillHeight: true Layout.fillHeight: true
@ -159,6 +159,18 @@ ChatRootView {
boundsBehavior: Flickable.StopAtBounds boundsBehavior: Flickable.StopAtBounds
cacheBuffer: 2000 cacheBuffer: 2000
onMovingChanged: {
if (moving) {
userScrolledUp = !atYEnd
}
}
onAtYEndChanged: {
if (atYEnd) {
userScrolledUp = false
}
}
delegate: Loader { delegate: Loader {
id: componentLoader id: componentLoader
@ -179,11 +191,6 @@ ChatRootView {
} }
} }
onLoaded: {
if (componentLoader.sourceComponent == chatItemComponent) {
chatListView.hideServiceComponents(index)
}
}
} }
header: Item { header: Item {
@ -195,12 +202,53 @@ ChatRootView {
id: scroll id: scroll
} }
Rectangle {
id: scrollToBottomButton
anchors {
bottom: parent.bottom
horizontalCenter: parent.horizontalCenter
bottomMargin: 10
}
width: 36
height: 36
radius: 18
color: palette.button
border.color: palette.mid
border.width: 1
visible: chatListView.userScrolledUp
opacity: 0.9
z: 100
Text {
anchors.centerIn: parent
text: "▼"
font.pixelSize: 14
color: palette.buttonText
}
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
chatListView.userScrolledUp = false
root.scrollToBottom()
}
}
Behavior on visible {
enabled: false
}
}
onCountChanged: { onCountChanged: {
root.scrollToBottom() if (!userScrolledUp) {
root.scrollToBottom()
}
} }
onContentHeightChanged: { onContentHeightChanged: {
if (atYEnd) { if (!userScrolledUp && atYEnd) {
root.scrollToBottom() root.scrollToBottom()
} }
} }
@ -236,19 +284,8 @@ ChatRootView {
id: toolMessageComponent id: toolMessageComponent
ToolBlock { ToolBlock {
id: toolsItem
width: parent.width width: parent.width
toolContent: model.content toolContent: model.content
Connections {
target: chatListView
function onHideServiceComponents(itemIndex) {
if (index !== itemIndex) {
toolsItem.headerOpacity = 0.5
}
}
}
} }
} }
@ -281,8 +318,6 @@ ChatRootView {
id: thinkingMessageComponent id: thinkingMessageComponent
ThinkingBlock { ThinkingBlock {
id: thinking
width: parent.width width: parent.width
thinkingContent: { thinkingContent: {
let content = model.content let content = model.content
@ -293,15 +328,6 @@ ChatRootView {
return content return content
} }
isRedacted: model.isRedacted !== undefined ? model.isRedacted : false isRedacted: model.isRedacted !== undefined ? model.isRedacted : false
Connections {
target: chatListView
function onHideServiceComponents(itemIndex) {
if (index !== itemIndex) {
thinking.headerOpacity = 0.5
}
}
}
} }
} }
} }

View File

@ -28,11 +28,14 @@ Rectangle {
property string code: "" property string code: ""
property string language: "" property string language: ""
property bool expanded: false
enum DisplayMode { Collapsed, Compact, Expanded }
property int displayMode: CodeBlock.DisplayMode.Compact
property int compactHeight: 150
property alias codeFontFamily: codeText.font.family property alias codeFontFamily: codeText.font.family
property alias codeFontSize: codeText.font.pointSize property alias codeFontSize: codeText.font.pointSize
readonly property real collapsedHeight: copyButton.height + 10 readonly property real headerHeight: copyButton.height + 10
color: palette.alternateBase color: palette.alternateBase
border.color: root.color.hslLightness > 0.5 ? Qt.darker(root.color, 1.3) border.color: root.color.hslLightness > 0.5 ? Qt.darker(root.color, 1.3)
@ -46,6 +49,17 @@ Rectangle {
NumberAnimation { duration: 200; easing.type: Easing.InOutQuad } NumberAnimation { duration: 200; easing.type: Easing.InOutQuad }
} }
implicitHeight: {
if (displayMode === CodeBlock.DisplayMode.Collapsed) {
return headerHeight
} else if (displayMode === CodeBlock.DisplayMode.Compact) {
let fullHeight = headerHeight + codeText.implicitHeight + 20
return Math.min(fullHeight, headerHeight + compactHeight)
} else {
return headerHeight + codeText.implicitHeight + 20
}
}
ChatUtils { ChatUtils {
id: utils id: utils
} }
@ -59,9 +73,17 @@ Rectangle {
id: header id: header
width: parent.width width: parent.width
height: root.collapsedHeight height: root.headerHeight
cursorShape: Qt.PointingHandCursor cursorShape: Qt.PointingHandCursor
onClicked: root.expanded = !root.expanded onClicked: {
if (root.displayMode === CodeBlock.DisplayMode.Collapsed) {
root.displayMode = CodeBlock.DisplayMode.Compact
} else if (root.displayMode === CodeBlock.DisplayMode.Compact) {
root.displayMode = CodeBlock.DisplayMode.Collapsed
} else {
root.displayMode = CodeBlock.DisplayMode.Compact
}
}
Row { Row {
id: headerRow id: headerRow
@ -83,33 +105,81 @@ Rectangle {
Text { Text {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
text: root.expanded ? "" : "" text: root.displayMode === CodeBlock.DisplayMode.Collapsed ? "" : ""
font.pixelSize: 10 font.pixelSize: 10
color: palette.mid color: palette.mid
} }
} }
} }
TextEdit { Item {
id: codeText id: codeWrapper
anchors { anchors {
left: parent.left left: parent.left
right: parent.right right: parent.right
top: header.bottom top: header.bottom
bottom: parent.bottom
margins: 10 margins: 10
bottomMargin: expandButton.visible ? expandButton.height + 15 : 10
}
clip: true
visible: root.displayMode !== CodeBlock.DisplayMode.Collapsed
TextEdit {
id: codeText
width: parent.width
text: root.code
readOnly: true
selectByMouse: true
color: root.color.hslLightness > 0.5 ? "black" : "white"
wrapMode: Text.WordWrap
selectionColor: palette.highlight
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.RightButton
onClicked: contextMenu.open()
}
}
}
Rectangle {
id: expandButton
property bool needsExpand: codeText.implicitHeight > compactHeight - 20
anchors {
bottom: parent.bottom
left: parent.left
right: parent.right
bottomMargin: 5
leftMargin: 10
rightMargin: 10
}
height: 24
radius: 4
color: palette.button
visible: needsExpand && root.displayMode !== CodeBlock.DisplayMode.Collapsed
Text {
anchors.centerIn: parent
text: root.displayMode === CodeBlock.DisplayMode.Expanded ? qsTr("▲ Show less") : qsTr("▼ Show more")
font.pixelSize: 11
color: palette.buttonText
} }
text: root.code
readOnly: true
selectByMouse: true
color: parent.color.hslLightness > 0.5 ? "black" : "white"
wrapMode: Text.WordWrap
selectionColor: palette.highlight
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
acceptedButtons: Qt.RightButton cursorShape: Qt.PointingHandCursor
onClicked: contextMenu.open() onClicked: {
if (root.displayMode === CodeBlock.DisplayMode.Expanded) {
root.displayMode = CodeBlock.DisplayMode.Compact
} else {
root.displayMode = CodeBlock.DisplayMode.Expanded
}
}
} }
} }
@ -127,8 +197,26 @@ Rectangle {
Platform.MenuSeparator {} Platform.MenuSeparator {}
Platform.MenuItem { Platform.MenuItem {
text: root.expanded ? qsTr("Collapse") : qsTr("Expand") text: root.displayMode === CodeBlock.DisplayMode.Collapsed ? qsTr("Expand") : qsTr("Collapse")
onTriggered: root.expanded = !root.expanded onTriggered: {
if (root.displayMode === CodeBlock.DisplayMode.Collapsed) {
root.displayMode = CodeBlock.DisplayMode.Compact
} else {
root.displayMode = CodeBlock.DisplayMode.Collapsed
}
}
}
Platform.MenuItem {
text: root.displayMode === CodeBlock.DisplayMode.Expanded ? qsTr("Compact view") : qsTr("Full view")
enabled: root.displayMode !== CodeBlock.DisplayMode.Collapsed
onTriggered: {
if (root.displayMode === CodeBlock.DisplayMode.Expanded) {
root.displayMode = CodeBlock.DisplayMode.Compact
} else {
root.displayMode = CodeBlock.DisplayMode.Expanded
}
}
} }
} }
@ -153,21 +241,4 @@ Rectangle {
onTriggered: parent.text = qsTr("Copy") onTriggered: parent.text = qsTr("Copy")
} }
} }
states: [
State {
when: !root.expanded
PropertyChanges {
target: root
implicitHeight: root.collapsedHeight
}
},
State {
when: root.expanded
PropertyChanges {
target: root
implicitHeight: header.height + codeText.implicitHeight + 10
}
}
]
} }

View File

@ -24,9 +24,11 @@ Rectangle {
id: root id: root
property string thinkingContent: "" property string thinkingContent: ""
// property string signature: ""
property bool isRedacted: false property bool isRedacted: false
property bool expanded: false
enum DisplayMode { Collapsed, Compact, Expanded }
property int displayMode: ThinkingBlock.DisplayMode.Compact
property int compactHeight: 120
property alias headerOpacity: headerRow.opacity property alias headerOpacity: headerRow.opacity
@ -38,13 +40,32 @@ Rectangle {
NumberAnimation { duration: 200; easing.type: Easing.InOutQuad } NumberAnimation { duration: 200; easing.type: Easing.InOutQuad }
} }
implicitHeight: {
if (displayMode === ThinkingBlock.DisplayMode.Collapsed) {
return header.height
} else if (displayMode === ThinkingBlock.DisplayMode.Compact) {
let fullHeight = header.height + contentColumn.height + 20
return Math.min(fullHeight, header.height + compactHeight)
} else {
return header.height + contentColumn.height + 20
}
}
MouseArea { MouseArea {
id: header id: header
width: parent.width width: parent.width
height: headerRow.height + 10 height: headerRow.height + 10
cursorShape: Qt.PointingHandCursor cursorShape: Qt.PointingHandCursor
onClicked: root.expanded = !root.expanded onClicked: {
if (root.displayMode === ThinkingBlock.DisplayMode.Collapsed) {
root.displayMode = ThinkingBlock.DisplayMode.Compact
} else if (root.displayMode === ThinkingBlock.DisplayMode.Compact) {
root.displayMode = ThinkingBlock.DisplayMode.Collapsed
} else {
root.displayMode = ThinkingBlock.DisplayMode.Compact
}
}
Row { Row {
id: headerRow id: headerRow
@ -67,72 +88,96 @@ Rectangle {
Text { Text {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
text: root.expanded ? "" : "" text: root.displayMode === ThinkingBlock.DisplayMode.Collapsed ? "" : ""
font.pixelSize: 10 font.pixelSize: 10
color: palette.mid color: palette.mid
} }
} }
} }
Column { Item {
id: contentColumn id: contentWrapper
anchors { anchors {
left: parent.left left: parent.left
right: parent.right right: parent.right
top: header.bottom top: header.bottom
bottom: parent.bottom
margins: 10 margins: 10
bottomMargin: expandButton.visible ? expandButton.height + 15 : 10
} }
spacing: 8 clip: true
visible: root.displayMode !== ThinkingBlock.DisplayMode.Collapsed
Column {
id: contentColumn
width: parent.width
spacing: 8
Text {
visible: root.isRedacted
width: parent.width
text: qsTr("Thinking content was redacted by safety systems")
font.pixelSize: 11
font.italic: true
color: Qt.rgba(0.8, 0.4, 0.4, 1.0)
wrapMode: Text.WordWrap
}
TextEdit {
id: thinkingText
visible: !root.isRedacted
width: parent.width
text: root.thinkingContent
readOnly: true
selectByMouse: true
color: palette.text
wrapMode: Text.WordWrap
font.family: "monospace"
font.pixelSize: 11
selectionColor: palette.highlight
}
}
}
Rectangle {
id: expandButton
property bool needsExpand: contentColumn.height > compactHeight - 20
anchors {
bottom: parent.bottom
left: parent.left
right: parent.right
bottomMargin: 5
leftMargin: 10
rightMargin: 10
}
height: 24
radius: 4
color: palette.button
visible: needsExpand && root.displayMode !== ThinkingBlock.DisplayMode.Collapsed
Text { Text {
visible: root.isRedacted anchors.centerIn: parent
width: parent.width text: root.displayMode === ThinkingBlock.DisplayMode.Expanded ? qsTr("▲ Show less") : qsTr("▼ Show more")
text: qsTr("Thinking content was redacted by safety systems")
font.pixelSize: 11 font.pixelSize: 11
font.italic: true color: palette.buttonText
color: Qt.rgba(0.8, 0.4, 0.4, 1.0)
wrapMode: Text.WordWrap
} }
TextEdit { MouseArea {
id: thinkingText anchors.fill: parent
cursorShape: Qt.PointingHandCursor
visible: !root.isRedacted onClicked: {
width: parent.width if (root.displayMode === ThinkingBlock.DisplayMode.Expanded) {
text: root.thinkingContent root.displayMode = ThinkingBlock.DisplayMode.Compact
readOnly: true } else {
selectByMouse: true root.displayMode = ThinkingBlock.DisplayMode.Expanded
color: palette.text }
wrapMode: Text.WordWrap }
font.family: "monospace"
font.pixelSize: 11
selectionColor: palette.highlight
} }
// Rectangle {
// visible: root.signature.length > 0 && root.expanded
// width: parent.width
// height: signatureText.height + 10
// color: palette.alternateBase
// radius: 4
// Text {
// id: signatureText
// anchors {
// left: parent.left
// right: parent.right
// verticalCenter: parent.verticalCenter
// margins: 5
// }
// text: qsTr("Signature: %1").arg(root.signature.substring(0, Math.min(40, root.signature.length)) + "...")
// font.pixelSize: 9
// font.family: "monospace"
// color: palette.mid
// elide: Text.ElideRight
// }
// }
} }
MouseArea { MouseArea {
@ -146,8 +191,26 @@ Rectangle {
id: contextMenu id: contextMenu
Platform.MenuItem { Platform.MenuItem {
text: root.expanded ? qsTr("Collapse") : qsTr("Expand") text: root.displayMode === ThinkingBlock.DisplayMode.Collapsed ? qsTr("Expand") : qsTr("Collapse")
onTriggered: root.expanded = !root.expanded onTriggered: {
if (root.displayMode === ThinkingBlock.DisplayMode.Collapsed) {
root.displayMode = ThinkingBlock.DisplayMode.Compact
} else {
root.displayMode = ThinkingBlock.DisplayMode.Collapsed
}
}
}
Platform.MenuItem {
text: root.displayMode === ThinkingBlock.DisplayMode.Expanded ? qsTr("Compact view") : qsTr("Full view")
enabled: root.displayMode !== ThinkingBlock.DisplayMode.Collapsed
onTriggered: {
if (root.displayMode === ThinkingBlock.DisplayMode.Expanded) {
root.displayMode = ThinkingBlock.DisplayMode.Compact
} else {
root.displayMode = ThinkingBlock.DisplayMode.Expanded
}
}
} }
} }
@ -162,22 +225,4 @@ Rectangle {
: Qt.lighter(palette.alternateBase, 1.3)) : Qt.lighter(palette.alternateBase, 1.3))
radius: root.radius radius: root.radius
} }
states: [
State {
when: !root.expanded
PropertyChanges {
target: root
implicitHeight: header.height
}
},
State {
when: root.expanded
PropertyChanges {
target: root
implicitHeight: header.height + contentColumn.height + 20
}
}
]
} }

View File

@ -24,7 +24,10 @@ Rectangle {
id: root id: root
property string toolContent: "" property string toolContent: ""
property bool expanded: false
enum DisplayMode { Collapsed, Compact, Expanded }
property int displayMode: ToolBlock.DisplayMode.Compact
property int compactHeight: 120
property alias headerOpacity: headerRow.opacity property alias headerOpacity: headerRow.opacity
@ -40,13 +43,32 @@ Rectangle {
NumberAnimation { duration: 200; easing.type: Easing.InOutQuad } NumberAnimation { duration: 200; easing.type: Easing.InOutQuad }
} }
implicitHeight: {
if (displayMode === ToolBlock.DisplayMode.Collapsed) {
return header.height
} else if (displayMode === ToolBlock.DisplayMode.Compact) {
let fullHeight = header.height + contentColumn.height + 20
return Math.min(fullHeight, header.height + compactHeight)
} else {
return header.height + contentColumn.height + 20
}
}
MouseArea { MouseArea {
id: header id: header
width: parent.width width: parent.width
height: headerRow.height + 10 height: headerRow.height + 10
cursorShape: Qt.PointingHandCursor cursorShape: Qt.PointingHandCursor
onClicked: root.expanded = !root.expanded onClicked: {
if (root.displayMode === ToolBlock.DisplayMode.Collapsed) {
root.displayMode = ToolBlock.DisplayMode.Compact
} else if (root.displayMode === ToolBlock.DisplayMode.Compact) {
root.displayMode = ToolBlock.DisplayMode.Collapsed
} else {
root.displayMode = ToolBlock.DisplayMode.Compact
}
}
Row { Row {
id: headerRow id: headerRow
@ -68,36 +90,84 @@ Rectangle {
Text { Text {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
text: root.expanded ? "" : "" text: root.displayMode === ToolBlock.DisplayMode.Collapsed ? "" : ""
font.pixelSize: 10 font.pixelSize: 10
color: palette.mid color: palette.mid
} }
} }
} }
Column { Item {
id: contentColumn id: contentWrapper
anchors { anchors {
left: parent.left left: parent.left
right: parent.right right: parent.right
top: header.bottom top: header.bottom
bottom: parent.bottom
margins: 10 margins: 10
bottomMargin: expandButton.visible ? expandButton.height + 15 : 10
} }
spacing: 8 clip: true
visible: root.displayMode !== ToolBlock.DisplayMode.Collapsed
TextEdit { Column {
id: resultText id: contentColumn
width: parent.width width: parent.width
text: root.toolResult spacing: 8
readOnly: true
selectByMouse: true TextEdit {
color: palette.text id: resultText
wrapMode: Text.WordWrap
font.family: "monospace" width: parent.width
text: root.toolResult
readOnly: true
selectByMouse: true
color: palette.text
wrapMode: Text.WordWrap
font.family: "monospace"
font.pixelSize: 11
selectionColor: palette.highlight
}
}
}
Rectangle {
id: expandButton
property bool needsExpand: contentColumn.height > compactHeight - 20
anchors {
bottom: parent.bottom
left: parent.left
right: parent.right
bottomMargin: 5
leftMargin: 10
rightMargin: 10
}
height: 24
radius: 4
color: palette.button
visible: needsExpand && root.displayMode !== ToolBlock.DisplayMode.Collapsed
Text {
anchors.centerIn: parent
text: root.displayMode === ToolBlock.DisplayMode.Expanded ? qsTr("▲ Show less") : qsTr("▼ Show more")
font.pixelSize: 11 font.pixelSize: 11
selectionColor: palette.highlight color: palette.buttonText
}
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
if (root.displayMode === ToolBlock.DisplayMode.Expanded) {
root.displayMode = ToolBlock.DisplayMode.Compact
} else {
root.displayMode = ToolBlock.DisplayMode.Expanded
}
}
} }
} }
@ -126,8 +196,26 @@ Rectangle {
Platform.MenuSeparator {} Platform.MenuSeparator {}
Platform.MenuItem { Platform.MenuItem {
text: root.expanded ? qsTr("Collapse") : qsTr("Expand") text: root.displayMode === ToolBlock.DisplayMode.Collapsed ? qsTr("Expand") : qsTr("Collapse")
onTriggered: root.expanded = !root.expanded onTriggered: {
if (root.displayMode === ToolBlock.DisplayMode.Collapsed) {
root.displayMode = ToolBlock.DisplayMode.Compact
} else {
root.displayMode = ToolBlock.DisplayMode.Collapsed
}
}
}
Platform.MenuItem {
text: root.displayMode === ToolBlock.DisplayMode.Expanded ? qsTr("Compact view") : qsTr("Full view")
enabled: root.displayMode !== ToolBlock.DisplayMode.Collapsed
onTriggered: {
if (root.displayMode === ToolBlock.DisplayMode.Expanded) {
root.displayMode = ToolBlock.DisplayMode.Compact
} else {
root.displayMode = ToolBlock.DisplayMode.Expanded
}
}
} }
} }
@ -141,22 +229,4 @@ Rectangle {
: Qt.lighter(palette.alternateBase, 1.3) : Qt.lighter(palette.alternateBase, 1.3)
radius: root.radius radius: root.radius
} }
states: [
State {
when: !root.expanded
PropertyChanges {
target: root
implicitHeight: header.height
}
},
State {
when: root.expanded
PropertyChanges {
target: root
implicitHeight: header.height + contentColumn.height + 20
}
}
]
} }