gpt4all/gpt4all-chat/qml/ChatDrawer.qml

250 lines
10 KiB
QML
Raw Normal View History

import QtCore
import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Basic
import QtQuick.Layouts
2023-06-22 22:44:49 +03:00
import chatlistmodel
import llm
import download
import network
import mysettings
Rectangle {
id: chatDrawer
Theme {
id: theme
}
color: theme.containerBackground
Rectangle {
id: borderRight
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.right: parent.right
width: 2
color: theme.containerForeground
}
Item {
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: borderRight.left
2023-05-02 00:13:20 +03:00
anchors.margins: 10
Accessible.role: Accessible.Pane
Accessible.name: qsTr("Drawer")
Accessible.description: qsTr("Main navigation drawer")
2023-05-22 21:17:45 +03:00
MyButton {
2023-05-02 00:13:20 +03:00
id: newChat
anchors.left: parent.left
anchors.right: parent.right
font.pixelSize: theme.fontSizeLarger
2023-06-01 03:42:00 +03:00
topPadding: 20
bottomPadding: 20
text: qsTr("\uFF0B New chat")
Accessible.description: qsTr("Create a new chat")
2023-05-02 00:13:20 +03:00
onClicked: {
2023-06-22 22:44:49 +03:00
ChatListModel.addChat();
Network.sendNewChat(ChatListModel.count)
2023-05-02 00:13:20 +03:00
}
}
ScrollView {
anchors.left: parent.left
anchors.right: parent.right
anchors.rightMargin: -10
2023-05-02 00:13:20 +03:00
anchors.topMargin: 10
anchors.top: newChat.bottom
anchors.bottom: parent.bottom
anchors.bottomMargin: 10
ScrollBar.vertical.policy: ScrollBar.AlwaysOff
clip: true
2023-05-02 00:13:20 +03:00
ListView {
id: conversationList
anchors.fill: parent
anchors.rightMargin: 10
2023-06-22 22:44:49 +03:00
model: ChatListModel
ScrollBar.vertical: ScrollBar {
parent: conversationList.parent
anchors.top: conversationList.top
anchors.left: conversationList.right
anchors.bottom: conversationList.bottom
}
delegate: Rectangle {
id: chatRectangle
2023-05-02 03:56:53 +03:00
width: conversationList.width
height: chatName.height
2023-06-22 22:44:49 +03:00
property bool isCurrent: ChatListModel.currentChat === ChatListModel.get(index)
property bool isServer: ChatListModel.get(index) && ChatListModel.get(index).isServer
property bool trashQuestionDisplayed: false
visible: !isServer || MySettings.serverChat
z: isCurrent ? 199 : 1
color: index % 2 === 0 ? theme.darkContrast : theme.lightContrast
border.width: isCurrent
border.color: chatName.readOnly ? theme.assistantColor : theme.userColor
2023-05-02 18:19:17 +03:00
TextField {
id: chatName
anchors.left: parent.left
2023-05-02 03:56:53 +03:00
anchors.right: buttons.left
color: theme.textColor
padding: 15
focus: false
readOnly: true
wrapMode: Text.NoWrap
hoverEnabled: false // Disable hover events on the TextArea
selectByMouse: false // Disable text selection in the TextArea
font.pixelSize: theme.fontSizeLarge
2023-05-02 18:19:17 +03:00
text: readOnly ? metrics.elidedText : name
horizontalAlignment: TextInput.AlignLeft
opacity: trashQuestionDisplayed ? 0.5 : 1.0
2023-05-02 18:19:17 +03:00
TextMetrics {
id: metrics
font: chatName.font
text: name
elide: Text.ElideRight
elideWidth: chatName.width - 40
2023-05-02 18:19:17 +03:00
}
background: Rectangle {
color: "transparent"
}
onEditingFinished: {
// Work around a bug in qml where we're losing focus when the whole window
// goes out of focus even though this textfield should be marked as not
// having focus
if (chatName.readOnly)
return;
changeName();
Network.sendRenameChat()
}
function changeName() {
2023-06-22 22:44:49 +03:00
ChatListModel.get(index).name = chatName.text
chatName.focus = false
chatName.readOnly = true
2023-05-02 18:19:17 +03:00
chatName.selectByMouse = false
}
TapHandler {
onTapped: {
if (isCurrent)
return;
2023-06-22 22:44:49 +03:00
ChatListModel.currentChat = ChatListModel.get(index);
}
}
Accessible.role: Accessible.Button
Accessible.name: text
Accessible.description: qsTr("Select the current chat or edit the chat when in edit mode")
}
2023-05-02 03:56:53 +03:00
Row {
id: buttons
anchors.verticalCenter: chatName.verticalCenter
anchors.right: chatRectangle.right
anchors.rightMargin: 10
2023-05-02 03:56:53 +03:00
spacing: 10
MyToolButton {
2023-05-02 03:56:53 +03:00
id: editButton
width: 30
height: 30
2023-05-11 23:46:25 +03:00
visible: isCurrent && !isServer
opacity: trashQuestionDisplayed ? 0.5 : 1.0
source: "qrc:/gpt4all/icons/edit.svg"
2023-05-02 03:56:53 +03:00
onClicked: {
chatName.focus = true
chatName.readOnly = false
2023-05-02 18:19:17 +03:00
chatName.selectByMouse = true
2023-05-02 03:56:53 +03:00
}
Accessible.name: qsTr("Edit chat name")
}
MyToolButton {
2023-05-11 23:46:25 +03:00
id: trashButton
2023-05-02 03:56:53 +03:00
width: 30
height: 30
2023-05-11 23:46:25 +03:00
visible: isCurrent && !isServer
source: "qrc:/gpt4all/icons/trash.svg"
2023-05-02 03:56:53 +03:00
onClicked: {
trashQuestionDisplayed = true
timer.start()
2023-05-02 03:56:53 +03:00
}
Accessible.name: qsTr("Delete chat")
}
}
Rectangle {
id: trashSureQuestion
anchors.top: buttons.bottom
anchors.topMargin: 10
anchors.right: buttons.right
width: childrenRect.width
height: childrenRect.height
color: chatRectangle.color
visible: isCurrent && trashQuestionDisplayed
opacity: 1.0
radius: 10
z: 200
Row {
spacing: 10
Button {
id: checkMark
width: 30
height: 30
contentItem: Text {
color: theme.textErrorColor
text: "\u2713"
font.pixelSize: theme.fontSizeLarger
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
background: Rectangle {
width: 30
height: 30
color: "transparent"
}
onClicked: {
2023-06-22 22:44:49 +03:00
ChatListModel.removeChat(ChatListModel.get(index))
Network.sendRemoveChat()
}
Accessible.role: Accessible.Button
Accessible.name: qsTr("Confirm chat deletion")
}
Button {
id: cancel
width: 30
height: 30
contentItem: Text {
color: theme.textColor
text: "\u2715"
font.pixelSize: theme.fontSizeLarger
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
background: Rectangle {
width: 30
height: 30
color: "transparent"
}
onClicked: {
trashQuestionDisplayed = false
}
Accessible.role: Accessible.Button
Accessible.name: qsTr("Cancel chat deletion")
}
}
}
Timer {
id: timer
interval: 3000; running: false; repeat: false
onTriggered: trashQuestionDisplayed = false
}
2023-05-02 00:13:20 +03:00
}
Accessible.role: Accessible.List
Accessible.name: qsTr("List of chats")
Accessible.description: qsTr("List of chats in the drawer dialog")
}
}
}
}