ForcePilot/web/src/views/AgentSingleView.vue

132 lines
3.0 KiB
Vue
Raw Normal View History

2025-03-31 22:32:19 +08:00
<template>
2025-03-31 23:02:05 +08:00
<div class="agent-single-view">
2025-04-03 16:02:14 +08:00
<!-- 智能体聊天界面 -->
<AgentChatComponent ref="chatComponentRef" :agent-id="agentId" :single-mode="true">
2025-05-04 21:04:01 +08:00
<template #header-right>
<div type="button" class="agent-nav-btn" @click="handleShareChat">
<Share2 size="18" class="nav-btn-icon" />
<span class="text">分享</span>
</div>
2025-05-04 21:04:01 +08:00
<UserInfoComponent />
</template>
</AgentChatComponent>
2025-03-31 22:32:19 +08:00
</div>
</template>
2025-03-31 23:02:05 +08:00
<script setup>
2025-05-02 23:56:59 +08:00
import { computed, ref } from 'vue';
import { message } from 'ant-design-vue';
2025-05-02 23:56:59 +08:00
import { useRoute } from 'vue-router';
import { Share2 } from 'lucide-vue-next';
2025-03-31 23:02:05 +08:00
import AgentChatComponent from '@/components/AgentChatComponent.vue';
2025-05-02 23:56:59 +08:00
import UserInfoComponent from '@/components/UserInfoComponent.vue';
import { ChatExporter } from '@/utils/chatExporter';
import { handleChatError } from '@/utils/errorHandler';
2025-03-31 23:02:05 +08:00
const route = useRoute();
const agentId = computed(() => route.params.agent_id);
const chatComponentRef = ref(null);
const handleShareChat = async () => {
try {
const exportData = chatComponentRef.value?.getExportPayload?.();
if (!exportData) {
message.warning('当前没有可导出的对话内容');
return;
}
const hasMessages = Boolean(exportData.messages?.length);
const hasOngoingMessages = Boolean(exportData.onGoingMessages?.length);
if (!hasMessages && !hasOngoingMessages) {
message.warning('当前对话暂无内容可导出,请先进行对话');
return;
}
const result = await ChatExporter.exportToHTML(exportData);
message.success(`对话已导出为HTML文件: ${result.filename}`);
} catch (error) {
if (error?.message?.includes('没有可导出的对话内容')) {
message.warning('当前对话暂无内容可导出,请先进行对话');
return;
}
handleChatError(error, 'export');
}
};
2025-03-31 23:02:05 +08:00
</script>
<style lang="less" scoped>
.agent-single-view {
width: 100%;
height: 100vh;
overflow: hidden;
2025-05-02 23:56:59 +08:00
position: relative;
2025-05-04 21:04:01 +08:00
display: flex;
flex-direction: row;
2025-03-31 23:02:05 +08:00
}
2025-04-03 16:02:14 +08:00
2025-05-02 23:56:59 +08:00
.user-info-wrapper {
position: absolute;
top: 10px;
right: 20px;
z-index: 10;
}
// 侧边栏样式
.sidebar {
2025-05-04 21:04:01 +08:00
// position: absolute;
2025-05-02 23:56:59 +08:00
left: 0;
top: 0;
height: 100%;
width: 240px;
background-color: #f5f5f5;
transition: all 0.3s ease;
z-index: 20;
2025-04-03 16:02:14 +08:00
display: flex;
2025-05-02 23:56:59 +08:00
&.collapsed {
width: 60px;
}
.sidebar-content {
flex: 1;
padding: 20px 10px;
overflow-y: auto;
}
.user-icon {
cursor: pointer;
margin-bottom: 20px;
2025-05-04 21:04:01 +08:00
padding-left: 4px 8px;
2025-05-02 23:56:59 +08:00
img {
width: 32px;
height: 32px;
}
2025-04-03 16:02:14 +08:00
}
2025-05-02 23:56:59 +08:00
.toggle-button {
position: absolute;
right: -15px;
top: 50%;
transform: translateY(-50%);
width: 30px;
height: 30px;
background-color: #fff;
border-radius: 50%;
2025-04-03 16:02:14 +08:00
display: flex;
2025-05-02 23:56:59 +08:00
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
img {
width: 16px;
height: 16px;
}
2025-04-03 16:02:14 +08:00
}
}
2025-03-31 23:02:05 +08:00
</style>