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"
|
|
|
|
|
|
:is-sidebar-open="state.isSidebarOpen"
|
2025-05-18 17:58:27 +08:00
|
|
|
|
:is-initial-render="state.isInitialRender"
|
2025-08-11 21:29:33 +08:00
|
|
|
|
:single-mode="props.singleMode"
|
|
|
|
|
|
:agents="agents"
|
2025-08-25 01:46:31 +08:00
|
|
|
|
:selected-agent-id="agentStore.selectedAgentId"
|
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,
|
|
|
|
|
|
'sidebar-open': state.isSidebarOpen,
|
|
|
|
|
|
'no-transition': state.isInitialRender,
|
|
|
|
|
|
'collapsed': isSmallContainer && !state.isSidebarOpen
|
|
|
|
|
|
}"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
/>
|
|
|
|
|
|
<div class="sidebar-backdrop" v-if="state.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-05-15 22:34:32 +08:00
|
|
|
|
<div class="toggle-sidebar nav-btn" v-if="!state.isSidebarOpen" @click="toggleSidebar">
|
2025-05-20 20:49:50 +08:00
|
|
|
|
<PanelLeftOpen size="20" color="var(--gray-800)"/>
|
2025-05-15 22:34:32 +08:00
|
|
|
|
</div>
|
2025-08-10 21:58:41 +08:00
|
|
|
|
<div class="newchat nav-btn" v-if="!state.isSidebarOpen" @click="createNewChat" :disabled="state.isProcessingRequest || state.creatingNewChat">
|
2025-08-10 16:08:10 +08:00
|
|
|
|
<MessageSquarePlus size="20" color="var(--gray-800)"/> <span class="text" :class="{'hide-text': isMediumContainer}">新对话</span>
|
2025-03-31 23:02:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<div class="header__center" @mouseenter="uiState.showRenameButton = true" @mouseleave="uiState.showRenameButton = false">
|
2025-08-27 11:52:49 +08:00
|
|
|
|
<div @click="logConversationInfo" class="center-title">
|
2025-08-25 01:46:31 +08:00
|
|
|
|
{{ agentStore.currentThread?.title }}
|
2025-05-15 22:57:23 +08:00
|
|
|
|
</div>
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<div class="rename-button" v-if="currentChatId" :class="{ 'visible': uiState.showRenameButton }" @click="handleRenameChat">
|
2025-08-10 21:58:41 +08:00
|
|
|
|
<EditOutlined style="font-size: 14px; color: var(--gray-600);"/>
|
|
|
|
|
|
</div>
|
2025-04-02 00:00:04 +08:00
|
|
|
|
<slot name="header-center"></slot>
|
|
|
|
|
|
</div>
|
2025-03-31 23:02:05 +08:00
|
|
|
|
<div class="header__right">
|
2025-06-27 01:48:09 +08:00
|
|
|
|
<!-- 分享按钮 -->
|
|
|
|
|
|
<div class="nav-btn" @click="shareChat" v-if="currentChatId && currentAgent">
|
|
|
|
|
|
<ShareAltOutlined style="font-size: 18px;"/>
|
|
|
|
|
|
</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-08-25 01:46:31 +08:00
|
|
|
|
<div v-if="isLoadingThreads || isLoadingMessages" class="chat-loading">
|
2025-05-15 22:34:32 +08:00
|
|
|
|
<LoadingOutlined />
|
|
|
|
|
|
<span>正在加载历史记录...</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
<div v-else-if="!conversations.length" class="chat-examples">
|
2025-03-31 22:32:19 +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-08-25 13:57:47 +08:00
|
|
|
|
:send-button-disabled="!userInput || !currentAgent || isProcessing"
|
2025-08-09 23:18:19 +08:00
|
|
|
|
:placeholder="'输入问题...'"
|
|
|
|
|
|
@send="handleSendMessage"
|
|
|
|
|
|
@keydown="handleKeyDown"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</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
|
|
|
|
:debug-mode="state.debug_mode"
|
|
|
|
|
|
:show-refs="showMsgRefs(message)"
|
|
|
|
|
|
@retry="retryMessage(message)"
|
|
|
|
|
|
>
|
|
|
|
|
|
</AgentMessageComponent>
|
2025-06-24 00:15:51 +08:00
|
|
|
|
<!-- 显示对话最后一个消息使用的模型 -->
|
|
|
|
|
|
<RefsComponent
|
2025-08-25 13:57:47 +08:00
|
|
|
|
v-if="getLastMessage(conv) && conv.status !== 'streaming'"
|
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-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-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-08-25 13:57:47 +08:00
|
|
|
|
:send-button-disabled="!userInput || !currentAgent || isProcessing"
|
2025-03-31 22:32:19 +08:00
|
|
|
|
:placeholder="'输入问题...'"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
@send="handleSendMessage"
|
2025-03-31 22:32:19 +08:00
|
|
|
|
@keydown="handleKeyDown"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<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-08-25 13:57:47 +08:00
|
|
|
|
import { ref, reactive, onMounted, watch, nextTick, computed, onUnmounted, h } from 'vue';
|
2025-08-10 21:58:41 +08:00
|
|
|
|
import { ShareAltOutlined, LoadingOutlined, EditOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
|
import { message, Modal } from 'ant-design-vue';
|
2025-03-31 22:32:19 +08:00
|
|
|
|
import MessageInputComponent from '@/components/MessageInputComponent.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-05-20 20:49:50 +08:00
|
|
|
|
import { PanelLeftOpen, MessageSquarePlus } from 'lucide-vue-next';
|
2025-08-25 13:57:47 +08:00
|
|
|
|
import { ChatExporter } from '@/utils/chatExporter';
|
|
|
|
|
|
import { ErrorHandler, handleChatError, handleValidationError } from '@/utils/errorHandler';
|
|
|
|
|
|
import { ScrollController } from '@/utils/scrollController';
|
|
|
|
|
|
import { AgentValidator } from '@/utils/agentValidator';
|
2025-08-25 01:46:31 +08:00
|
|
|
|
import { useAgentStore } from '@/stores/agent';
|
|
|
|
|
|
import { storeToRefs } from 'pinia';
|
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-25 13:57:47 +08:00
|
|
|
|
state: { type: Object, default: () => ({}) },
|
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();
|
|
|
|
|
|
const {
|
|
|
|
|
|
agents,
|
|
|
|
|
|
currentAgentThreads,
|
|
|
|
|
|
currentThread,
|
|
|
|
|
|
isLoadingThreads,
|
|
|
|
|
|
isLoadingMessages,
|
2025-08-25 13:57:47 +08:00
|
|
|
|
conversations, // New getter from store
|
|
|
|
|
|
isStreaming, // New state from store
|
2025-08-25 01:46:31 +08:00
|
|
|
|
} = storeToRefs(agentStore);
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== LOCAL UI STATE ====================
|
|
|
|
|
|
const userInput = ref('');
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const state = reactive({
|
|
|
|
|
|
...props.state,
|
|
|
|
|
|
debug_mode: computed(() => props.state.debug_mode ?? false),
|
2025-08-24 18:54:54 +08:00
|
|
|
|
isSidebarOpen: localStorage.getItem('chat_sidebar_open', 'true') === 'true',
|
2025-05-18 17:58:27 +08:00
|
|
|
|
creatingNewChat: false,
|
|
|
|
|
|
isInitialRender: true
|
2025-05-15 22:34:32 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const uiState = reactive({
|
|
|
|
|
|
showRenameButton: false,
|
|
|
|
|
|
containerWidth: 0,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// ==================== COMPUTED PROPERTIES ====================
|
|
|
|
|
|
const currentAgent = computed(() => agentStore.selectedAgent);
|
|
|
|
|
|
const currentChatId = computed(() => agentStore.currentThreadId);
|
|
|
|
|
|
const chatsList = computed(() => currentAgentThreads.value || []);
|
|
|
|
|
|
const isProcessing = computed(() => isStreaming.value || state.creatingNewChat);
|
|
|
|
|
|
const isSmallContainer = computed(() => uiState.containerWidth <= 520);
|
|
|
|
|
|
const isMediumContainer = computed(() => uiState.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-08-25 13:57:47 +08:00
|
|
|
|
uiState.containerWidth = chatContainerRef.value.offsetWidth;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
resizeObserver = new ResizeObserver(entries => {
|
|
|
|
|
|
for (let entry of entries) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
uiState.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-08-25 13:57:47 +08:00
|
|
|
|
setTimeout(() => { state.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-25 01:46:31 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== CHAT ACTIONS (DELEGATE TO STORE) ====================
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
const createNewChat = async () => {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
if (!AgentValidator.validateAgentId(agentStore.selectedAgentId, '创建对话') || isProcessing.value) return;
|
|
|
|
|
|
if (currentChatId.value && conversations.value.length === 0) return;
|
2025-04-02 22:20:56 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
state.creatingNewChat = true;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
await agentStore.createThread(agentStore.selectedAgentId, '新的对话');
|
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 {
|
|
|
|
|
|
state.creatingNewChat = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const selectChat = async (chatId) => {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
if (!AgentValidator.validateAgentIdWithError(agentStore.selectedAgentId, '选择对话', handleValidationError)) return;
|
2025-08-25 01:46:31 +08:00
|
|
|
|
agentStore.selectThread(chatId);
|
2025-08-25 13:57:47 +08:00
|
|
|
|
await agentStore.fetchThreadMessages(chatId);
|
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-25 13:57:47 +08:00
|
|
|
|
if (!AgentValidator.validateAgentIdWithError(agentStore.selectedAgentId, '删除对话', handleValidationError)) return;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-25 01:46:31 +08:00
|
|
|
|
await agentStore.deleteThread(chatId);
|
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-25 13:57:47 +08:00
|
|
|
|
if (!AgentValidator.validateRenameOperation(chatId, title, agentStore.selectedAgentId, handleValidationError)) return;
|
|
|
|
|
|
if (title.length > 30) title = title.slice(0, 30);
|
|
|
|
|
|
try {
|
|
|
|
|
|
await agentStore.updateThread(chatId, title);
|
|
|
|
|
|
} 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-08-25 13:57:47 +08:00
|
|
|
|
userInput.value = '';
|
|
|
|
|
|
// Enable auto scroll before sending message to ensure proper scrolling during streaming
|
|
|
|
|
|
await nextTick();
|
|
|
|
|
|
await scrollController.scrollToBottom(true);
|
2025-05-15 22:57:23 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
await agentStore.sendMessage(text);
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// Error is already handled in the store, but you could add UI feedback here if needed
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== UI HANDLERS ====================
|
|
|
|
|
|
|
2025-08-10 21:58:41 +08:00
|
|
|
|
const handleRenameChat = () => {
|
2025-08-25 01:46:31 +08:00
|
|
|
|
if (!currentChatId.value || !currentThread.value) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
handleValidationError('请先选择对话');
|
2025-08-10 21:58:41 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-08-25 01:46:31 +08:00
|
|
|
|
let newTitle = currentThread.value.title;
|
2025-08-10 21:58:41 +08:00
|
|
|
|
Modal.confirm({
|
|
|
|
|
|
title: '重命名对话',
|
|
|
|
|
|
content: h('div', { style: { marginTop: '12px' } }, [
|
|
|
|
|
|
h('input', {
|
|
|
|
|
|
value: newTitle,
|
|
|
|
|
|
style: { width: '100%', padding: '4px 8px', border: '1px solid #d9d9d9', borderRadius: '4px' },
|
|
|
|
|
|
onInput: (e) => { newTitle = e.target.value; }
|
|
|
|
|
|
})
|
|
|
|
|
|
]),
|
|
|
|
|
|
okText: '确认',
|
|
|
|
|
|
cancelText: '取消',
|
2025-08-25 13:57:47 +08:00
|
|
|
|
onOk: () => renameChat({ chatId: currentChatId.value, title: newTitle }),
|
2025-08-10 21:58:41 +08:00
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
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-08-25 13:57:47 +08:00
|
|
|
|
const shareChat = async () => {
|
|
|
|
|
|
if (!AgentValidator.validateShareOperation(currentChatId.value, currentAgent.value, handleValidationError)) return;
|
2025-06-27 01:48:09 +08:00
|
|
|
|
try {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const result = await ChatExporter.exportToHTML({
|
|
|
|
|
|
chatTitle: agentStore.currentThread?.title || '新对话',
|
|
|
|
|
|
agentName: currentAgent.value?.name || '智能助手',
|
|
|
|
|
|
agentDescription: currentAgent.value?.description || '',
|
|
|
|
|
|
messages: conversations.value, // Use the getter from store
|
|
|
|
|
|
onGoingMessages: [] // This is now part of conversations
|
|
|
|
|
|
});
|
|
|
|
|
|
message.success(`对话已导出为HTML文件: ${result.filename}`);
|
2025-06-27 01:48:09 +08:00
|
|
|
|
} catch (error) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
handleChatError(error, 'export');
|
2025-06-27 01:48:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const retryMessage = (msg) => { /* TODO */ };
|
2025-06-27 01:48:09 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const toggleSidebar = () => {
|
|
|
|
|
|
state.isSidebarOpen = !state.isSidebarOpen;
|
|
|
|
|
|
localStorage.setItem('chat_sidebar_open', state.isSidebarOpen);
|
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-27 11:52:49 +08:00
|
|
|
|
// ==================== CONVERSATION INFO LOGGING ====================
|
|
|
|
|
|
|
|
|
|
|
|
const logConversationInfo = () => {
|
|
|
|
|
|
console.log(agentStore.currentThread);
|
|
|
|
|
|
|
|
|
|
|
|
// 输出对话历史消息
|
|
|
|
|
|
console.group('📜 对话历史消息');
|
|
|
|
|
|
console.log('原始消息数组:', agentStore.currentThreadMessages);
|
|
|
|
|
|
console.log('消息总数:', agentStore.currentThreadMessages.length);
|
|
|
|
|
|
console.groupEnd();
|
|
|
|
|
|
|
|
|
|
|
|
// 输出流式对话状态
|
|
|
|
|
|
if (agentStore.isStreaming || agentStore.onGoingConvMessages.length > 0) {
|
|
|
|
|
|
console.log('进行中的消息:', agentStore.onGoingConvMessages);
|
|
|
|
|
|
console.log('消息块:', agentStore.onGoingConv.msgChunks);
|
|
|
|
|
|
console.groupEnd();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
console.groupEnd();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== HELPER FUNCTIONS ====================
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
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) => {
|
|
|
|
|
|
if (msg.isLast) return ['copy'];
|
|
|
|
|
|
return false;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== LIFECYCLE & WATCHERS ====================
|
2025-04-02 22:20:56 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const initAll = async () => {
|
|
|
|
|
|
try {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
if (!agentStore.isInitialized) {
|
2025-08-25 01:46:31 +08:00
|
|
|
|
await agentStore.initialize();
|
|
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
await loadChatsList();
|
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-05-15 22:34:32 +08:00
|
|
|
|
const loadChatsList = async () => {
|
2025-03-31 22:32:19 +08:00
|
|
|
|
try {
|
2025-08-31 12:22:49 +08:00
|
|
|
|
const agentId = agentStore.selectedAgentId;
|
|
|
|
|
|
if (!AgentValidator.validateLoadOperation(agentId, '加载对话列表')) return;
|
|
|
|
|
|
|
|
|
|
|
|
await agentStore.fetchThreads(agentId);
|
|
|
|
|
|
|
|
|
|
|
|
// If selected agent changed during fetch, abort. The watcher will trigger a new load.
|
|
|
|
|
|
if (agentStore.selectedAgentId !== agentId) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-25 01:46:31 +08:00
|
|
|
|
if (currentAgentThreads.value && currentAgentThreads.value.length > 0) {
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const threadToSelect = currentAgentThreads.value[0].id;
|
|
|
|
|
|
agentStore.selectThread(threadToSelect);
|
|
|
|
|
|
await agentStore.fetchThreadMessages(threadToSelect);
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
await createNewChat();
|
|
|
|
|
|
}
|
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 12:22:49 +08:00
|
|
|
|
watch(() => agentStore.selectedAgentId, (newAgentId, oldAgentId) => {
|
|
|
|
|
|
if (newAgentId && newAgentId !== oldAgentId) {
|
|
|
|
|
|
loadChatsList();
|
|
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
});
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-31 12:22:49 +08:00
|
|
|
|
// 只监听streaming状态,用于流式消息的智能滚动
|
|
|
|
|
|
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;
|
|
|
|
|
|
background-color: white;
|
|
|
|
|
|
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-07-30 11:00:50 +08:00
|
|
|
|
border-bottom: 1px solid var(--main-20);
|
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;
|
|
|
|
|
|
}
|
2025-05-15 22:57:23 +08:00
|
|
|
|
|
2025-08-10 21:58:41 +08:00
|
|
|
|
.header__center {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
2025-08-11 21:29:33 +08:00
|
|
|
|
|
2025-08-10 21:58:41 +08:00
|
|
|
|
.center-title {
|
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
2025-08-11 21:29:33 +08:00
|
|
|
|
|
2025-08-10 21:58:41 +08:00
|
|
|
|
.rename-button {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 24px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: all 0.2s ease;
|
2025-08-11 21:29:33 +08:00
|
|
|
|
|
2025-08-10 21:58:41 +08:00
|
|
|
|
&.visible {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
2025-08-11 21:29:33 +08:00
|
|
|
|
|
2025-08-10 21:58:41 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
background-color: var(--gray-100);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-05-15 22:57:23 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-btn {
|
|
|
|
|
|
height: 2.5rem;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
|
transition: background-color 0.3s;
|
|
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2025-07-30 11:00:50 +08:00
|
|
|
|
background-color: var(--main-20);
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-btn-icon {
|
|
|
|
|
|
width: 1.5rem;
|
|
|
|
|
|
height: 1.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-examples {
|
|
|
|
|
|
padding: 0 50px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 20%;
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
.inputer-init {
|
|
|
|
|
|
margin: 40px 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;
|
|
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
color: var(--gray-700);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
.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-05-15 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
.toggle-sidebar {
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
&.nav-btn {
|
|
|
|
|
|
height: 2.5rem;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
|
transition: background-color 0.3s;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2025-07-30 11:00:50 +08:00
|
|
|
|
background-color: var(--main-20);
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-btn-icon {
|
|
|
|
|
|
width: 1.5rem;
|
|
|
|
|
|
height: 1.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
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-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
|
|
|
|
|
|
|
|
|
|
.nav-btn {
|
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
|
padding: 0.4rem 0.8rem !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
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>
|