2023-05-01 17:51:46 +00:00
|
|
|
import QtCore
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Basic
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import llm
|
|
|
|
import download
|
|
|
|
import network
|
|
|
|
|
|
|
|
Drawer {
|
|
|
|
id: chatDrawer
|
|
|
|
modal: false
|
|
|
|
opacity: 0.9
|
|
|
|
|
|
|
|
Theme {
|
|
|
|
id: theme
|
|
|
|
}
|
|
|
|
|
|
|
|
signal downloadClicked
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
height: parent.height
|
|
|
|
color: theme.backgroundDarkest
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
anchors.fill: parent
|
2023-05-01 21:13:20 +00:00
|
|
|
anchors.margins: 10
|
2023-05-01 17:51:46 +00:00
|
|
|
|
|
|
|
Accessible.role: Accessible.Pane
|
|
|
|
Accessible.name: qsTr("Drawer on the left of the application")
|
|
|
|
Accessible.description: qsTr("Drawer that is revealed by pressing the hamburger button")
|
|
|
|
|
2023-05-01 21:13:20 +00:00
|
|
|
Button {
|
|
|
|
id: newChat
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
padding: 15
|
|
|
|
font.pixelSize: theme.fontSizeLarger
|
|
|
|
background: Rectangle {
|
|
|
|
color: theme.backgroundDarkest
|
|
|
|
opacity: .5
|
|
|
|
border.color: theme.backgroundLightest
|
|
|
|
border.width: 1
|
|
|
|
radius: 10
|
|
|
|
}
|
|
|
|
contentItem: Text {
|
|
|
|
text: qsTr("New chat")
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
color: theme.textColor
|
|
|
|
|
|
|
|
Accessible.role: Accessible.Button
|
|
|
|
Accessible.name: text
|
|
|
|
Accessible.description: qsTr("Use this to launch an external application that will check for updates to the installer")
|
|
|
|
}
|
|
|
|
onClicked: {
|
|
|
|
LLM.chatListModel.addChat();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-02 00:27:07 +00:00
|
|
|
ScrollView {
|
2023-05-01 17:51:46 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2023-05-02 00:27:07 +00:00
|
|
|
anchors.rightMargin: -10
|
2023-05-01 21:13:20 +00:00
|
|
|
anchors.topMargin: 10
|
|
|
|
anchors.top: newChat.bottom
|
|
|
|
anchors.bottom: checkForUpdatesButton.top
|
2023-05-02 00:27:07 +00:00
|
|
|
anchors.bottomMargin: 10
|
|
|
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
2023-05-01 21:13:20 +00:00
|
|
|
|
2023-05-02 00:27:07 +00:00
|
|
|
ListView {
|
|
|
|
id: conversationList
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.rightMargin: 10
|
|
|
|
|
|
|
|
model: LLM.chatListModel
|
|
|
|
|
|
|
|
delegate: Rectangle {
|
|
|
|
id: chatRectangle
|
2023-05-02 00:56:53 +00:00
|
|
|
width: conversationList.width
|
2023-05-02 00:27:07 +00:00
|
|
|
height: chatName.height
|
|
|
|
opacity: 0.9
|
|
|
|
property bool isCurrent: LLM.chatListModel.currentChat === LLM.chatListModel.get(index)
|
2023-05-01 21:13:20 +00:00
|
|
|
color: index % 2 === 0 ? theme.backgroundLight : theme.backgroundLighter
|
2023-05-02 00:27:07 +00:00
|
|
|
border.width: isCurrent
|
|
|
|
border.color: theme.backgroundLightest
|
|
|
|
TextArea {
|
|
|
|
id: chatName
|
|
|
|
anchors.left: parent.left
|
2023-05-02 00:56:53 +00:00
|
|
|
anchors.right: buttons.left
|
2023-05-02 00:27:07 +00:00
|
|
|
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.fontSizeLarger
|
|
|
|
text: name
|
|
|
|
horizontalAlignment: TextInput.AlignLeft
|
|
|
|
background: Rectangle {
|
|
|
|
color: "transparent"
|
|
|
|
}
|
|
|
|
Keys.onReturnPressed: (event)=> {
|
|
|
|
changeName();
|
|
|
|
}
|
|
|
|
onEditingFinished: {
|
|
|
|
changeName();
|
|
|
|
}
|
|
|
|
function changeName() {
|
|
|
|
LLM.chatListModel.get(index).name = chatName.text
|
|
|
|
chatName.focus = false
|
|
|
|
chatName.readOnly = true
|
|
|
|
}
|
|
|
|
TapHandler {
|
|
|
|
onTapped: {
|
|
|
|
if (isCurrent)
|
|
|
|
return;
|
|
|
|
LLM.chatListModel.currentChat = LLM.chatListModel.get(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-02 00:56:53 +00:00
|
|
|
Row {
|
|
|
|
id: buttons
|
2023-05-02 00:27:07 +00:00
|
|
|
anchors.verticalCenter: chatName.verticalCenter
|
|
|
|
anchors.right: chatRectangle.right
|
|
|
|
anchors.rightMargin: 10
|
2023-05-02 00:56:53 +00:00
|
|
|
spacing: 10
|
|
|
|
Button {
|
|
|
|
id: editButton
|
2023-05-02 00:27:07 +00:00
|
|
|
width: 30
|
|
|
|
height: 30
|
2023-05-02 00:56:53 +00:00
|
|
|
visible: isCurrent
|
|
|
|
background: Image {
|
|
|
|
width: 30
|
|
|
|
height: 30
|
|
|
|
source: "qrc:/gpt4all/icons/edit.svg"
|
|
|
|
}
|
|
|
|
onClicked: {
|
|
|
|
chatName.focus = true
|
|
|
|
chatName.readOnly = false
|
|
|
|
}
|
2023-05-02 00:27:07 +00:00
|
|
|
}
|
2023-05-02 00:56:53 +00:00
|
|
|
Button {
|
|
|
|
id: trashButton
|
|
|
|
width: 30
|
|
|
|
height: 30
|
|
|
|
visible: isCurrent
|
|
|
|
background: Image {
|
|
|
|
width: 30
|
|
|
|
height: 30
|
|
|
|
source: "qrc:/gpt4all/icons/trash.svg"
|
|
|
|
}
|
|
|
|
onClicked: {
|
|
|
|
LLM.chatListModel.removeChat(LLM.chatListModel.get(index))
|
|
|
|
}
|
2023-05-02 00:27:07 +00:00
|
|
|
}
|
|
|
|
}
|
2023-05-01 21:13:20 +00:00
|
|
|
}
|
2023-05-01 17:51:46 +00:00
|
|
|
|
2023-05-02 00:27:07 +00:00
|
|
|
Accessible.role: Accessible.List
|
|
|
|
Accessible.name: qsTr("List of chats")
|
|
|
|
Accessible.description: qsTr("List of chats in the drawer dialog")
|
|
|
|
}
|
2023-05-01 17:51:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-01 21:13:20 +00:00
|
|
|
/*Label {
|
2023-05-01 17:51:46 +00:00
|
|
|
id: discordLink
|
|
|
|
textFormat: Text.RichText
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: conversationList.bottom
|
|
|
|
anchors.topMargin: 20
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: qsTr("Check out our discord channel <a href=\"https://discord.gg/4M2QFmTt2k\">https://discord.gg/4M2QFmTt2k</a>")
|
|
|
|
onLinkActivated: { Qt.openUrlExternally("https://discord.gg/4M2QFmTt2k") }
|
|
|
|
color: theme.textColor
|
|
|
|
linkColor: theme.linkColor
|
|
|
|
|
|
|
|
Accessible.role: Accessible.Link
|
|
|
|
Accessible.name: qsTr("Discord link")
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: nomicProps
|
|
|
|
textFormat: Text.RichText
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: discordLink.bottom
|
|
|
|
anchors.topMargin: 20
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: qsTr("Thanks to <a href=\"https://home.nomic.ai\">Nomic AI</a> and the community for contributing so much great data and energy!")
|
|
|
|
onLinkActivated: { Qt.openUrlExternally("https://home.nomic.ai") }
|
|
|
|
color: theme.textColor
|
|
|
|
linkColor: theme.linkColor
|
|
|
|
|
|
|
|
Accessible.role: Accessible.Paragraph
|
|
|
|
Accessible.name: qsTr("Thank you blurb")
|
|
|
|
Accessible.description: qsTr("Contains embedded link to https://home.nomic.ai")
|
2023-05-01 21:13:20 +00:00
|
|
|
}*/
|
2023-05-01 17:51:46 +00:00
|
|
|
|
|
|
|
Button {
|
2023-05-01 21:13:20 +00:00
|
|
|
id: checkForUpdatesButton
|
2023-05-01 17:51:46 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: downloadButton.top
|
2023-05-01 21:13:20 +00:00
|
|
|
anchors.bottomMargin: 10
|
2023-05-01 17:51:46 +00:00
|
|
|
padding: 15
|
|
|
|
contentItem: Text {
|
|
|
|
text: qsTr("Check for updates...")
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
color: theme.textColor
|
|
|
|
|
|
|
|
Accessible.role: Accessible.Button
|
|
|
|
Accessible.name: text
|
|
|
|
Accessible.description: qsTr("Use this to launch an external application that will check for updates to the installer")
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
opacity: .5
|
|
|
|
border.color: theme.backgroundLightest
|
|
|
|
border.width: 1
|
|
|
|
radius: 10
|
|
|
|
color: theme.backgroundLight
|
|
|
|
}
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
if (!LLM.checkForUpdates())
|
|
|
|
checkForUpdatesError.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: downloadButton
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
padding: 15
|
|
|
|
contentItem: Text {
|
|
|
|
text: qsTr("Download new models...")
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
color: theme.textColor
|
|
|
|
|
|
|
|
Accessible.role: Accessible.Button
|
|
|
|
Accessible.name: text
|
|
|
|
Accessible.description: qsTr("Use this to launch a dialog to download new models")
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
opacity: .5
|
|
|
|
border.color: theme.backgroundLightest
|
|
|
|
border.width: 1
|
|
|
|
radius: 10
|
|
|
|
color: theme.backgroundLight
|
|
|
|
}
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
downloadClicked() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|