ForcePilot/web/src/components/KnowledgeGraphSection.vue

325 lines
7.7 KiB
Vue
Raw Normal View History

<template>
<div class="graph-section" v-if="isGraphSupported">
<div class="graph-container-compact">
<div v-if="!isGraphSupported" class="graph-disabled">
<div class="disabled-content">
<h4>知识图谱不可用</h4>
<p>当前知识库类型 "{{ kbTypeLabel }}" 不支持知识图谱功能</p>
<p>只有 LightRAG 类型的知识库支持知识图谱</p>
</div>
</div>
<div v-else class="graph-wrapper">
<GraphCanvas
ref="graphRef"
:graph-data="graph.graphData"
@node-click="graph.handleNodeClick"
@edge-click="graph.handleEdgeClick"
@canvas-click="graph.handleCanvasClick"
>
<template #top>
<div class="compact-actions">
<div class="actions-left">
<a-input
v-model:value="searchInput"
placeholder="搜索实体"
style="width: 240px"
@keydown.enter="onSearch"
allow-clear
>
<template #suffix>
<component
:is="graph.fetching ? LoadingOutlined : SearchOutlined"
@click="onSearch"
/>
</template>
</a-input>
<a-button
class="action-btn"
:icon="h(ReloadOutlined)"
:loading="graph.fetching"
@click="loadGraph"
title="刷新"
/>
</div>
<div class="actions-right">
<a-button
class="action-btn"
:icon="h(SettingOutlined)"
@click="showSettings = true"
title="设置"
/>
</div>
</div>
</template>
</GraphCanvas>
<!-- 详情浮动卡片 -->
<GraphDetailPanel
:visible="graph.showDetailDrawer"
:item="graph.selectedItem"
:type="graph.selectedItemType"
@close="graph.handleCanvasClick"
style="top: 50px; right: 10px"
/>
</div>
</div>
<!-- 设置模态框 -->
<a-modal v-model:open="showSettings" title="图谱设置" :footer="null" width="300px">
<div class="settings-form">
<a-form layout="vertical">
<a-form-item label="最大节点数 (limit)">
<a-input-number
v-model:value="graphLimit"
:min="10"
:max="1000"
:step="10"
style="width: 100%"
/>
</a-form-item>
<a-form-item label="搜索深度 (depth)">
<a-input-number
v-model:value="graphDepth"
:min="1"
:max="5"
:step="1"
style="width: 100%"
/>
</a-form-item>
<a-form-item>
<a-button type="primary" @click="applySettings" style="width: 100%"> 应用 </a-button>
</a-form-item>
</a-form>
</div>
</a-modal>
</div>
</template>
<script setup>
import { ref, computed, watch, nextTick, onUnmounted, reactive, h } from 'vue'
import { useDatabaseStore } from '@/stores/database'
import {
ReloadOutlined,
SettingOutlined,
SearchOutlined,
LoadingOutlined
} from '@ant-design/icons-vue'
import GraphCanvas from '@/components/GraphCanvas.vue'
import GraphDetailPanel from '@/components/GraphDetailPanel.vue'
import { getKbTypeLabel } from '@/utils/kb_utils'
import { unifiedApi } from '@/apis/graph_api'
import { message } from 'ant-design-vue'
import { useGraph } from '@/composables/useGraph'
const props = defineProps({
active: {
type: Boolean,
default: false
}
})
const store = useDatabaseStore()
const databaseId = computed(() => store.databaseId)
const kbType = computed(() => store.database.kb_type)
const kbTypeLabel = computed(() => getKbTypeLabel(kbType.value || 'lightrag'))
const graphRef = ref(null)
const showSettings = ref(false)
const graphLimit = ref(50)
const graphDepth = ref(2)
const searchInput = ref('')
const graph = reactive(useGraph(graphRef))
// 计算属性:是否支持知识图谱
const isGraphSupported = computed(() => {
const type = kbType.value?.toLowerCase()
return type === 'lightrag'
})
let pendingLoadTimer = null
const loadGraph = async () => {
if (!databaseId.value || !isGraphSupported.value) return
graph.fetching = true
try {
const res = await unifiedApi.getSubgraph({
db_id: databaseId.value,
node_label: searchInput.value || '*',
max_nodes: graphLimit.value,
max_depth: graphDepth.value
})
if (res.success && res.data) {
graph.updateGraphData(res.data.nodes, res.data.edges)
}
} catch (e) {
console.error('Failed to load graph:', e)
message.error('加载图谱失败')
} finally {
graph.fetching = false
}
}
const applySettings = () => {
showSettings.value = false
loadGraph()
}
const onSearch = () => {
loadGraph()
}
const scheduleGraphLoad = (delay = 200) => {
// 确保组件激活且数据库支持图谱功能
if (!props.active || !isGraphSupported.value || !databaseId.value) {
return
}
if (pendingLoadTimer) {
clearTimeout(pendingLoadTimer)
}
pendingLoadTimer = setTimeout(async () => {
await nextTick()
if (props.active && isGraphSupported.value && databaseId.value) {
await loadGraph()
}
}, delay)
}
watch(
() => props.active,
(active) => {
if (active) {
scheduleGraphLoad()
}
},
{ immediate: true }
)
watch(databaseId, () => {
graph.clearGraph()
if (isGraphSupported.value) {
scheduleGraphLoad(300)
}
})
watch(isGraphSupported, (supported) => {
if (!supported) {
graph.clearGraph()
return
}
scheduleGraphLoad(200)
})
onUnmounted(() => {
if (pendingLoadTimer) {
clearTimeout(pendingLoadTimer)
pendingLoadTimer = null
}
})
</script>
<style scoped lang="less">
.graph-section {
height: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
position: relative;
}
.graph-container-compact {
flex: 1;
min-height: 0;
overflow: hidden;
position: relative;
}
.graph-wrapper {
height: 100%;
width: 100%;
position: relative;
}
.compact-actions {
position: absolute;
top: 10px;
left: 10px;
right: 10px;
display: flex;
justify-content: space-between;
align-items: center;
pointer-events: none; /* Let clicks pass through empty areas */
.actions-left,
.actions-right {
pointer-events: auto; /* Re-enable clicks for buttons/inputs */
display: flex;
align-items: center;
gap: 4px;
background: var(--color-trans-light);
backdrop-filter: blur(4px);
padding: 2px;
border-radius: 8px;
box-shadow: 0 0 4px 0px var(--shadow-2);
}
:deep(.ant-input-affix-wrapper) {
padding: 4px 11px;
border-radius: 6px;
border-color: transparent;
box-shadow: none;
background: var(--color-trans-light);
&:hover,
&:focus,
&-focused {
background: var(--main-0);
border-color: var(--primary-color);
}
input {
background: transparent;
}
}
.action-btn {
width: 32px;
height: 32px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: transparent;
color: var(--gray-600);
border-radius: 6px;
box-shadow: none;
&:hover {
background: var(--shadow-1);
color: var(--primary-color);
}
}
}
.graph-disabled {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.disabled-content {
text-align: center;
Add dark/light theme toggle feature (#343) * Add dark/light theme toggle feature * update: refine dark/light theme and related components * 调整语义化主题变量,优化暗/亮模式切换效果 * Revert "调整语义化主题变量,优化暗/亮模式切换效果" This reverts commit 85d9373297686fdbacb252a880b2847d20a39641. * 深色模式适配:减少 !important,迁移 CSS 变量,优化布局 * style: 替换硬编码颜色值为CSS变量以支持主题切换 将多处硬编码的颜色值(如#fff、#f0f0f0等)替换为CSS变量(如--gray-0、--gray-150等),统一管理颜色样式,便于主题切换和样式维护。主要修改包括背景色、边框色、文字色等视觉元素,同时移除不再需要的深色模式适配代码。 * style: 使用CSS变量替换硬编码颜色值 * refactor(theme): 重构主题系统,统一使用CSS变量并优化暗色模式实现 - 移除冗余的theme.js配置文件,将主题配置集中到theme store - 使用ant-design-vue的darkAlgorithm实现暗色模式 - 在多个组件中替换硬编码颜色值为CSS变量 - 优化用户信息组件,整合文档中心和主题切换功能 - 更新基础CSS样式,完善颜色系统和滚动条样式 * reset: 恢复被覆盖的修改(96d257a7ace38c94e2b113d56472d211d1141087) * feat(theme): 实现深色主题支持并重构样式系统 重构颜色变量系统,添加深色主题支持 移除硬编码颜色值,统一使用CSS变量 优化图表组件以响应主题切换 清理无用样式代码,提升可维护性 * docs: 更新开发规范文档 * style: 调整边框和背景颜色样式 --------- Co-authored-by: Wenjie Zhang <xerrors@163.com>
2025-11-23 01:39:44 +08:00
color: var(--gray-400);
h4 {
margin-bottom: 8px;
}
}
</style>