重构工具调用结果展示组件,将原有单一组件拆分为多个专用工具组件,包括网页搜索、知识库、知识图谱、计算器、待办事项和图片工具。新增BaseToolCall基础组件提供统一布局和交互,ToolCallRenderer组件负责动态渲染不同类型工具结果。优化样式和交互体验,支持折叠展开和参数展示。 新增ImageTool、CalculatorTool、WebSearchTool、TodoListTool、KnowledgeGraphTool和KnowledgeBaseTool等专用工具组件,各组件独立处理对应类型的数据展示逻辑。删除旧版ToolResultRenderer组件,迁移至新架构。 同时更新AgentMessageComponent和AgentPopover组件,适配新的工具调用展示架构,改进文件预览弹窗的下载功能和Markdown支持。
622 lines
13 KiB
Vue
622 lines
13 KiB
Vue
<template>
|
|
<a-popover
|
|
v-model:open="visible"
|
|
:title="null"
|
|
placement="bottomRight"
|
|
trigger="click"
|
|
:overlayStyle="{ width: '400px', zIndex: 999 }"
|
|
>
|
|
<template #content>
|
|
<div class="popover-content">
|
|
<div class="tabs">
|
|
<button
|
|
class="tab"
|
|
:class="{ active: activeTab === 'todos' }"
|
|
@click="activeTab = 'todos'"
|
|
v-if="hasTodos"
|
|
>
|
|
任务 ({{ todoCount }})
|
|
</button>
|
|
<button
|
|
class="tab"
|
|
:class="{ active: activeTab === 'files' }"
|
|
@click="activeTab = 'files'"
|
|
v-if="hasFiles"
|
|
>
|
|
文件 ({{ fileCount }})
|
|
</button>
|
|
<a-button type="text" class="refresh-btn" @click="emitRefresh">刷新</a-button>
|
|
</div>
|
|
<div class="tab-content">
|
|
<!-- Todo Display -->
|
|
<div v-if="activeTab === 'todos'" class="todo-display">
|
|
<div v-if="!todos.length" class="empty">
|
|
暂无任务
|
|
</div>
|
|
<div v-else class="todo-list">
|
|
<div
|
|
v-for="(todo, index) in todos"
|
|
:key="index"
|
|
class="todo-item"
|
|
>
|
|
<div class="todo-status">
|
|
<CheckCircleOutlined v-if="todo.status === 'completed'" class="icon completed" />
|
|
<SyncOutlined v-else-if="todo.status === 'in_progress'" class="icon in-progress" spin />
|
|
<ClockCircleOutlined v-else-if="todo.status === 'pending'" class="icon pending" />
|
|
<CloseCircleOutlined v-else-if="todo.status === 'cancelled'" class="icon cancelled" />
|
|
<QuestionCircleOutlined v-else class="icon unknown" />
|
|
</div>
|
|
<span class="todo-text">{{ todo.content }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Files Display -->
|
|
<div v-if="activeTab === 'files'" class="files-display">
|
|
<div v-if="!fileCount" class="empty">
|
|
暂无文件
|
|
</div>
|
|
<div v-else class="file-list">
|
|
<div
|
|
v-for="(fileItem, index) in normalizedFiles"
|
|
:key="fileItem.path || index"
|
|
class="file-item"
|
|
@click="showFileContent(fileItem.path, fileItem)"
|
|
>
|
|
<div class="file-info">
|
|
<div class="file-content-wrapper">
|
|
<div class="file-name">{{ getFileName(fileItem) }}</div>
|
|
<div class="file-time" v-if="fileItem.modified_at">
|
|
{{ formatDate(fileItem.modified_at) }}
|
|
</div>
|
|
</div>
|
|
<button
|
|
class="download-btn"
|
|
@click.stop="downloadFile(fileItem)"
|
|
title="下载文件"
|
|
>
|
|
<Download :size="18" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<slot></slot>
|
|
</a-popover>
|
|
|
|
<!-- 文件内容 Modal -->
|
|
<a-modal
|
|
v-model:open="modalVisible"
|
|
width="80%"
|
|
:footer="null"
|
|
@cancel="closeModal"
|
|
>
|
|
<template #title>
|
|
<div class="modal-header-title">
|
|
<span class="file-path-title">{{ currentFilePath }}</span>
|
|
<a-button type="text" size="small" @click="downloadFile(currentFile)" v-if="currentFile">
|
|
<template #icon><DownloadOutlined /></template>
|
|
下载
|
|
</a-button>
|
|
</div>
|
|
</template>
|
|
<div class="file-content">
|
|
<template v-if="isMarkdown">
|
|
<MdPreview
|
|
:modelValue="formatContent(currentFile?.content)"
|
|
:theme="theme"
|
|
previewTheme="github"
|
|
/>
|
|
</template>
|
|
<template v-else>
|
|
<pre v-if="Array.isArray(currentFile?.content)">{{ formatContent(currentFile.content) }}</pre>
|
|
<div v-else-if="typeof currentFile?.content === 'string'">{{ currentFile.content }}</div>
|
|
<pre v-else>{{ JSON.stringify(currentFile, null, 2) }}</pre>
|
|
</template>
|
|
</div>
|
|
</a-modal>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { computed, ref, watch } from 'vue';
|
|
import { Download } from 'lucide-vue-next';
|
|
import {
|
|
CheckCircleOutlined,
|
|
SyncOutlined,
|
|
ClockCircleOutlined,
|
|
CloseCircleOutlined,
|
|
QuestionCircleOutlined,
|
|
DownloadOutlined
|
|
} from '@ant-design/icons-vue'
|
|
import { MdPreview } from 'md-editor-v3'
|
|
import 'md-editor-v3/lib/preview.css';
|
|
import { useThemeStore } from '@/stores/theme'
|
|
|
|
const props = defineProps({
|
|
visible: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
agentState: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
});
|
|
|
|
const emit = defineEmits(['update:visible', 'refresh']);
|
|
|
|
const activeTab = ref('todos');
|
|
const modalVisible = ref(false);
|
|
const currentFile = ref(null);
|
|
const currentFilePath = ref('');
|
|
|
|
const themeStore = useThemeStore();
|
|
const theme = computed(() => themeStore.isDark ? 'dark' : 'light');
|
|
|
|
const isMarkdown = computed(() => {
|
|
return currentFilePath.value?.toLowerCase().endsWith('.md');
|
|
});
|
|
|
|
// 计算属性
|
|
const visible = computed({
|
|
get: () => props.visible,
|
|
set: (value) => emit('update:visible', value)
|
|
});
|
|
|
|
const todos = computed(() => {
|
|
return props.agentState?.todos || [];
|
|
});
|
|
|
|
const files = computed(() => {
|
|
return props.agentState?.files || [];
|
|
});
|
|
|
|
const hasTodos = computed(() => {
|
|
return todos.value.length > 0;
|
|
});
|
|
|
|
const hasFiles = computed(() => {
|
|
return files.value.length > 0;
|
|
});
|
|
|
|
const todoCount = computed(() => {
|
|
return todos.value.length;
|
|
});
|
|
|
|
// 适配实际数据格式
|
|
const normalizedFiles = computed(() => {
|
|
if (!Array.isArray(files.value)) return [];
|
|
|
|
const result = [];
|
|
files.value.forEach(item => {
|
|
if (typeof item === 'object' && item !== null) {
|
|
Object.entries(item).forEach(([filePath, fileData]) => {
|
|
result.push({
|
|
path: filePath,
|
|
...fileData
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
return result;
|
|
});
|
|
|
|
const fileCount = computed(() => {
|
|
return normalizedFiles.value.length;
|
|
});
|
|
|
|
// 监听 agentState 变化,自动选择有内容的标签
|
|
watch(() => props.agentState, (newState) => {
|
|
if (newState) {
|
|
if (hasFiles.value && !hasTodos.value) {
|
|
activeTab.value = 'files';
|
|
} else {
|
|
activeTab.value = 'todos';
|
|
}
|
|
}
|
|
}, { immediate: true });
|
|
|
|
// 方法
|
|
const getFileName = (fileItem) => {
|
|
if (fileItem.path) {
|
|
return fileItem.path.split('/').pop() || fileItem.path;
|
|
}
|
|
return '未知文件';
|
|
};
|
|
|
|
const formatDate = (dateString) => {
|
|
if (!dateString) return '';
|
|
try {
|
|
const date = new Date(dateString);
|
|
return date.toLocaleString('zh-CN', {
|
|
year: 'numeric',
|
|
month: '2-digit',
|
|
day: '2-digit',
|
|
hour: '2-digit',
|
|
minute: '2-digit'
|
|
});
|
|
} catch (error) {
|
|
return dateString;
|
|
}
|
|
};
|
|
|
|
const formatContent = (contentArray) => {
|
|
if (!Array.isArray(contentArray)) return String(contentArray);
|
|
return contentArray.join('\n');
|
|
};
|
|
|
|
const showFileContent = (filePath, fileData) => {
|
|
currentFilePath.value = filePath;
|
|
currentFile.value = fileData;
|
|
modalVisible.value = true;
|
|
};
|
|
|
|
const closeModal = () => {
|
|
modalVisible.value = false;
|
|
currentFile.value = null;
|
|
currentFilePath.value = '';
|
|
};
|
|
|
|
const downloadFile = (fileItem) => {
|
|
try {
|
|
const content = formatContent(fileItem.content);
|
|
const blob = new Blob([content], { type: 'text/plain;charset=utf-8' });
|
|
const url = URL.createObjectURL(blob);
|
|
const link = document.createElement('a');
|
|
|
|
link.href = url;
|
|
link.download = getFileName(fileItem);
|
|
document.body.appendChild(link);
|
|
link.click();
|
|
document.body.removeChild(link);
|
|
URL.revokeObjectURL(url);
|
|
} catch (error) {
|
|
console.error('下载文件失败:', error);
|
|
}
|
|
};
|
|
|
|
const emitRefresh = () => {
|
|
emit('refresh');
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.popover-content {
|
|
padding: 0;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
border-bottom: 1px solid var(--gray-200);
|
|
position: relative;
|
|
align-items: center;
|
|
}
|
|
|
|
.tab {
|
|
padding: 10px 16px;
|
|
border: none;
|
|
background: none;
|
|
color: var(--gray-600);
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
transition: all 0.15s ease;
|
|
position: relative;
|
|
border-radius: 6px 6px 0 0;
|
|
|
|
&:hover {
|
|
color: var(--main-700);
|
|
}
|
|
|
|
&.active {
|
|
color: var(--main-700);
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -1px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: var(--main-500);
|
|
border-radius: 1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tab-content {
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
|
|
/* 自定义滚动条 */
|
|
&::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: var(--gray-50);
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: var(--gray-300);
|
|
border-radius: 3px;
|
|
|
|
&:hover {
|
|
background: var(--gray-400);
|
|
}
|
|
}
|
|
}
|
|
|
|
.todo-display,
|
|
.files-display {
|
|
padding: 16px 0;
|
|
}
|
|
|
|
.empty {
|
|
text-align: center;
|
|
color: var(--gray-500);
|
|
padding: 40px 0;
|
|
font-size: 14px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
&::before {
|
|
content: '📋';
|
|
font-size: 28px;
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
.todo-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.todo-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
padding: 10px 12px;
|
|
border-radius: 6px;
|
|
border: 1px solid var(--gray-150);
|
|
transition: all 0.15s ease;
|
|
|
|
&:hover {
|
|
background: var(--main-10);
|
|
border-color: var(--gray-200);
|
|
}
|
|
}
|
|
|
|
.todo-status {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 2px;
|
|
|
|
.icon {
|
|
font-size: 16px;
|
|
|
|
&.completed { color: #52c41a; }
|
|
&.in-progress { color: #1890ff; }
|
|
&.pending { color: #faad14; }
|
|
&.cancelled { color: #ff4d4f; }
|
|
&.unknown { color: var(--gray-400); }
|
|
}
|
|
}
|
|
|
|
.todo-text {
|
|
flex: 1;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
color: var(--gray-1000);
|
|
word-break: break-word;
|
|
|
|
.todo-item.completed & {
|
|
color: var(--gray-500);
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
|
|
.file-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.file-item {
|
|
padding: 8px 12px;
|
|
background: var(--gray-0);
|
|
border: 1px solid var(--gray-150);
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
background: var(--main-10);
|
|
border-color: var(--main-300);
|
|
}
|
|
}
|
|
|
|
.file-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.file-content-wrapper {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.file-name {
|
|
font-size: 14px;
|
|
color: var(--gray-1000);
|
|
font-weight: 500;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.file-time {
|
|
font-size: 12px;
|
|
color: var(--gray-500);
|
|
font-weight: 400;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.download-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--gray-600);
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
padding: 0;
|
|
flex-shrink: 0;
|
|
|
|
&:hover {
|
|
color: var(--main-600);
|
|
}
|
|
|
|
&:active {
|
|
color: var(--main-400);
|
|
}
|
|
}
|
|
|
|
.file-content {
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
background: var(--main-5);
|
|
border-radius: 6px;
|
|
padding: 16px;
|
|
border: 1px solid var(--gray-200);
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: var(--gray-50);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: var(--gray-300);
|
|
border-radius: 4px;
|
|
|
|
&:hover {
|
|
background: var(--gray-400);
|
|
}
|
|
}
|
|
|
|
pre {
|
|
font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
color: var(--gray-1000);
|
|
background: transparent;
|
|
}
|
|
|
|
:deep(.md-editor-preview-wrapper) {
|
|
padding: 0;
|
|
}
|
|
|
|
:deep(.md-editor-preview) {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.modal-header-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding-right: 32px;
|
|
}
|
|
|
|
.file-path-title {
|
|
font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
|
|
font-weight: 600;
|
|
color: var(--gray-1000);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Modal 样式优化 - shadcn 风格 */
|
|
:deep(.ant-modal) {
|
|
z-index: 1050;
|
|
}
|
|
|
|
:deep(.ant-modal-content) {
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--gray-200);
|
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
:deep(.ant-modal-header) {
|
|
background: var(--main-5);
|
|
border-bottom: 1px solid var(--gray-200);
|
|
padding: 16px 20px;
|
|
}
|
|
|
|
:deep(.ant-modal-title) {
|
|
font-weight: 600;
|
|
color: var(--gray-1000);
|
|
font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
|
|
}
|
|
|
|
:deep(.ant-modal-body) {
|
|
padding: 0;
|
|
}
|
|
|
|
:deep(.ant-modal-close) {
|
|
top: 12px;
|
|
right: 12px;
|
|
|
|
.ant-modal-close-x {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 4px;
|
|
transition: all 0.15s ease;
|
|
color: var(--gray-500);
|
|
|
|
&:hover {
|
|
background: var(--gray-100);
|
|
color: var(--gray-700);
|
|
}
|
|
}
|
|
}
|
|
|
|
.refresh-btn {
|
|
margin-left: auto;
|
|
color: var(--gray-700);
|
|
}
|
|
|
|
</style>
|