forked from Shinonome/dots-hyprland
295 lines
11 KiB
QML
295 lines
11 KiB
QML
import "root:/"
|
|
import "root:/services"
|
|
import "root:/modules/common"
|
|
import "root:/modules/common/widgets"
|
|
import "../"
|
|
import "root:/modules/common/functions/string_utils.js" as StringUtils
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Quickshell.Io
|
|
import Quickshell
|
|
import Quickshell.Widgets
|
|
import Quickshell.Wayland
|
|
import Quickshell.Hyprland
|
|
import Qt5Compat.GraphicalEffects
|
|
import org.kde.syntaxhighlighting
|
|
|
|
Rectangle {
|
|
id: root
|
|
property int messageIndex
|
|
property var messageData
|
|
property var messageInputField
|
|
property string faviconDownloadPath
|
|
|
|
property real messagePadding: 7
|
|
property real contentSpacing: 3
|
|
|
|
property bool enableMouseSelection: false
|
|
property bool renderMarkdown: true
|
|
property bool editing: false
|
|
|
|
anchors.left: parent?.left
|
|
anchors.right: parent?.right
|
|
implicitHeight: columnLayout.implicitHeight + root.messagePadding * 2
|
|
|
|
radius: Appearance.rounding.normal
|
|
color: Appearance.colors.colLayer1
|
|
|
|
function saveMessage() {
|
|
if (!root.editing) return;
|
|
// Get all Loader children (each represents a segment)
|
|
const segments = messageContentColumnLayout.children
|
|
.map(child => child.segment)
|
|
.filter(segment => (segment));
|
|
|
|
// Reconstruct markdown
|
|
const newContent = segments.map(segment => {
|
|
if (segment.type === "code") {
|
|
const lang = segment.lang ? segment.lang : "";
|
|
// Remove trailing newlines
|
|
const code = segment.content.replace(/\n+$/, "");
|
|
return "```" + lang + "\n" + code + "\n```";
|
|
} else {
|
|
return segment.content;
|
|
}
|
|
}).join("");
|
|
|
|
root.editing = false
|
|
root.messageData.content = newContent;
|
|
}
|
|
|
|
Keys.onPressed: (event) => {
|
|
if ( // Prevent de-select
|
|
event.key === Qt.Key_Control ||
|
|
event.key == Qt.Key_Shift ||
|
|
event.key == Qt.Key_Alt ||
|
|
event.key == Qt.Key_Meta
|
|
) {
|
|
event.accepted = true
|
|
}
|
|
// Ctrl + S to save
|
|
if ((event.key === Qt.Key_S) && event.modifiers == Qt.ControlModifier) {
|
|
root.saveMessage();
|
|
event.accepted = true;
|
|
}
|
|
}
|
|
|
|
ColumnLayout { // Main layout of the whole thing
|
|
id: columnLayout
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.top: parent.top
|
|
anchors.margins: messagePadding
|
|
spacing: root.contentSpacing
|
|
|
|
RowLayout { // Header
|
|
spacing: 15
|
|
Layout.fillWidth: true
|
|
|
|
Rectangle { // Name
|
|
id: nameWrapper
|
|
color: Appearance.m3colors.m3secondaryContainer
|
|
// color: "transparent"
|
|
radius: Appearance.rounding.small
|
|
implicitHeight: Math.max(nameRowLayout.implicitHeight + 5 * 2, 30)
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
RowLayout {
|
|
id: nameRowLayout
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.leftMargin: 10
|
|
anchors.rightMargin: 10
|
|
spacing: 7
|
|
|
|
Item {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
Layout.fillHeight: true
|
|
implicitWidth: messageData?.role == 'assistant' ? modelIcon.width : roleIcon.implicitWidth
|
|
implicitHeight: messageData?.role == 'assistant' ? modelIcon.height : roleIcon.implicitHeight
|
|
|
|
CustomIcon {
|
|
id: modelIcon
|
|
anchors.centerIn: parent
|
|
visible: messageData?.role == 'assistant' && Ai.models[messageData?.model].icon
|
|
width: Appearance.font.pixelSize.large
|
|
height: Appearance.font.pixelSize.large
|
|
source: messageData?.role == 'assistant' ? Ai.models[messageData?.model].icon :
|
|
messageData?.role == 'user' ? 'linux-symbolic' : 'desktop-symbolic'
|
|
}
|
|
ColorOverlay {
|
|
visible: modelIcon.visible
|
|
anchors.fill: modelIcon
|
|
source: modelIcon
|
|
color: Appearance.m3colors.m3onSecondaryContainer
|
|
}
|
|
|
|
MaterialSymbol {
|
|
id: roleIcon
|
|
anchors.centerIn: parent
|
|
visible: !modelIcon.visible
|
|
iconSize: Appearance.font.pixelSize.larger
|
|
color: Appearance.m3colors.m3onSecondaryContainer
|
|
text: messageData?.role == 'user' ? 'person' :
|
|
messageData?.role == 'interface' ? 'settings' :
|
|
messageData?.role == 'assistant' ? 'neurology' :
|
|
'computer'
|
|
}
|
|
}
|
|
|
|
StyledText {
|
|
id: providerName
|
|
Layout.alignment: Qt.AlignVCenter
|
|
Layout.fillWidth: true
|
|
elide: Text.ElideRight
|
|
font.pixelSize: Appearance.font.pixelSize.normal
|
|
font.weight: Font.DemiBold
|
|
color: Appearance.m3colors.m3onSecondaryContainer
|
|
text: messageData?.role == 'assistant' ? Ai.models[messageData?.model].name :
|
|
(messageData?.role == 'user' && SystemInfo.username) ? SystemInfo.username :
|
|
qsTr("Interface")
|
|
}
|
|
}
|
|
}
|
|
|
|
Button { // Not visible to model
|
|
id: modelVisibilityIndicator
|
|
visible: messageData?.role == 'interface'
|
|
implicitWidth: 16
|
|
implicitHeight: 30
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
background: Item
|
|
|
|
MaterialSymbol {
|
|
id: notVisibleToModelText
|
|
anchors.centerIn: parent
|
|
iconSize: Appearance.font.pixelSize.small
|
|
color: Appearance.colors.colSubtext
|
|
text: "visibility_off"
|
|
}
|
|
StyledToolTip {
|
|
content: qsTr("Not visible to model")
|
|
}
|
|
}
|
|
|
|
ButtonGroup {
|
|
spacing: 5
|
|
|
|
AiMessageControlButton {
|
|
id: copyButton
|
|
buttonIcon: activated ? "inventory" : "content_copy"
|
|
|
|
onClicked: {
|
|
Hyprland.dispatch(`exec wl-copy '${StringUtils.shellSingleQuoteEscape(root.messageData?.content)}'`)
|
|
copyButton.activated = true
|
|
copyIconTimer.restart()
|
|
}
|
|
|
|
Timer {
|
|
id: copyIconTimer
|
|
interval: 1500
|
|
repeat: false
|
|
onTriggered: {
|
|
copyButton.activated = false
|
|
}
|
|
}
|
|
StyledToolTip {
|
|
content: qsTr("Copy")
|
|
}
|
|
}
|
|
AiMessageControlButton {
|
|
id: editButton
|
|
activated: root.editing
|
|
enabled: root.messageData?.done
|
|
buttonIcon: "edit"
|
|
onClicked: {
|
|
root.editing = !root.editing
|
|
if (!root.editing) { // Save changes
|
|
root.saveMessage()
|
|
}
|
|
}
|
|
StyledToolTip {
|
|
content: root.editing ? qsTr("Save") : qsTr("Edit")
|
|
}
|
|
}
|
|
AiMessageControlButton {
|
|
id: toggleMarkdownButton
|
|
activated: !root.renderMarkdown
|
|
buttonIcon: "code"
|
|
onClicked: {
|
|
root.renderMarkdown = !root.renderMarkdown
|
|
}
|
|
StyledToolTip {
|
|
content: qsTr("View Markdown source")
|
|
}
|
|
}
|
|
AiMessageControlButton {
|
|
id: deleteButton
|
|
buttonIcon: "close"
|
|
onClicked: {
|
|
Ai.removeMessage(root.messageIndex)
|
|
}
|
|
StyledToolTip {
|
|
content: qsTr("Delete")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnLayout { // Message content
|
|
id: messageContentColumnLayout
|
|
|
|
spacing: 0
|
|
Repeater {
|
|
model: ScriptModel {
|
|
values: StringUtils.splitMarkdownBlocks(root.messageData?.content)
|
|
}
|
|
delegate: Loader {
|
|
Layout.fillWidth: true
|
|
// property var segment: modelData
|
|
property var segmentContent: modelData.content
|
|
property var segmentLang: modelData.lang
|
|
property var messageData: root.messageData
|
|
property var editing: root.editing
|
|
property var renderMarkdown: root.renderMarkdown
|
|
property var enableMouseSelection: root.enableMouseSelection
|
|
property bool thinking: root.messageData?.thinking
|
|
property bool done: root.messageData?.done
|
|
property bool completed: modelData.completed ?? false
|
|
|
|
source: modelData.type === "code" ? "MessageCodeBlock.qml" :
|
|
modelData.type === "think" ? "MessageThinkBlock.qml" :
|
|
"MessageTextBlock.qml"
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
Flow { // Annotations
|
|
id: annotationFlowLayout
|
|
visible: root.messageData?.annotationSources?.length > 0
|
|
spacing: 5
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
Repeater {
|
|
model: root.messageData?.annotationSources
|
|
delegate: AnnotationSourceButton {
|
|
id: annotationButton
|
|
faviconDownloadPath: root.faviconDownloadPath
|
|
displayText: modelData.text
|
|
url: modelData.url
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|