2023-05-23 18:51:14 +00:00
|
|
|
import QtCore
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Basic
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import QtQuick.Dialogs
|
2023-06-22 19:44:49 +00:00
|
|
|
import chatlistmodel
|
2023-05-23 18:51:14 +00:00
|
|
|
import localdocs
|
|
|
|
import llm
|
|
|
|
|
2023-07-06 14:53:43 +00:00
|
|
|
MyDialog {
|
2023-05-23 18:51:14 +00:00
|
|
|
id: collectionsDialog
|
|
|
|
modal: true
|
|
|
|
padding: 20
|
|
|
|
width: 480
|
|
|
|
height: 640
|
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
property var currentChat: ChatListModel.currentChat
|
2023-05-23 18:51:14 +00:00
|
|
|
|
|
|
|
Label {
|
|
|
|
id: listLabel
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
2023-10-24 16:13:32 +00:00
|
|
|
text: qsTr("Local Documents:")
|
2023-08-07 17:54:13 +00:00
|
|
|
font.pixelSize: theme.fontSizeLarge
|
2023-05-23 18:51:14 +00:00
|
|
|
color: theme.textColor
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollView {
|
|
|
|
id: scrollView
|
|
|
|
anchors.top: listLabel.bottom
|
|
|
|
anchors.topMargin: 20
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
clip: true
|
|
|
|
contentHeight: 300
|
|
|
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
color: theme.backgroundLighter
|
|
|
|
}
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: listView
|
|
|
|
model: LocalDocs.localDocsModel
|
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
delegate: Rectangle {
|
|
|
|
id: item
|
|
|
|
width: listView.width
|
|
|
|
height: collectionId.height + 40
|
|
|
|
color: index % 2 === 0 ? theme.backgroundLight : theme.backgroundLighter
|
|
|
|
MyCheckBox {
|
|
|
|
id: checkBox
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.margins: 20
|
|
|
|
checked: currentChat.hasCollection(collection)
|
|
|
|
onClicked: {
|
|
|
|
if (checkBox.checked) {
|
|
|
|
currentChat.addCollection(collection)
|
|
|
|
} else {
|
|
|
|
currentChat.removeCollection(collection)
|
|
|
|
}
|
|
|
|
}
|
2023-10-24 16:13:32 +00:00
|
|
|
ToolTip.text: qsTr("Warning: searching collections while indexing can return incomplete results")
|
|
|
|
ToolTip.visible: hovered && model.indexing
|
2023-05-23 18:51:14 +00:00
|
|
|
}
|
|
|
|
Text {
|
|
|
|
id: collectionId
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: checkBox.right
|
|
|
|
anchors.margins: 20
|
2023-10-24 16:13:32 +00:00
|
|
|
anchors.leftMargin: 10
|
2023-05-23 18:51:14 +00:00
|
|
|
text: collection
|
2023-08-07 17:54:13 +00:00
|
|
|
font.pixelSize: theme.fontSizeLarge
|
2023-05-23 18:51:14 +00:00
|
|
|
elide: Text.ElideRight
|
|
|
|
color: theme.textColor
|
|
|
|
}
|
2023-10-24 16:13:32 +00:00
|
|
|
ProgressBar {
|
|
|
|
id: itemProgressBar
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: collectionId.right
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.margins: 20
|
|
|
|
anchors.leftMargin: 40
|
|
|
|
visible: model.indexing
|
|
|
|
value: (model.totalBytesToIndex - model.currentBytesToIndex) / model.totalBytesToIndex
|
|
|
|
background: Rectangle {
|
|
|
|
implicitHeight: 45
|
|
|
|
color: theme.backgroundDarkest
|
|
|
|
radius: 3
|
|
|
|
}
|
|
|
|
contentItem: Item {
|
|
|
|
implicitHeight: 40
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
width: itemProgressBar.visualPosition * parent.width
|
|
|
|
height: parent.height
|
|
|
|
radius: 2
|
|
|
|
color: theme.assistantColor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Accessible.role: Accessible.ProgressBar
|
|
|
|
Accessible.name: qsTr("Indexing progressBar")
|
|
|
|
Accessible.description: qsTr("Shows the progress made in the indexing")
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
id: speedLabel
|
|
|
|
color: theme.textColor
|
|
|
|
visible: model.indexing
|
|
|
|
anchors.verticalCenter: itemProgressBar.verticalCenter
|
|
|
|
anchors.left: itemProgressBar.left
|
|
|
|
anchors.right: itemProgressBar.right
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
text: qsTr("indexing...")
|
|
|
|
elide: Text.ElideRight
|
|
|
|
font.pixelSize: theme.fontSizeLarge
|
|
|
|
}
|
2023-05-23 18:51:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|