2025-05-15 22:34:32 +08:00
|
|
|
<template>
|
2025-05-18 17:58:27 +08:00
|
|
|
<div class="chat-sidebar" :class="{'sidebar-open': isSidebarOpen, 'no-transition': isInitialRender}">
|
2025-05-15 22:34:32 +08:00
|
|
|
<div class="sidebar-header">
|
|
|
|
|
<div class="header-title">{{ currentAgentId }}</div>
|
|
|
|
|
<div class="header-actions">
|
|
|
|
|
<div class="toggle-sidebar nav-btn" v-if="isSidebarOpen" @click="toggleCollapse">
|
|
|
|
|
<img src="@/assets/icons/sidebar_left.svg" class="iconfont icon-20" alt="设置" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="conversation-list-top">
|
|
|
|
|
<a-button type="text" @click="createNewChat" class="new-chat-btn">
|
|
|
|
|
<PlusCircleOutlined /> 新对话
|
|
|
|
|
</a-button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="conversation-list">
|
|
|
|
|
<a-spin v-if="loading" />
|
|
|
|
|
<template v-else>
|
|
|
|
|
<div
|
|
|
|
|
v-for="chat in chatsList"
|
|
|
|
|
:key="chat.id"
|
|
|
|
|
class="conversation-item"
|
|
|
|
|
:class="{ 'active': currentChatId === chat.id }"
|
|
|
|
|
@click="selectChat(chat.id)"
|
|
|
|
|
>
|
|
|
|
|
<div class="conversation-info">
|
|
|
|
|
<div class="conversation-title">{{ chat.title || '新对话' }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="conversation-actions">
|
|
|
|
|
<a-dropdown :trigger="['click']" @click.stop>
|
|
|
|
|
<template #overlay>
|
|
|
|
|
<a-menu>
|
|
|
|
|
<a-menu-item key="rename" @click.stop="renameChat(chat.id)">
|
|
|
|
|
<EditOutlined /> 重命名
|
|
|
|
|
</a-menu-item>
|
|
|
|
|
<a-menu-item key="delete" @click.stop="deleteChat(chat.id)" v-if="chat.id !== currentChatId">
|
|
|
|
|
<DeleteOutlined /> 删除
|
|
|
|
|
</a-menu-item>
|
|
|
|
|
</a-menu>
|
|
|
|
|
</template>
|
|
|
|
|
<a-button type="text" class="more-btn" @click.stop>
|
|
|
|
|
<MoreOutlined />
|
|
|
|
|
</a-button>
|
|
|
|
|
</a-dropdown>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="chatsList.length === 0" class="empty-list">
|
|
|
|
|
暂无对话历史
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import { ref, computed, onMounted, watch, h } from 'vue';
|
|
|
|
|
import {
|
|
|
|
|
PlusCircleOutlined,
|
|
|
|
|
DeleteOutlined,
|
|
|
|
|
EditOutlined,
|
|
|
|
|
MoreOutlined
|
|
|
|
|
} from '@ant-design/icons-vue';
|
|
|
|
|
import { message, Modal } from 'ant-design-vue';
|
|
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
currentAgentId: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: null
|
|
|
|
|
},
|
|
|
|
|
currentChatId: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: null
|
|
|
|
|
},
|
|
|
|
|
chatsList: {
|
|
|
|
|
type: Array,
|
|
|
|
|
default: () => []
|
|
|
|
|
},
|
|
|
|
|
isSidebarOpen: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
2025-05-18 17:58:27 +08:00
|
|
|
},
|
|
|
|
|
isInitialRender: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
2025-05-15 22:34:32 +08:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const emit = defineEmits(['create-chat', 'select-chat', 'delete-chat', 'rename-chat', 'toggle-sidebar']);
|
|
|
|
|
|
|
|
|
|
// 状态变量
|
|
|
|
|
const loading = ref(false);
|
|
|
|
|
|
|
|
|
|
// 创建新对话
|
|
|
|
|
const createNewChat = () => {
|
|
|
|
|
emit('create-chat');
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 选择对话
|
|
|
|
|
const selectChat = (chatId) => {
|
|
|
|
|
emit('select-chat', chatId);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 删除对话
|
|
|
|
|
const deleteChat = (chatId) => {
|
|
|
|
|
emit('delete-chat', chatId);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 重命名对话
|
|
|
|
|
const renameChat = async (chatId) => {
|
|
|
|
|
try {
|
|
|
|
|
// 找到当前对话
|
|
|
|
|
const chat = props.chatsList.find(c => c.id === chatId);
|
|
|
|
|
if (!chat) return;
|
|
|
|
|
|
|
|
|
|
// 获取新标题
|
|
|
|
|
let newTitle = '';
|
|
|
|
|
let modalInstance = null;
|
|
|
|
|
|
|
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
|
modalInstance = Modal.confirm({
|
|
|
|
|
title: '重命名对话',
|
|
|
|
|
content: h('div', {}, [
|
|
|
|
|
h('input', {
|
|
|
|
|
value: chat.title,
|
|
|
|
|
style: { width: '100%', marginTop: '10px' },
|
|
|
|
|
onInput: (e) => { newTitle = e.target.value; }
|
|
|
|
|
})
|
|
|
|
|
]),
|
|
|
|
|
okText: '确认',
|
|
|
|
|
cancelText: '取消',
|
|
|
|
|
onOk: () => {
|
|
|
|
|
resolve();
|
|
|
|
|
},
|
|
|
|
|
onCancel: () => {
|
|
|
|
|
reject();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 确保有标题
|
|
|
|
|
if (!newTitle.trim()) {
|
|
|
|
|
message.warning('标题不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 通知父组件
|
|
|
|
|
emit('rename-chat', { chatId, title: newTitle });
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('重命名对话失败:', error);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 折叠侧边栏
|
|
|
|
|
const toggleCollapse = () => {
|
|
|
|
|
emit('toggle-sidebar');
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.chat-sidebar {
|
2025-05-18 17:58:27 +08:00
|
|
|
width: 0;
|
2025-05-15 22:34:32 +08:00
|
|
|
height: 100%;
|
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-05-18 17:58:27 +08:00
|
|
|
border: none;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
&.no-transition {
|
|
|
|
|
transition: none !important;
|
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
2025-05-18 17:58:27 +08:00
|
|
|
&.sidebar-open {
|
|
|
|
|
width: 280px;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
border-right: 1px solid #e8e8e8;
|
2025-05-15 22:34:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-header {
|
|
|
|
|
height: var(--header-height);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
border-bottom: 1px solid #e8e8e8;
|
|
|
|
|
|
|
|
|
|
.header-title {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-list-top {
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
|
|
.new-chat-btn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
height: fit-content;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background-color: var(--gray-300);
|
|
|
|
|
color: var(--main-color);
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: var(--gray-400);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-list {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
|
|
.conversation-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 4px 16px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
|
|
|
|
|
.conversation-actions {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
background-color: var(--gray-300);
|
|
|
|
|
|
|
|
|
|
.conversation-title {
|
|
|
|
|
color: var(--main-700);
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-info {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
|
|
.conversation-title {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-time {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-actions {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
|
|
|
|
|
|
.more-btn {
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--main-500);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 100px;
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 滚动条美化
|
|
|
|
|
.conversation-list::-webkit-scrollbar {
|
|
|
|
|
width: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-list::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-list::-webkit-scrollbar-thumb {
|
|
|
|
|
background: var(--gray-300);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.conversation-list::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: var(--gray-400);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
|
.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 {
|
|
|
|
|
background-color: var(--main-light-3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-btn-icon {
|
|
|
|
|
width: 1.5rem;
|
|
|
|
|
height: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|