fix: Handling request error on provider error

This commit is contained in:
Petr Mironychev
2025-10-10 10:53:06 +02:00
parent d2b28093a6
commit b4e8bdf6da
5 changed files with 131 additions and 0 deletions

View File

@ -263,6 +263,20 @@ ChatRootView {
scrollToBottom()
}
ErrorToast {
id: errorToast
z: 1000
}
Connections {
target: root
function onLastErrorMessageChanged() {
if (root.lastErrorMessage.length > 0) {
errorToast.show(root.lastErrorMessage)
}
}
}
Component.onCompleted: {
messageInput.forceActiveFocus()
}

View File

@ -0,0 +1,100 @@
/*
* Copyright (C) 2025 Petr Mironychev
*
* This file is part of QodeAssist.
*
* QodeAssist is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* QodeAssist is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with QodeAssist. If not, see <https://www.gnu.org/licenses/>.
*/
import QtQuick
Rectangle {
id: errorToast
property string errorText: ""
property int displayDuration: 5000
width: Math.min(parent.width - 40, errorTextItem.implicitWidth + radius)
height: visible ? (errorTextItem.implicitHeight + 12) : 0
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
anchors.topMargin: 10
color: "#d32f2f"
radius: height / 2
border.color: "#b71c1c"
border.width: 1
visible: false
opacity: 0
TextEdit {
id: errorTextItem
anchors.centerIn: parent
anchors.margins: 6
text: errorToast.errorText
color: "#ffffff"
font.pixelSize: 13
wrapMode: TextEdit.Wrap
width: Math.min(implicitWidth, errorToast.parent.width - 60)
horizontalAlignment: TextEdit.AlignHCenter
readOnly: true
selectByMouse: true
selectByKeyboard: true
selectionColor: "#b71c1c"
}
function show(message) {
errorText = message
visible = true
showAnimation.start()
hideTimer.restart()
}
function hide() {
hideAnimation.start()
}
NumberAnimation {
id: showAnimation
target: errorToast
property: "opacity"
from: 0
to: 1
duration: 200
easing.type: Easing.OutQuad
}
NumberAnimation {
id: hideAnimation
target: errorToast
property: "opacity"
from: 1
to: 0
duration: 200
easing.type: Easing.InQuad
onFinished: errorToast.visible = false
}
Timer {
id: hideTimer
interval: errorToast.displayDuration
running: false
repeat: false
onTriggered: errorToast.hide()
}
}