2025-03-31 22:32:19 +08:00
|
|
|
|
<template>
|
2025-05-15 22:34:32 +08:00
|
|
|
|
<div class="chat-container" ref="chatContainerRef">
|
|
|
|
|
|
<ChatSidebarComponent
|
|
|
|
|
|
:current-chat-id="currentChatId"
|
|
|
|
|
|
:chats-list="chatsList"
|
2025-11-08 13:59:56 +08:00
|
|
|
|
:is-sidebar-open="chatUIStore.isSidebarOpen"
|
|
|
|
|
|
:is-initial-render="localUIState.isInitialRender"
|
2025-08-11 21:29:33 +08:00
|
|
|
|
:single-mode="props.singleMode"
|
|
|
|
|
|
:agents="agents"
|
2025-08-31 14:39:28 +08:00
|
|
|
|
:selected-agent-id="currentAgentId"
|
2025-11-08 13:59:56 +08:00
|
|
|
|
:is-creating-new-chat="chatUIStore.creatingNewChat"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
@create-chat="createNewChat"
|
|
|
|
|
|
@select-chat="selectChat"
|
|
|
|
|
|
@delete-chat="deleteChat"
|
|
|
|
|
|
@rename-chat="renameChat"
|
|
|
|
|
|
@toggle-sidebar="toggleSidebar"
|
2025-08-11 21:29:33 +08:00
|
|
|
|
@open-agent-modal="openAgentModal"
|
2025-06-22 19:49:42 +08:00
|
|
|
|
:class="{
|
|
|
|
|
|
'floating-sidebar': isSmallContainer,
|
2025-11-08 13:59:56 +08:00
|
|
|
|
'sidebar-open': chatUIStore.isSidebarOpen,
|
|
|
|
|
|
'no-transition': localUIState.isInitialRender,
|
|
|
|
|
|
'collapsed': isSmallContainer && !chatUIStore.isSidebarOpen
|
2025-06-22 19:49:42 +08:00
|
|
|
|
}"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
/>
|
2025-11-08 13:59:56 +08:00
|
|
|
|
<div class="sidebar-backdrop" v-if="chatUIStore.isSidebarOpen && isSmallContainer" @click="toggleSidebar"></div>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
<div class="chat">
|
|
|
|
|
|
<div class="chat-header">
|
|
|
|
|
|
<div class="header__left">
|
2025-04-01 22:16:07 +08:00
|
|
|
|
<slot name="header-left" class="nav-btn"></slot>
|
2025-11-08 13:59:56 +08:00
|
|
|
|
<div type="button" class="agent-nav-btn" v-if="!chatUIStore.isSidebarOpen" @click="toggleSidebar">
|
2025-10-13 11:12:25 +08:00
|
|
|
|
<PanelLeftOpen class="nav-btn-icon" size="18"/>
|
2025-05-15 22:34:32 +08:00
|
|
|
|
</div>
|
2025-11-08 13:59:56 +08:00
|
|
|
|
<div type="button" class="agent-nav-btn" v-if="!chatUIStore.isSidebarOpen" @click="createNewChat" :disabled="chatUIStore.creatingNewChat">
|
|
|
|
|
|
<LoaderCircle v-if="chatUIStore.creatingNewChat" class="nav-btn-icon loading-icon" size="18"/>
|
|
|
|
|
|
<MessageCirclePlus v-else class="nav-btn-icon" size="18"/>
|
2025-10-13 11:12:25 +08:00
|
|
|
|
<span class="text" :class="{'hide-text': isMediumContainer}">新对话</span>
|
2025-03-31 23:02:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="header__right">
|
2025-10-13 11:12:25 +08:00
|
|
|
|
<!-- <div class="nav-btn" @click="shareChat" v-if="currentChatId && currentAgent">
|
2025-06-27 01:48:09 +08:00
|
|
|
|
<ShareAltOutlined style="font-size: 18px;"/>
|
2025-10-13 11:12:25 +08:00
|
|
|
|
</div> -->
|
2025-05-15 22:34:32 +08:00
|
|
|
|
<!-- <div class="nav-btn test-history" @click="getAgentHistory" v-if="currentChatId && currentAgent">
|
|
|
|
|
|
<ThunderboltOutlined />
|
2025-05-04 21:04:01 +08:00
|
|
|
|
</div> -->
|
2025-04-02 00:00:04 +08:00
|
|
|
|
<slot name="header-right"></slot>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
<!-- 加载状态:加载消息 -->
|
|
|
|
|
|
<div v-if="isLoadingMessages" class="chat-loading">
|
2025-11-05 09:20:58 +08:00
|
|
|
|
<div class="loading-spinner"></div>
|
|
|
|
|
|
<span>正在加载消息...</span>
|
2025-05-15 22:34:32 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<div v-else-if="!conversations.length" class="chat-examples">
|
2025-11-07 12:28:58 +08:00
|
|
|
|
<div style="margin-bottom: 150px"></div>
|
|
|
|
|
|
<h1>您好,我是{{ currentAgentName }}!</h1>
|
2025-09-09 20:25:48 +08:00
|
|
|
|
<!-- <h1>{{ currentAgent ? currentAgent.name : '请选择一个智能体开始对话' }}</h1>
|
|
|
|
|
|
<p>{{ currentAgent ? currentAgent.description : '不同的智能体有不同的专长和能力' }}</p> -->
|
|
|
|
|
|
|
2025-08-09 23:18:19 +08:00
|
|
|
|
<div class="inputer-init">
|
|
|
|
|
|
<MessageInputComponent
|
|
|
|
|
|
v-model="userInput"
|
2025-08-25 13:57:47 +08:00
|
|
|
|
:is-loading="isProcessing"
|
2025-08-09 23:18:19 +08:00
|
|
|
|
:disabled="!currentAgent"
|
2025-10-06 21:44:17 +08:00
|
|
|
|
:send-button-disabled="(!userInput || !currentAgent) && !isProcessing"
|
2025-10-13 11:12:25 +08:00
|
|
|
|
placeholder="输入问题..."
|
2025-10-06 21:44:17 +08:00
|
|
|
|
@send="handleSendOrStop"
|
2025-08-09 23:18:19 +08:00
|
|
|
|
@keydown="handleKeyDown"
|
2025-11-08 10:51:30 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template #options-left>
|
|
|
|
|
|
<AttachmentInputPanel
|
|
|
|
|
|
v-if="supportsFileUpload"
|
|
|
|
|
|
:attachments="currentAttachments"
|
|
|
|
|
|
:limits="attachmentState.limits"
|
|
|
|
|
|
:is-uploading="attachmentState.isUploading"
|
|
|
|
|
|
:disabled="!currentAgent"
|
|
|
|
|
|
@upload="handleAttachmentUpload"
|
|
|
|
|
|
@remove="handleAttachmentRemove"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</MessageInputComponent>
|
2025-09-09 20:25:48 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 示例问题 -->
|
|
|
|
|
|
<div class="example-questions" v-if="exampleQuestions.length > 0">
|
|
|
|
|
|
<div class="example-title">或试试这些问题:</div>
|
|
|
|
|
|
<div class="example-chips">
|
|
|
|
|
|
<div
|
|
|
|
|
|
v-for="question in exampleQuestions"
|
|
|
|
|
|
:key="question.id"
|
|
|
|
|
|
class="example-chip"
|
|
|
|
|
|
@click="handleExampleClick(question.text)"
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ question.text }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-08-09 23:18:19 +08:00
|
|
|
|
</div>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</div>
|
2025-05-15 22:34:32 +08:00
|
|
|
|
<div class="chat-box" ref="messagesContainer">
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<div class="conv-box" v-for="(conv, index) in conversations" :key="index">
|
2025-05-15 22:34:32 +08:00
|
|
|
|
<AgentMessageComponent
|
2025-08-25 13:57:47 +08:00
|
|
|
|
v-for="(message, msgIndex) in conv.messages"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
:message="message"
|
2025-08-25 13:57:47 +08:00
|
|
|
|
:key="msgIndex"
|
|
|
|
|
|
:is-processing="isProcessing && conv.status === 'streaming' && msgIndex === conv.messages.length - 1"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
:show-refs="showMsgRefs(message)"
|
|
|
|
|
|
@retry="retryMessage(message)"
|
|
|
|
|
|
>
|
|
|
|
|
|
</AgentMessageComponent>
|
2025-06-24 00:15:51 +08:00
|
|
|
|
<!-- 显示对话最后一个消息使用的模型 -->
|
|
|
|
|
|
<RefsComponent
|
2025-11-01 21:34:16 +08:00
|
|
|
|
v-if="shouldShowRefs(conv)"
|
2025-06-24 00:15:51 +08:00
|
|
|
|
:message="getLastMessage(conv)"
|
|
|
|
|
|
:show-refs="['model', 'copy']"
|
|
|
|
|
|
:is-latest-message="false"
|
|
|
|
|
|
/>
|
2025-05-15 22:34:32 +08:00
|
|
|
|
</div>
|
2025-06-24 00:15:51 +08:00
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
<!-- 生成中的加载状态 - 增强条件支持主聊天和resume流程 -->
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<div class="generating-status" v-if="isProcessing && conversations.length > 0">
|
2025-06-24 00:15:51 +08:00
|
|
|
|
<div class="generating-indicator">
|
|
|
|
|
|
<div class="loading-dots">
|
|
|
|
|
|
<div></div>
|
|
|
|
|
|
<div></div>
|
|
|
|
|
|
<div></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<span class="generating-text">正在生成回复...</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="bottom">
|
2025-11-01 21:34:16 +08:00
|
|
|
|
<!-- 人工审批弹窗 - 放在输入框上方 -->
|
|
|
|
|
|
<HumanApprovalModal
|
|
|
|
|
|
:visible="approvalState.showModal"
|
|
|
|
|
|
:question="approvalState.question"
|
|
|
|
|
|
:operation="approvalState.operation"
|
|
|
|
|
|
@approve="handleApprove"
|
|
|
|
|
|
@reject="handleReject"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<div class="message-input-wrapper" v-if="conversations.length > 0">
|
2025-03-31 22:32:19 +08:00
|
|
|
|
<MessageInputComponent
|
|
|
|
|
|
v-model="userInput"
|
2025-08-25 13:57:47 +08:00
|
|
|
|
:is-loading="isProcessing"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
:disabled="!currentAgent"
|
2025-10-06 21:44:17 +08:00
|
|
|
|
:send-button-disabled="(!userInput || !currentAgent) && !isProcessing"
|
2025-10-13 11:12:25 +08:00
|
|
|
|
placeholder="输入问题..."
|
2025-10-06 21:44:17 +08:00
|
|
|
|
@send="handleSendOrStop"
|
2025-03-31 22:32:19 +08:00
|
|
|
|
@keydown="handleKeyDown"
|
2025-11-08 10:51:30 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template #options-left>
|
|
|
|
|
|
<AttachmentInputPanel
|
|
|
|
|
|
v-if="supportsFileUpload"
|
|
|
|
|
|
:attachments="currentAttachments"
|
|
|
|
|
|
:limits="attachmentState.limits"
|
|
|
|
|
|
:is-uploading="attachmentState.isUploading"
|
|
|
|
|
|
:disabled="!currentAgent"
|
|
|
|
|
|
@upload="handleAttachmentUpload"
|
|
|
|
|
|
@remove="handleAttachmentRemove"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</MessageInputComponent>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
<div class="bottom-actions">
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<p class="note">请注意辨别内容的可靠性</p>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2025-10-13 11:12:25 +08:00
|
|
|
|
import { ref, reactive, onMounted, watch, nextTick, computed, onUnmounted } from 'vue';
|
|
|
|
|
|
import { LoadingOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
|
import { message } from 'ant-design-vue';
|
2025-03-31 22:32:19 +08:00
|
|
|
|
import MessageInputComponent from '@/components/MessageInputComponent.vue'
|
2025-11-08 10:51:30 +08:00
|
|
|
|
import AttachmentInputPanel from '@/components/AttachmentInputPanel.vue'
|
2025-05-15 22:34:32 +08:00
|
|
|
|
import AgentMessageComponent from '@/components/AgentMessageComponent.vue'
|
|
|
|
|
|
import ChatSidebarComponent from '@/components/ChatSidebarComponent.vue'
|
2025-06-24 00:15:51 +08:00
|
|
|
|
import RefsComponent from '@/components/RefsComponent.vue'
|
2025-11-08 13:59:56 +08:00
|
|
|
|
import { PanelLeftOpen, MessageCirclePlus, LoaderCircle } from 'lucide-vue-next';
|
2025-08-31 14:39:28 +08:00
|
|
|
|
import { handleChatError, handleValidationError } from '@/utils/errorHandler';
|
2025-08-25 13:57:47 +08:00
|
|
|
|
import { ScrollController } from '@/utils/scrollController';
|
|
|
|
|
|
import { AgentValidator } from '@/utils/agentValidator';
|
2025-08-25 01:46:31 +08:00
|
|
|
|
import { useAgentStore } from '@/stores/agent';
|
2025-11-08 13:59:56 +08:00
|
|
|
|
import { useChatUIStore } from '@/stores/chatUI';
|
2025-08-25 01:46:31 +08:00
|
|
|
|
import { storeToRefs } from 'pinia';
|
2025-08-31 14:39:28 +08:00
|
|
|
|
import { MessageProcessor } from '@/utils/messageProcessor';
|
|
|
|
|
|
import { agentApi, threadApi } from '@/apis';
|
2025-11-01 21:34:16 +08:00
|
|
|
|
import HumanApprovalModal from '@/components/HumanApprovalModal.vue';
|
|
|
|
|
|
import { useApproval } from '@/composables/useApproval';
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== PROPS & EMITS ====================
|
2025-03-31 23:02:05 +08:00
|
|
|
|
const props = defineProps({
|
2025-08-31 12:22:49 +08:00
|
|
|
|
agentId: { type: String, default: '' },
|
2025-08-25 13:57:47 +08:00
|
|
|
|
singleMode: { type: Boolean, default: true }
|
2025-03-31 23:02:05 +08:00
|
|
|
|
});
|
2025-08-11 21:29:33 +08:00
|
|
|
|
const emit = defineEmits(['open-config', 'open-agent-modal']);
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== STORE MANAGEMENT ====================
|
2025-08-25 01:46:31 +08:00
|
|
|
|
const agentStore = useAgentStore();
|
2025-11-08 13:59:56 +08:00
|
|
|
|
const chatUIStore = useChatUIStore();
|
2025-08-25 01:46:31 +08:00
|
|
|
|
const {
|
|
|
|
|
|
agents,
|
2025-08-31 14:39:28 +08:00
|
|
|
|
selectedAgentId,
|
|
|
|
|
|
defaultAgentId,
|
2025-08-25 01:46:31 +08:00
|
|
|
|
} = storeToRefs(agentStore);
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// ==================== LOCAL CHAT & UI STATE ====================
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const userInput = ref('');
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-09-09 20:25:48 +08:00
|
|
|
|
// 从智能体元数据获取示例问题
|
|
|
|
|
|
const exampleQuestions = computed(() => {
|
2025-11-07 12:28:58 +08:00
|
|
|
|
const agentId = currentAgentId.value;
|
|
|
|
|
|
let examples = [];
|
|
|
|
|
|
if (agentId && agents.value && agents.value.length > 0) {
|
|
|
|
|
|
const agent = agents.value.find(a => a.id === agentId);
|
|
|
|
|
|
examples = agent ? (agent.examples || []) : [];
|
|
|
|
|
|
}
|
2025-09-09 20:25:48 +08:00
|
|
|
|
return examples.map((text, index) => ({
|
|
|
|
|
|
id: index + 1,
|
|
|
|
|
|
text: text
|
|
|
|
|
|
}));
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// Keep per-thread streaming scratch data in a consistent shape.
|
|
|
|
|
|
const createOnGoingConvState = () => ({
|
|
|
|
|
|
msgChunks: {},
|
|
|
|
|
|
currentRequestKey: null,
|
|
|
|
|
|
currentAssistantKey: null,
|
|
|
|
|
|
toolCallBuffers: {}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
// 业务状态(保留在组件本地)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const chatState = reactive({
|
|
|
|
|
|
currentThreadId: null,
|
|
|
|
|
|
// 以threadId为键的线程状态
|
|
|
|
|
|
threadStates: {}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 组件级别的线程和消息状态
|
|
|
|
|
|
const threads = ref([]);
|
|
|
|
|
|
const threadMessages = ref({});
|
|
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
// 本地 UI 状态(仅在本组件使用)
|
|
|
|
|
|
const localUIState = reactive({
|
2025-08-31 14:39:28 +08:00
|
|
|
|
isInitialRender: true,
|
2025-08-25 13:57:47 +08:00
|
|
|
|
containerWidth: 0,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-08 10:51:30 +08:00
|
|
|
|
const attachmentState = reactive({
|
|
|
|
|
|
itemsByThread: {},
|
|
|
|
|
|
limits: null,
|
|
|
|
|
|
isUploading: false,
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== COMPUTED PROPERTIES ====================
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const currentAgentId = computed(() => {
|
|
|
|
|
|
if (props.singleMode) {
|
|
|
|
|
|
return props.agentId || defaultAgentId.value;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return selectedAgentId.value;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-07 12:28:58 +08:00
|
|
|
|
const currentAgentName = computed(() => {
|
2025-10-13 11:12:25 +08:00
|
|
|
|
const agentId = currentAgentId.value;
|
2025-11-07 12:28:58 +08:00
|
|
|
|
if (agentId && agents.value && agents.value.length > 0) {
|
|
|
|
|
|
const agent = agents.value.find(a => a.id === agentId);
|
|
|
|
|
|
return agent ? agent.name : '智能体';
|
|
|
|
|
|
}
|
|
|
|
|
|
return '智能体';
|
2025-09-18 20:51:50 +08:00
|
|
|
|
});
|
2025-09-09 20:25:48 +08:00
|
|
|
|
|
2025-11-07 12:38:29 +08:00
|
|
|
|
const currentAgent = computed(() => {
|
|
|
|
|
|
if (!currentAgentId.value || !agents.value || !agents.value.length) return null;
|
|
|
|
|
|
return agents.value.find(a => a.id === currentAgentId.value) || null;
|
|
|
|
|
|
});
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const chatsList = computed(() => threads.value || []);
|
|
|
|
|
|
const currentChatId = computed(() => chatState.currentThreadId);
|
|
|
|
|
|
const currentThread = computed(() => {
|
|
|
|
|
|
if (!currentChatId.value) return null;
|
|
|
|
|
|
return threads.value.find(thread => thread.id === currentChatId.value) || null;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-08 10:51:30 +08:00
|
|
|
|
const currentAttachments = computed(() => {
|
|
|
|
|
|
if (!currentChatId.value) return [];
|
|
|
|
|
|
return attachmentState.itemsByThread[currentChatId.value] || [];
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 检查当前智能体是否支持文件上传
|
|
|
|
|
|
const supportsFileUpload = computed(() => {
|
|
|
|
|
|
if (!currentAgent.value) return false;
|
|
|
|
|
|
const capabilities = currentAgent.value.capabilities || [];
|
|
|
|
|
|
return capabilities.includes('file_upload');
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const currentThreadMessages = computed(() => threadMessages.value[currentChatId.value] || []);
|
|
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// 计算是否显示Refs组件的条件
|
|
|
|
|
|
const shouldShowRefs = computed(() => {
|
|
|
|
|
|
return (conv) => {
|
|
|
|
|
|
return getLastMessage(conv) &&
|
|
|
|
|
|
conv.status !== 'streaming' &&
|
|
|
|
|
|
!approvalState.showModal &&
|
|
|
|
|
|
!(approvalState.threadId &&
|
|
|
|
|
|
chatState.currentThreadId === approvalState.threadId &&
|
|
|
|
|
|
isProcessing.value);
|
|
|
|
|
|
};
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 当前线程状态的computed属性
|
|
|
|
|
|
const currentThreadState = computed(() => {
|
|
|
|
|
|
return getThreadState(currentChatId.value);
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const onGoingConvMessages = computed(() => {
|
|
|
|
|
|
const threadState = currentThreadState.value;
|
|
|
|
|
|
if (!threadState || !threadState.onGoingConv) return [];
|
2025-09-03 03:00:25 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const msgs = Object.values(threadState.onGoingConv.msgChunks).map(MessageProcessor.mergeMessageChunk);
|
|
|
|
|
|
return msgs.length > 0
|
|
|
|
|
|
? MessageProcessor.convertToolResultToMessages(msgs).filter(msg => msg.type !== 'tool')
|
|
|
|
|
|
: [];
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const conversations = computed(() => {
|
|
|
|
|
|
const historyConvs = MessageProcessor.convertServerHistoryToMessages(currentThreadMessages.value);
|
2025-10-15 02:37:42 +08:00
|
|
|
|
const threadState = currentThreadState.value;
|
|
|
|
|
|
|
|
|
|
|
|
// 如果有进行中的消息且线程状态显示正在流式处理,添加进行中的对话
|
|
|
|
|
|
if (onGoingConvMessages.value.length > 0 && threadState?.isStreaming) {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const onGoingConv = {
|
|
|
|
|
|
messages: onGoingConvMessages.value,
|
|
|
|
|
|
status: 'streaming'
|
|
|
|
|
|
};
|
|
|
|
|
|
return [...historyConvs, onGoingConv];
|
|
|
|
|
|
}
|
2025-10-15 02:37:42 +08:00
|
|
|
|
|
|
|
|
|
|
// 即使流式结束,如果历史记录为空但还有消息没有完全同步,也保持显示
|
|
|
|
|
|
if (historyConvs.length === 0 && onGoingConvMessages.value.length > 0 && !threadState?.isStreaming) {
|
|
|
|
|
|
const finalConv = {
|
|
|
|
|
|
messages: onGoingConvMessages.value,
|
|
|
|
|
|
status: 'finished'
|
|
|
|
|
|
};
|
|
|
|
|
|
return [finalConv];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
return historyConvs;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
const isLoadingThreads = computed(() => chatUIStore.isLoadingThreads);
|
|
|
|
|
|
const isLoadingMessages = computed(() => chatUIStore.isLoadingMessages);
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const isStreaming = computed(() => {
|
|
|
|
|
|
const threadState = currentThreadState.value;
|
|
|
|
|
|
return threadState ? threadState.isStreaming : false;
|
|
|
|
|
|
});
|
2025-11-05 09:20:58 +08:00
|
|
|
|
const isProcessing = computed(() => isStreaming.value);
|
2025-11-08 13:59:56 +08:00
|
|
|
|
const isSmallContainer = computed(() => localUIState.containerWidth <= 520);
|
|
|
|
|
|
const isMediumContainer = computed(() => localUIState.containerWidth <= 768);
|
2025-08-10 21:58:41 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== SCROLL & RESIZE HANDLING ====================
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const chatContainerRef = ref(null);
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const scrollController = new ScrollController('.chat');
|
2025-05-15 22:34:32 +08:00
|
|
|
|
let resizeObserver = null;
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
|
if (chatContainerRef.value) {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
localUIState.containerWidth = chatContainerRef.value.offsetWidth;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
resizeObserver = new ResizeObserver(entries => {
|
|
|
|
|
|
for (let entry of entries) {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
localUIState.containerWidth = entry.contentRect.width;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
resizeObserver.observe(chatContainerRef.value);
|
|
|
|
|
|
}
|
2025-06-24 00:15:51 +08:00
|
|
|
|
const chatContainer = document.querySelector('.chat');
|
|
|
|
|
|
if (chatContainer) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
chatContainer.addEventListener('scroll', scrollController.handleScroll, { passive: true });
|
2025-06-24 00:15:51 +08:00
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
});
|
2025-11-08 13:59:56 +08:00
|
|
|
|
setTimeout(() => { localUIState.isInitialRender = false; }, 300);
|
2025-05-15 22:34:32 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
if (resizeObserver) resizeObserver.disconnect();
|
|
|
|
|
|
scrollController.cleanup();
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 清理所有线程状态
|
|
|
|
|
|
resetOnGoingConv();
|
2025-08-25 01:46:31 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// ==================== THREAD STATE MANAGEMENT ====================
|
|
|
|
|
|
// 获取指定线程的状态,如果不存在则创建
|
|
|
|
|
|
const getThreadState = (threadId) => {
|
|
|
|
|
|
if (!threadId) return null;
|
|
|
|
|
|
if (!chatState.threadStates[threadId]) {
|
|
|
|
|
|
chatState.threadStates[threadId] = {
|
|
|
|
|
|
isStreaming: false,
|
|
|
|
|
|
streamAbortController: null,
|
2025-11-01 21:34:16 +08:00
|
|
|
|
onGoingConv: createOnGoingConvState()
|
2025-08-31 14:39:28 +08:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
return chatState.threadStates[threadId];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 清理指定线程的状态
|
|
|
|
|
|
const cleanupThreadState = (threadId) => {
|
|
|
|
|
|
if (!threadId) return;
|
|
|
|
|
|
const threadState = chatState.threadStates[threadId];
|
|
|
|
|
|
if (threadState) {
|
|
|
|
|
|
if (threadState.streamAbortController) {
|
|
|
|
|
|
threadState.streamAbortController.abort();
|
|
|
|
|
|
}
|
|
|
|
|
|
delete chatState.threadStates[threadId];
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ==================== STREAM HANDLING LOGIC ====================
|
2025-10-15 02:37:42 +08:00
|
|
|
|
const resetOnGoingConv = (threadId = null, preserveMessages = false) => {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (threadId) {
|
|
|
|
|
|
// 清理指定线程的状态
|
|
|
|
|
|
const threadState = getThreadState(threadId);
|
|
|
|
|
|
if (threadState) {
|
|
|
|
|
|
if (threadState.streamAbortController) {
|
|
|
|
|
|
threadState.streamAbortController.abort();
|
|
|
|
|
|
threadState.streamAbortController = null;
|
|
|
|
|
|
}
|
2025-10-15 02:37:42 +08:00
|
|
|
|
// 如果指定要保留消息,则延迟清空
|
|
|
|
|
|
if (preserveMessages) {
|
|
|
|
|
|
// 延迟清空消息,给历史记录加载足够时间
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
if (threadState.onGoingConv) {
|
2025-11-01 21:34:16 +08:00
|
|
|
|
threadState.onGoingConv = createOnGoingConvState();
|
2025-10-15 02:37:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
}, 100);
|
|
|
|
|
|
} else {
|
2025-11-01 21:34:16 +08:00
|
|
|
|
threadState.onGoingConv = createOnGoingConvState();
|
2025-10-15 02:37:42 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 清理当前线程或所有线程的状态
|
|
|
|
|
|
const targetThreadId = currentChatId.value;
|
|
|
|
|
|
if (targetThreadId) {
|
|
|
|
|
|
const threadState = getThreadState(targetThreadId);
|
|
|
|
|
|
if (threadState) {
|
|
|
|
|
|
if (threadState.streamAbortController) {
|
|
|
|
|
|
threadState.streamAbortController.abort();
|
|
|
|
|
|
threadState.streamAbortController = null;
|
|
|
|
|
|
}
|
2025-10-15 02:37:42 +08:00
|
|
|
|
if (preserveMessages) {
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
if (threadState.onGoingConv) {
|
2025-11-01 21:34:16 +08:00
|
|
|
|
threadState.onGoingConv = createOnGoingConvState();
|
2025-10-15 02:37:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
}, 100);
|
|
|
|
|
|
} else {
|
2025-11-01 21:34:16 +08:00
|
|
|
|
threadState.onGoingConv = createOnGoingConvState();
|
2025-10-15 02:37:42 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 如果没有当前线程,清理所有线程状态
|
|
|
|
|
|
Object.keys(chatState.threadStates).forEach(tid => {
|
|
|
|
|
|
cleanupThreadState(tid);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const _processStreamChunk = (chunk, threadId) => {
|
2025-11-08 14:20:19 +08:00
|
|
|
|
const { status, msg, request_id, message: chunkMessage } = chunk;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const threadState = getThreadState(threadId);
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// console.log('Processing stream chunk:', chunk, 'for thread:', threadId);
|
2025-09-03 03:00:25 +08:00
|
|
|
|
|
2025-10-12 23:45:17 +08:00
|
|
|
|
if (!threadState) return false;
|
2025-09-03 03:00:25 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
switch (status) {
|
|
|
|
|
|
case 'init':
|
|
|
|
|
|
threadState.onGoingConv.msgChunks[request_id] = [msg];
|
2025-10-12 23:45:17 +08:00
|
|
|
|
return false;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
case 'loading':
|
|
|
|
|
|
if (msg.id) {
|
|
|
|
|
|
if (!threadState.onGoingConv.msgChunks[msg.id]) {
|
|
|
|
|
|
threadState.onGoingConv.msgChunks[msg.id] = [];
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
threadState.onGoingConv.msgChunks[msg.id].push(msg);
|
|
|
|
|
|
}
|
2025-11-01 21:34:16 +08:00
|
|
|
|
return false;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
case 'error':
|
2025-11-08 14:20:19 +08:00
|
|
|
|
handleChatError({ message: chunkMessage }, 'stream');
|
2025-09-18 20:33:38 +08:00
|
|
|
|
// Stop the loading indicator
|
|
|
|
|
|
if (threadState) {
|
|
|
|
|
|
threadState.isStreaming = false;
|
|
|
|
|
|
|
|
|
|
|
|
// Abort the stream controller to stop processing further events
|
|
|
|
|
|
if (threadState.streamAbortController) {
|
|
|
|
|
|
threadState.streamAbortController.abort();
|
|
|
|
|
|
threadState.streamAbortController = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-12 23:45:17 +08:00
|
|
|
|
|
|
|
|
|
|
// Reload messages to show any partial content saved by the backend
|
|
|
|
|
|
fetchThreadMessages({ agentId: currentAgentId.value, threadId: threadId });
|
|
|
|
|
|
resetOnGoingConv(threadId);
|
|
|
|
|
|
return true;
|
2025-11-01 21:34:16 +08:00
|
|
|
|
case 'human_approval_required':
|
|
|
|
|
|
// 使用审批 composable 处理审批请求
|
|
|
|
|
|
return processApprovalInStream(chunk, threadId, currentAgentId.value);
|
2025-08-31 14:39:28 +08:00
|
|
|
|
case 'finished':
|
2025-10-15 02:37:42 +08:00
|
|
|
|
// 先标记流式结束,但保持消息显示直到历史记录加载完成
|
|
|
|
|
|
if (threadState) {
|
|
|
|
|
|
threadState.isStreaming = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
// 异步加载历史记录,保持当前消息显示直到历史记录加载完成
|
|
|
|
|
|
fetchThreadMessages({ agentId: currentAgentId.value, threadId: threadId })
|
|
|
|
|
|
.finally(() => {
|
|
|
|
|
|
// 历史记录加载完成后,安全地清空当前进行中的对话
|
|
|
|
|
|
resetOnGoingConv(threadId, true);
|
|
|
|
|
|
});
|
2025-10-12 23:45:17 +08:00
|
|
|
|
return true;
|
2025-10-06 21:44:17 +08:00
|
|
|
|
case 'interrupted':
|
2025-10-12 23:45:17 +08:00
|
|
|
|
// 中断状态,刷新消息历史
|
2025-10-15 02:37:42 +08:00
|
|
|
|
if (threadState) {
|
|
|
|
|
|
threadState.isStreaming = false;
|
|
|
|
|
|
}
|
2025-11-08 14:20:19 +08:00
|
|
|
|
// 如果有 message 字段,显示提示(例如:敏感内容检测)
|
|
|
|
|
|
if (chunkMessage) {
|
|
|
|
|
|
message.info(chunkMessage);
|
|
|
|
|
|
}
|
2025-10-15 02:37:42 +08:00
|
|
|
|
fetchThreadMessages({ agentId: currentAgentId.value, threadId: threadId })
|
|
|
|
|
|
.finally(() => {
|
|
|
|
|
|
resetOnGoingConv(threadId, true);
|
|
|
|
|
|
});
|
2025-10-12 23:45:17 +08:00
|
|
|
|
return true;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2025-10-12 23:45:17 +08:00
|
|
|
|
|
|
|
|
|
|
return false;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ==================== 线程管理方法 ====================
|
|
|
|
|
|
// 获取当前智能体的线程列表
|
|
|
|
|
|
const fetchThreads = async (agentId = null) => {
|
|
|
|
|
|
const targetAgentId = agentId || currentAgentId.value;
|
|
|
|
|
|
if (!targetAgentId) return;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
chatUIStore.isLoadingThreads = true;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
|
|
|
|
|
const fetchedThreads = await threadApi.getThreads(targetAgentId);
|
|
|
|
|
|
threads.value = fetchedThreads || [];
|
2025-11-08 10:51:30 +08:00
|
|
|
|
const validIds = new Set((threads.value || []).map(thread => thread.id));
|
|
|
|
|
|
Object.keys(attachmentState.itemsByThread).forEach((id) => {
|
|
|
|
|
|
if (!validIds.has(id)) {
|
|
|
|
|
|
delete attachmentState.itemsByThread[id];
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Failed to fetch threads:', error);
|
|
|
|
|
|
handleChatError(error, 'fetch');
|
|
|
|
|
|
throw error;
|
|
|
|
|
|
} finally {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
chatUIStore.isLoadingThreads = false;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 创建新线程
|
|
|
|
|
|
const createThread = async (agentId, title = '新的对话') => {
|
|
|
|
|
|
if (!agentId) return null;
|
|
|
|
|
|
|
|
|
|
|
|
chatState.isCreatingThread = true;
|
|
|
|
|
|
try {
|
|
|
|
|
|
const thread = await threadApi.createThread(agentId, title);
|
|
|
|
|
|
if (thread) {
|
|
|
|
|
|
threads.value.unshift(thread);
|
|
|
|
|
|
threadMessages.value[thread.id] = [];
|
2025-11-08 10:51:30 +08:00
|
|
|
|
attachmentState.itemsByThread[thread.id] = [];
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
return thread;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Failed to create thread:', error);
|
|
|
|
|
|
handleChatError(error, 'create');
|
|
|
|
|
|
throw error;
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
chatState.isCreatingThread = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 删除线程
|
|
|
|
|
|
const deleteThread = async (threadId) => {
|
|
|
|
|
|
if (!threadId) return;
|
|
|
|
|
|
|
|
|
|
|
|
chatState.isDeletingThread = true;
|
|
|
|
|
|
try {
|
|
|
|
|
|
await threadApi.deleteThread(threadId);
|
|
|
|
|
|
threads.value = threads.value.filter(thread => thread.id !== threadId);
|
|
|
|
|
|
delete threadMessages.value[threadId];
|
2025-11-08 10:51:30 +08:00
|
|
|
|
delete attachmentState.itemsByThread[threadId];
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
if (chatState.currentThreadId === threadId) {
|
|
|
|
|
|
chatState.currentThreadId = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Failed to delete thread:', error);
|
|
|
|
|
|
handleChatError(error, 'delete');
|
|
|
|
|
|
throw error;
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
chatState.isDeletingThread = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 更新线程标题
|
|
|
|
|
|
const updateThread = async (threadId, title) => {
|
|
|
|
|
|
if (!threadId || !title) return;
|
|
|
|
|
|
|
|
|
|
|
|
chatState.isRenamingThread = true;
|
|
|
|
|
|
try {
|
|
|
|
|
|
await threadApi.updateThread(threadId, title);
|
|
|
|
|
|
const thread = threads.value.find(t => t.id === threadId);
|
|
|
|
|
|
if (thread) {
|
|
|
|
|
|
thread.title = title;
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Failed to update thread:', error);
|
|
|
|
|
|
handleChatError(error, 'update');
|
|
|
|
|
|
throw error;
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
chatState.isRenamingThread = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 获取线程消息
|
|
|
|
|
|
const fetchThreadMessages = async ({ agentId, threadId }) => {
|
|
|
|
|
|
if (!threadId || !agentId) return;
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await agentApi.getAgentHistory(agentId, threadId);
|
|
|
|
|
|
threadMessages.value[threadId] = response.history || [];
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'load');
|
|
|
|
|
|
throw error;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-08 10:51:30 +08:00
|
|
|
|
const loadThreadAttachments = async (threadId, { silent = false } = {}) => {
|
|
|
|
|
|
if (!threadId) return;
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await threadApi.getThreadAttachments(threadId);
|
|
|
|
|
|
attachmentState.itemsByThread[threadId] = response.attachments || [];
|
|
|
|
|
|
if (response.limits) {
|
|
|
|
|
|
attachmentState.limits = response.limits;
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
if (silent) {
|
|
|
|
|
|
console.warn('Failed to load attachments:', error);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
handleChatError(error, 'load');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const ensureActiveThread = async (title = '新的对话') => {
|
|
|
|
|
|
if (currentChatId.value) return currentChatId.value;
|
|
|
|
|
|
try {
|
|
|
|
|
|
const newThread = await createThread(currentAgentId.value, title || '新的对话');
|
|
|
|
|
|
if (newThread) {
|
|
|
|
|
|
chatState.currentThreadId = newThread.id;
|
|
|
|
|
|
return newThread.id;
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
// createThread 已处理错误提示
|
|
|
|
|
|
}
|
|
|
|
|
|
return null;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleAttachmentUpload = async (files) => {
|
|
|
|
|
|
if (!files?.length) return;
|
|
|
|
|
|
if (!AgentValidator.validateAgentIdWithError(currentAgentId.value, '上传附件', handleValidationError)) return;
|
|
|
|
|
|
|
|
|
|
|
|
const preferredTitle = files[0]?.name || '新的对话';
|
|
|
|
|
|
const threadId = await ensureActiveThread(preferredTitle);
|
|
|
|
|
|
if (!threadId) {
|
|
|
|
|
|
message.error('创建对话失败,无法上传附件');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
attachmentState.isUploading = true;
|
|
|
|
|
|
try {
|
|
|
|
|
|
for (const file of files) {
|
|
|
|
|
|
await threadApi.uploadThreadAttachment(threadId, file);
|
|
|
|
|
|
message.success(`${file.name} 上传成功`);
|
|
|
|
|
|
}
|
|
|
|
|
|
await loadThreadAttachments(threadId, { silent: true });
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'upload');
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
attachmentState.isUploading = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleAttachmentRemove = async (fileId) => {
|
|
|
|
|
|
if (!fileId || !currentChatId.value) return;
|
|
|
|
|
|
try {
|
|
|
|
|
|
await threadApi.deleteThreadAttachment(currentChatId.value, fileId);
|
|
|
|
|
|
await loadThreadAttachments(currentChatId.value, { silent: true });
|
|
|
|
|
|
message.success('附件已删除');
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'delete');
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// ==================== 审批功能管理 ====================
|
|
|
|
|
|
const { approvalState, handleApproval, processApprovalInStream } = useApproval({
|
|
|
|
|
|
getThreadState,
|
|
|
|
|
|
resetOnGoingConv,
|
|
|
|
|
|
fetchThreadMessages
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 发送消息并处理流式响应
|
2025-10-12 23:45:17 +08:00
|
|
|
|
const sendMessage = async ({ agentId, threadId, text, signal = undefined }) => {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (!agentId || !threadId || !text) {
|
|
|
|
|
|
const error = new Error("Missing agent, thread, or message text");
|
|
|
|
|
|
handleChatError(error, 'send');
|
|
|
|
|
|
return Promise.reject(error);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 如果是新对话,用消息内容作为标题
|
|
|
|
|
|
if ((threadMessages.value[threadId] || []).length === 0) {
|
|
|
|
|
|
updateThread(threadId, text);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const requestData = {
|
|
|
|
|
|
query: text,
|
|
|
|
|
|
config: {
|
|
|
|
|
|
thread_id: threadId,
|
|
|
|
|
|
},
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
2025-10-12 23:45:17 +08:00
|
|
|
|
return await agentApi.sendAgentMessage(agentId, requestData, signal ? { signal } : undefined);
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'send');
|
|
|
|
|
|
throw error;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ==================== CHAT ACTIONS ====================
|
2025-09-16 02:18:34 +08:00
|
|
|
|
// 检查第一个对话是否为空
|
|
|
|
|
|
const isFirstChatEmpty = () => {
|
|
|
|
|
|
if (threads.value.length === 0) return false;
|
|
|
|
|
|
const firstThread = threads.value[0];
|
|
|
|
|
|
const firstThreadMessages = threadMessages.value[firstThread.id] || [];
|
|
|
|
|
|
return firstThreadMessages.length === 0;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 如果第一个对话为空,直接切换到第一个对话
|
|
|
|
|
|
const switchToFirstChatIfEmpty = async () => {
|
|
|
|
|
|
if (threads.value.length > 0 && isFirstChatEmpty()) {
|
|
|
|
|
|
await selectChat(threads.value[0].id);
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
return false;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const createNewChat = async () => {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
if (!AgentValidator.validateAgentId(currentAgentId.value, '创建对话') || chatUIStore.creatingNewChat) return;
|
2025-09-16 02:18:34 +08:00
|
|
|
|
|
|
|
|
|
|
// 如果第一个对话为空,直接切换到第一个对话而不是创建新对话
|
|
|
|
|
|
if (await switchToFirstChatIfEmpty()) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 只有当当前对话是第一个对话且为空时,才阻止创建新对话
|
|
|
|
|
|
const currentThreadIndex = threads.value.findIndex(thread => thread.id === currentChatId.value);
|
|
|
|
|
|
if (currentChatId.value && conversations.value.length === 0 && currentThreadIndex === 0) return;
|
2025-04-02 22:20:56 +08:00
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
chatUIStore.creatingNewChat = true;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const newThread = await createThread(currentAgentId.value, '新的对话');
|
|
|
|
|
|
if (newThread) {
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// 中断之前线程的流式输出(如果存在)
|
|
|
|
|
|
const previousThreadId = chatState.currentThreadId;
|
|
|
|
|
|
if (previousThreadId) {
|
|
|
|
|
|
const previousThreadState = getThreadState(previousThreadId);
|
|
|
|
|
|
if (previousThreadState?.isStreaming && previousThreadState.streamAbortController) {
|
|
|
|
|
|
previousThreadState.streamAbortController.abort();
|
|
|
|
|
|
previousThreadState.isStreaming = false;
|
|
|
|
|
|
previousThreadState.streamAbortController = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
chatState.currentThreadId = newThread.id;
|
|
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
handleChatError(error, 'create');
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} finally {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
chatUIStore.creatingNewChat = false;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const selectChat = async (chatId) => {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (!AgentValidator.validateAgentIdWithError(currentAgentId.value, '选择对话', handleValidationError)) return;
|
|
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// 中断之前线程的流式输出(如果存在)
|
|
|
|
|
|
const previousThreadId = chatState.currentThreadId;
|
|
|
|
|
|
if (previousThreadId && previousThreadId !== chatId) {
|
|
|
|
|
|
const previousThreadState = getThreadState(previousThreadId);
|
|
|
|
|
|
if (previousThreadState?.isStreaming && previousThreadState.streamAbortController) {
|
|
|
|
|
|
previousThreadState.streamAbortController.abort();
|
|
|
|
|
|
previousThreadState.isStreaming = false;
|
|
|
|
|
|
previousThreadState.streamAbortController = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
chatState.currentThreadId = chatId;
|
2025-11-08 13:59:56 +08:00
|
|
|
|
chatUIStore.isLoadingMessages = true;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
|
|
|
|
|
await fetchThreadMessages({ agentId: currentAgentId.value, threadId: chatId });
|
2025-11-08 10:51:30 +08:00
|
|
|
|
await loadThreadAttachments(chatId, { silent: true });
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'load');
|
|
|
|
|
|
} finally {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
chatUIStore.isLoadingMessages = false;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-27 11:52:49 +08:00
|
|
|
|
await nextTick();
|
|
|
|
|
|
scrollController.scrollToBottomStaticForce();
|
2025-03-31 22:32:19 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const deleteChat = async (chatId) => {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (!AgentValidator.validateAgentIdWithError(currentAgentId.value, '删除对话', handleValidationError)) return;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
await deleteThread(chatId);
|
|
|
|
|
|
if (chatState.currentThreadId === chatId) {
|
|
|
|
|
|
chatState.currentThreadId = null;
|
|
|
|
|
|
if (chatsList.value.length > 0) {
|
|
|
|
|
|
await selectChat(chatsList.value[0].id);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
handleChatError(error, 'delete');
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const renameChat = async (data) => {
|
2025-06-06 10:54:48 +08:00
|
|
|
|
let { chatId, title } = data;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (!AgentValidator.validateRenameOperation(chatId, title, currentAgentId.value, handleValidationError)) return;
|
2025-08-25 13:57:47 +08:00
|
|
|
|
if (title.length > 30) title = title.slice(0, 30);
|
|
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
await updateThread(chatId, title);
|
2025-08-25 13:57:47 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'rename');
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
};
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const handleSendMessage = async () => {
|
|
|
|
|
|
const text = userInput.value.trim();
|
|
|
|
|
|
if (!text || !currentAgent.value || isProcessing.value) return;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-11-08 10:51:30 +08:00
|
|
|
|
let threadId = currentChatId.value;
|
|
|
|
|
|
if (!threadId) {
|
|
|
|
|
|
threadId = await ensureActiveThread(text);
|
|
|
|
|
|
if (!threadId) {
|
|
|
|
|
|
message.error('创建对话失败,请重试');
|
2025-08-31 14:39:28 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
userInput.value = '';
|
|
|
|
|
|
await nextTick();
|
2025-08-31 14:39:28 +08:00
|
|
|
|
scrollController.scrollToBottom(true);
|
|
|
|
|
|
|
|
|
|
|
|
const threadState = getThreadState(threadId);
|
|
|
|
|
|
if (!threadState) return;
|
|
|
|
|
|
|
|
|
|
|
|
threadState.isStreaming = true;
|
|
|
|
|
|
resetOnGoingConv(threadId);
|
|
|
|
|
|
threadState.streamAbortController = new AbortController();
|
2025-05-15 22:57:23 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const response = await sendMessage({
|
|
|
|
|
|
agentId: currentAgentId.value,
|
|
|
|
|
|
threadId: currentChatId.value,
|
2025-10-12 23:45:17 +08:00
|
|
|
|
text: text,
|
|
|
|
|
|
signal: threadState.streamAbortController?.signal
|
2025-08-31 14:39:28 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const reader = response.body.getReader();
|
|
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
|
|
let buffer = '';
|
2025-10-12 23:45:17 +08:00
|
|
|
|
let stopReading = false;
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-10-12 23:45:17 +08:00
|
|
|
|
while (!stopReading) {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const { done, value } = await reader.read();
|
|
|
|
|
|
if (done) break;
|
|
|
|
|
|
|
|
|
|
|
|
buffer += decoder.decode(value, { stream: true });
|
|
|
|
|
|
const lines = buffer.split('\n');
|
|
|
|
|
|
buffer = lines.pop() || '';
|
|
|
|
|
|
|
|
|
|
|
|
for (const line of lines) {
|
2025-10-12 23:45:17 +08:00
|
|
|
|
const trimmedLine = line.trim();
|
|
|
|
|
|
if (trimmedLine) {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
2025-10-12 23:45:17 +08:00
|
|
|
|
const chunk = JSON.parse(trimmedLine);
|
|
|
|
|
|
if (_processStreamChunk(chunk, threadId)) {
|
|
|
|
|
|
stopReading = true;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (e) { console.warn('Failed to parse stream chunk JSON:', e); }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-12 23:45:17 +08:00
|
|
|
|
if (!stopReading && buffer.trim()) {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
|
|
|
|
|
const chunk = JSON.parse(buffer.trim());
|
2025-10-12 23:45:17 +08:00
|
|
|
|
if (_processStreamChunk(chunk, threadId)) {
|
|
|
|
|
|
stopReading = true;
|
|
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (e) { console.warn('Failed to parse final stream chunk JSON:', e); }
|
|
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (error.name !== 'AbortError') {
|
|
|
|
|
|
handleChatError(error, 'send');
|
|
|
|
|
|
}
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
threadState.isStreaming = false;
|
|
|
|
|
|
threadState.streamAbortController = null;
|
|
|
|
|
|
resetOnGoingConv(threadId);
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-10-06 21:44:17 +08:00
|
|
|
|
// 发送或中断
|
|
|
|
|
|
const handleSendOrStop = async () => {
|
|
|
|
|
|
const threadId = currentChatId.value;
|
|
|
|
|
|
const threadState = getThreadState(threadId);
|
|
|
|
|
|
if (isProcessing.value && threadState && threadState.streamAbortController) {
|
|
|
|
|
|
// 中断生成
|
|
|
|
|
|
threadState.streamAbortController.abort();
|
|
|
|
|
|
|
|
|
|
|
|
// 中断后刷新消息历史,确保显示最新的状态
|
|
|
|
|
|
try {
|
|
|
|
|
|
await fetchThreadMessages({ agentId: currentAgentId.value, threadId: threadId });
|
|
|
|
|
|
message.info('已中断对话生成');
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('刷新消息历史失败:', error);
|
|
|
|
|
|
message.info('已中断对话生成');
|
|
|
|
|
|
}
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
await handleSendMessage();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// ==================== 人工审批处理 ====================
|
|
|
|
|
|
const handleApprovalWithStream = async (approved) => {
|
|
|
|
|
|
console.log('🔄 [STREAM] Starting resume stream processing');
|
|
|
|
|
|
|
|
|
|
|
|
const threadId = approvalState.threadId;
|
|
|
|
|
|
if (!threadId) {
|
|
|
|
|
|
message.error('无效的审批请求');
|
|
|
|
|
|
approvalState.showModal = false;
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const threadState = getThreadState(threadId);
|
|
|
|
|
|
if (!threadState) {
|
|
|
|
|
|
message.error('无法找到对应的对话线程');
|
|
|
|
|
|
approvalState.showModal = false;
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 使用审批 composable 处理审批
|
|
|
|
|
|
const response = await handleApproval(approved, currentAgentId.value);
|
|
|
|
|
|
|
|
|
|
|
|
if (!response) return; // 如果 handleApproval 抛出错误,这里不会执行
|
|
|
|
|
|
|
|
|
|
|
|
console.log('🔄 [STREAM] Processing resume streaming response');
|
|
|
|
|
|
|
|
|
|
|
|
// 处理流式响应
|
|
|
|
|
|
const reader = response.body.getReader();
|
|
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
|
|
let buffer = '';
|
|
|
|
|
|
let stopReading = false;
|
|
|
|
|
|
|
|
|
|
|
|
while (!stopReading) {
|
|
|
|
|
|
const { done, value } = await reader.read();
|
|
|
|
|
|
if (done) break;
|
|
|
|
|
|
|
|
|
|
|
|
buffer += decoder.decode(value, { stream: true });
|
|
|
|
|
|
const lines = buffer.split('\n');
|
|
|
|
|
|
buffer = lines.pop() || '';
|
|
|
|
|
|
|
|
|
|
|
|
for (const line of lines) {
|
|
|
|
|
|
const trimmedLine = line.trim();
|
|
|
|
|
|
if (trimmedLine) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const chunk = JSON.parse(trimmedLine);
|
|
|
|
|
|
console.log('🔄 [STREAM] Processing chunk:', chunk);
|
|
|
|
|
|
|
|
|
|
|
|
// 处理chunk并更新对话 - _processStreamChunk 已经处理了所有必要的逻辑
|
|
|
|
|
|
if (_processStreamChunk(chunk, threadId)) {
|
|
|
|
|
|
stopReading = true;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
console.warn('Failed to parse stream chunk JSON:', e, 'Line:', trimmedLine);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!stopReading && buffer.trim()) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const chunk = JSON.parse(buffer.trim());
|
|
|
|
|
|
console.log('🔄 [STREAM] Processing final chunk:', chunk);
|
|
|
|
|
|
|
|
|
|
|
|
// 处理最终chunk - _processStreamChunk 已经处理了所有必要的逻辑
|
|
|
|
|
|
if (_processStreamChunk(chunk, threadId)) {
|
|
|
|
|
|
stopReading = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
console.warn('Failed to parse final stream chunk JSON:', e);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
console.log('🔄 [STREAM] Resume stream processing completed');
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('❌ [STREAM] Resume stream failed:', error);
|
|
|
|
|
|
if (error.name !== 'AbortError') {
|
|
|
|
|
|
console.error('Resume approval error:', error);
|
|
|
|
|
|
// handleChatError 已在 useApproval 中调用
|
|
|
|
|
|
}
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
console.log('🔄 [STREAM] Cleaning up streaming state');
|
|
|
|
|
|
if (threadState) {
|
|
|
|
|
|
threadState.isStreaming = false;
|
|
|
|
|
|
threadState.streamAbortController = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleApprove = () => {
|
|
|
|
|
|
handleApprovalWithStream(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleReject = () => {
|
|
|
|
|
|
handleApprovalWithStream(false);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== UI HANDLERS ====================
|
|
|
|
|
|
const handleKeyDown = (e) => {
|
|
|
|
|
|
if (e.key === 'Enter' && !e.shiftKey) {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
handleSendMessage();
|
2025-06-27 01:48:09 +08:00
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
};
|
2025-06-27 01:48:09 +08:00
|
|
|
|
|
2025-09-09 20:25:48 +08:00
|
|
|
|
// 处理示例问题点击
|
|
|
|
|
|
const handleExampleClick = (questionText) => {
|
|
|
|
|
|
userInput.value = questionText;
|
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
|
handleSendMessage();
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
const buildExportPayload = () => {
|
2025-11-07 12:28:58 +08:00
|
|
|
|
const agentId = currentAgentId.value;
|
|
|
|
|
|
let agentDescription = '';
|
|
|
|
|
|
if (agentId && agents.value && agents.value.length > 0) {
|
|
|
|
|
|
const agent = agents.value.find(a => a.id === agentId);
|
|
|
|
|
|
agentDescription = agent ? (agent.description || '') : '';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
const payload = {
|
|
|
|
|
|
chatTitle: currentThread.value?.title || '新对话',
|
|
|
|
|
|
agentName: currentAgentName.value || currentAgent.value?.name || '智能助手',
|
2025-11-07 12:28:58 +08:00
|
|
|
|
agentDescription: agentDescription || currentAgent.value?.description || '',
|
2025-10-13 11:12:25 +08:00
|
|
|
|
messages: conversations.value ? JSON.parse(JSON.stringify(conversations.value)) : [],
|
|
|
|
|
|
onGoingMessages: onGoingConvMessages.value ? JSON.parse(JSON.stringify(onGoingConvMessages.value)) : []
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return payload;
|
2025-06-27 01:48:09 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
defineExpose({
|
|
|
|
|
|
getExportPayload: buildExportPayload
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const toggleSidebar = () => {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
chatUIStore.toggleSidebar();
|
2025-03-31 22:32:19 +08:00
|
|
|
|
};
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const openAgentModal = () => emit('open-agent-modal');
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== HELPER FUNCTIONS ====================
|
|
|
|
|
|
const getLastMessage = (conv) => {
|
|
|
|
|
|
if (!conv?.messages?.length) return null;
|
|
|
|
|
|
for (let i = conv.messages.length - 1; i >= 0; i--) {
|
|
|
|
|
|
if (conv.messages[i].type === 'ai') return conv.messages[i];
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
return null;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const showMsgRefs = (msg) => {
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// 如果正在审批中,不显示 refs
|
|
|
|
|
|
if (approvalState.showModal) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 如果当前线程ID与审批线程ID匹配,但审批框已关闭(说明刚刚处理完审批)
|
|
|
|
|
|
// 且当前有新的流式处理正在进行,则不显示之前被中断的消息的 refs
|
|
|
|
|
|
if (approvalState.threadId &&
|
|
|
|
|
|
chatState.currentThreadId === approvalState.threadId &&
|
|
|
|
|
|
!approvalState.showModal &&
|
|
|
|
|
|
isProcessing) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 只有真正完成的消息才显示 refs
|
|
|
|
|
|
if (msg.isLast && msg.status === 'finished') {
|
|
|
|
|
|
return ['copy'];
|
|
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
return false;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== LIFECYCLE & WATCHERS ====================
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const loadChatsList = async () => {
|
|
|
|
|
|
const agentId = currentAgentId.value;
|
|
|
|
|
|
if (!agentId) {
|
|
|
|
|
|
console.warn('No agent selected, cannot load chats list');
|
|
|
|
|
|
threads.value = [];
|
|
|
|
|
|
chatState.currentThreadId = null;
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-04-02 22:20:56 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
await fetchThreads(agentId);
|
|
|
|
|
|
if (currentAgentId.value !== agentId) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 如果当前线程不在线程列表中,清空当前线程
|
|
|
|
|
|
if (chatState.currentThreadId && !threads.value.find(t => t.id === chatState.currentThreadId)) {
|
|
|
|
|
|
chatState.currentThreadId = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 如果有线程但没有选中任何线程,自动选择第一个
|
|
|
|
|
|
if (threads.value.length > 0 && !chatState.currentThreadId) {
|
|
|
|
|
|
await selectChat(threads.value[0].id);
|
2025-08-25 01:46:31 +08:00
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
handleChatError(error, 'load');
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
};
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const initAll = async () => {
|
2025-03-31 22:32:19 +08:00
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (!agentStore.isInitialized) {
|
|
|
|
|
|
await agentStore.initialize();
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
} catch (error) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
handleChatError(error, 'load');
|
2025-04-02 13:00:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
onMounted(async () => {
|
|
|
|
|
|
await initAll();
|
2025-08-27 11:52:49 +08:00
|
|
|
|
scrollController.enableAutoScroll();
|
2025-08-31 12:22:49 +08:00
|
|
|
|
});
|
2025-08-27 11:52:49 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
watch(currentAgentId, async (newAgentId, oldAgentId) => {
|
|
|
|
|
|
if (newAgentId !== oldAgentId) {
|
|
|
|
|
|
// 清理当前线程状态
|
|
|
|
|
|
chatState.currentThreadId = null;
|
|
|
|
|
|
threadMessages.value = {};
|
|
|
|
|
|
// 清理所有线程状态
|
|
|
|
|
|
resetOnGoingConv();
|
|
|
|
|
|
|
|
|
|
|
|
if (newAgentId) {
|
|
|
|
|
|
await loadChatsList();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
threads.value = [];
|
|
|
|
|
|
}
|
2025-08-31 12:22:49 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}, { immediate: true });
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
2025-08-31 12:22:49 +08:00
|
|
|
|
watch(conversations, () => {
|
|
|
|
|
|
if (isProcessing.value) {
|
|
|
|
|
|
scrollController.scrollToBottom();
|
|
|
|
|
|
}
|
|
|
|
|
|
}, { deep: true, flush: 'post' });
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
2025-06-30 22:29:23 +08:00
|
|
|
|
@import '@/assets/css/main.css';
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
|
|
|
|
|
.chat-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
position: relative;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sidebar-backdrop {
|
|
|
|
|
|
display: none; /* 默认隐藏,通过v-if控制显示 */
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
|
|
|
|
z-index: 99;
|
|
|
|
|
|
animation: fadeIn 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.floating-sidebar {
|
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
|
z-index: 100;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
|
|
width: 80% !important;
|
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
|
|
2025-05-18 17:58:27 +08:00
|
|
|
|
&.no-transition {
|
|
|
|
|
|
transition: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
&.collapsed {
|
|
|
|
|
|
transform: translateX(-100%);
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
overflow-y: scroll;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
transition: all 0.3s ease;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
|
|
|
|
|
.chat-header {
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
height: var(--header-height);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
2025-08-08 22:57:14 +08:00
|
|
|
|
padding: 1rem 8px;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-05-15 22:57:23 +08:00
|
|
|
|
.header__left, .header__right, .header__center {
|
2025-03-31 22:32:19 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-examples {
|
|
|
|
|
|
padding: 0 50px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
position: absolute;
|
2025-09-09 20:25:48 +08:00
|
|
|
|
top: 15%;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
z-index: 9;
|
|
|
|
|
|
animation: slideInUp 0.5s ease-out;
|
|
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
|
margin-bottom: 20px;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
font-size: 1.3rem;
|
|
|
|
|
|
color: var(--gray-1000);
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
p {
|
2025-08-09 23:18:19 +08:00
|
|
|
|
font-size: 1.1rem;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
color: var(--gray-700);
|
|
|
|
|
|
}
|
2025-08-09 23:18:19 +08:00
|
|
|
|
|
2025-09-09 20:25:48 +08:00
|
|
|
|
.agent-icons {
|
|
|
|
|
|
height: 180px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.example-questions {
|
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
.example-title {
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
color: var(--gray-600);
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.example-chips {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.example-chip {
|
|
|
|
|
|
padding: 6px 12px;
|
2025-09-11 03:09:17 +08:00
|
|
|
|
background: var(--gray-25);
|
|
|
|
|
|
// border: 1px solid var(--gray-100);
|
2025-09-09 20:25:48 +08:00
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--gray-700);
|
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2025-09-11 03:09:17 +08:00
|
|
|
|
// background: var(--main-25);
|
2025-09-09 20:25:48 +08:00
|
|
|
|
border-color: var(--main-200);
|
|
|
|
|
|
color: var(--main-700);
|
2025-09-11 03:09:17 +08:00
|
|
|
|
box-shadow: 0 0px 4px rgba(0, 0, 0, 0.03);
|
2025-09-09 20:25:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-09 23:18:19 +08:00
|
|
|
|
.inputer-init {
|
2025-09-09 20:25:48 +08:00
|
|
|
|
margin: 20px auto;
|
2025-08-25 13:57:47 +08:00
|
|
|
|
width: 90%;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
max-width: 800px;
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
.chat-loading {
|
|
|
|
|
|
padding: 0 50px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 20%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
z-index: 9;
|
|
|
|
|
|
animation: slideInUp 0.5s ease-out;
|
2025-11-05 09:20:58 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 12px;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
color: var(--gray-700);
|
2025-11-05 09:20:58 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-spinner {
|
|
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
border: 2px solid var(--gray-200);
|
|
|
|
|
|
border-top-color: var(--main-color);
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
animation: spin 0.8s linear infinite;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
.chat-box {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
padding: 1rem 2rem;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
.conv-box {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 4px;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
padding: 4px 2rem 0 2rem;
|
|
|
|
|
|
background: white;
|
2025-10-12 23:45:17 +08:00
|
|
|
|
z-index: 1000;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
|
|
|
|
|
.message-input-wrapper {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
|
|
|
|
.bottom-actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.note {
|
|
|
|
|
|
font-size: small;
|
|
|
|
|
|
color: #ccc;
|
|
|
|
|
|
margin: 4px 0;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.conversation-list::-webkit-scrollbar {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 4px;
|
|
|
|
|
|
height: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.conversation-list::-webkit-scrollbar-track {
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.conversation-list::-webkit-scrollbar-thumb {
|
|
|
|
|
|
background: var(--gray-400);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.conversation-list::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
|
background: rgb(100, 100, 100);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat::-webkit-scrollbar {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 4px;
|
|
|
|
|
|
height: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat::-webkit-scrollbar-track {
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat::-webkit-scrollbar-thumb {
|
|
|
|
|
|
background: var(--gray-400);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
|
background: rgb(100, 100, 100);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
gap: 3px;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots div {
|
2025-08-09 23:18:19 +08:00
|
|
|
|
width: 6px;
|
|
|
|
|
|
height: 6px;
|
|
|
|
|
|
background: linear-gradient(135deg, var(--main-color), var(--main-700));
|
2025-03-31 22:32:19 +08:00
|
|
|
|
border-radius: 50%;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
animation: dotPulse 1.4s infinite ease-in-out both;
|
|
|
|
|
|
box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots div:nth-child(1) {
|
|
|
|
|
|
animation-delay: -0.32s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots div:nth-child(2) {
|
|
|
|
|
|
animation-delay: -0.16s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-09 23:18:19 +08:00
|
|
|
|
.loading-dots div:nth-child(3) {
|
|
|
|
|
|
animation-delay: 0s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-24 00:15:51 +08:00
|
|
|
|
.generating-status {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-start;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
padding: 1rem 0;
|
|
|
|
|
|
animation: fadeInUp 0.4s ease-out;
|
|
|
|
|
|
transition: all 0.2s;
|
2025-06-24 00:15:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.generating-indicator {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
padding: 0.75rem 0rem;
|
2025-06-24 00:15:51 +08:00
|
|
|
|
|
|
|
|
|
|
.generating-text {
|
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
|
color: var(--gray-700);
|
|
|
|
|
|
font-size: 14px;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
letter-spacing: 0.025em;
|
2025-06-24 00:15:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-09 23:18:19 +08:00
|
|
|
|
@keyframes dotPulse {
|
2025-03-31 22:32:19 +08:00
|
|
|
|
0%, 80%, 100% {
|
|
|
|
|
|
transform: scale(0.8);
|
2025-08-09 23:18:19 +08:00
|
|
|
|
opacity: 0.5;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
40% {
|
2025-08-09 23:18:19 +08:00
|
|
|
|
transform: scale(1.1);
|
2025-03-31 22:32:19 +08:00
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-09 23:18:19 +08:00
|
|
|
|
@keyframes shimmer {
|
|
|
|
|
|
0% {
|
|
|
|
|
|
left: -100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
|
|
|
left: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
@keyframes swing-in-top-fwd {
|
|
|
|
|
|
0% {
|
|
|
|
|
|
transform: rotateX(-100deg);
|
|
|
|
|
|
transform-origin: top;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
|
|
|
transform: rotateX(0deg);
|
|
|
|
|
|
transform-origin: top;
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes slideInUp {
|
|
|
|
|
|
from {
|
|
|
|
|
|
transform: translateY(20px);
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
to {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes fadeInUp {
|
|
|
|
|
|
from {
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transform: translateY(10px);
|
|
|
|
|
|
}
|
|
|
|
|
|
to {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes fadeInDown {
|
|
|
|
|
|
from {
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transform: translateY(-10px);
|
|
|
|
|
|
}
|
|
|
|
|
|
to {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
@keyframes fadeIn {
|
|
|
|
|
|
from {
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
to {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
@keyframes spin {
|
|
|
|
|
|
0% {
|
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
@media (max-width: 1800px) {
|
|
|
|
|
|
|
|
|
|
|
|
.chat-header {
|
|
|
|
|
|
background-color: white;
|
|
|
|
|
|
border-bottom: 1px solid var(--gray-100);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.chat-sidebar.collapsed {
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-header {
|
|
|
|
|
|
.header__left {
|
|
|
|
|
|
.text {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
@media (max-width: 520px) {
|
2025-05-15 22:34:32 +08:00
|
|
|
|
.sidebar-backdrop {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
.chat-box {
|
|
|
|
|
|
padding: 1rem 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
|
|
padding: 0.5rem 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-header {
|
2025-08-24 22:32:37 +08:00
|
|
|
|
padding: 0.5rem 0 !important;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
2025-06-22 19:49:42 +08:00
|
|
|
|
.floating-sidebar {
|
2025-05-15 22:34:32 +08:00
|
|
|
|
position: fixed;
|
|
|
|
|
|
z-index: 100;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
|
|
width: 80% !important;
|
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
|
|
|
|
|
|
|
&.collapsed {
|
|
|
|
|
|
transform: translateX(-100%);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hide-text {
|
|
|
|
|
|
display: none;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
</style>
|
2025-10-13 11:12:25 +08:00
|
|
|
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
|
|
div.agent-nav-btn {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
padding: 6px 14px;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
transition: background-color 0.3s;
|
|
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
&:hover:not([disabled]) {
|
2025-10-13 11:12:25 +08:00
|
|
|
|
background-color: var(--gray-50);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
&[disabled] {
|
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
.nav-btn-icon {
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
}
|
2025-11-08 13:59:56 +08:00
|
|
|
|
|
|
|
|
|
|
.loading-icon {
|
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
|
from {
|
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
to {
|
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
|
}
|
2025-10-13 11:12:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|