ForcePilot/web/src/components/KnowledgeBaseCard.vue

521 lines
15 KiB
Vue
Raw Normal View History

<template>
<div class="knowledge-base-card">
<!-- 标题栏 -->
<div class="card-header">
<div class="header-left">
<a-button
@click="backToDatabase"
class="back-button"
shape="circle"
:icon="h(LeftOutlined)"
type="text"
size="small"
></a-button>
<h3 class="card-title">{{ database.name || '数据库信息加载中' }}</h3>
</div>
<div class="header-right">
<a-button type="text" size="small" @click="copyDatabaseId" title="复制知识库ID">
<template #icon>
<Copy :size="14" />
</template>
</a-button>
<a-button @click="showEditModal" type="text" size="small">
<template #icon>
<Pencil :size="14" />
</template>
</a-button>
</div>
</div>
<!-- 卡片内容 -->
<div class="card-content">
<!-- 描述文本 -->
<div class="description">
<p class="description-text">{{ database.description || '暂无描述' }}</p>
</div>
<!-- Tags -->
<div class="tags-section">
<span class="card-tag" :class="'tag-' + getKbTypeColor(database.kb_type || 'lightrag')">
{{ getKbTypeLabel(database.kb_type || 'lightrag') }}
</span>
<span class="card-tag tag-blue">{{ database.embed_info?.name || 'N/A' }}</span>
<span class="card-tag tag-cyan">{{
chunkPresetLabelMap[database.additional_params?.chunk_preset_id || 'general'] || 'General'
}}</span>
</div>
</div>
</div>
<!-- 编辑对话框 -->
<a-modal v-model:open="editModalVisible" title="编辑知识库信息">
<template #footer>
<a-button danger @click="deleteDatabase" style="margin-right: auto; margin-left: 0">
<template #icon>
<Trash2 :size="16" style="vertical-align: -3px; margin-right: 4px" />
</template>
删除数据库
</a-button>
<a-button key="back" @click="editModalVisible = false">取消</a-button>
<a-button key="submit" type="primary" @click="handleEditSubmit">确定</a-button>
</template>
<a-form :model="editForm" :rules="rules" ref="editFormRef" layout="vertical">
<a-form-item label="知识库名称" name="name" required>
<a-input v-model:value="editForm.name" placeholder="请输入知识库名称" />
</a-form-item>
<a-form-item label="知识库描述" name="description">
<AiTextarea
v-model="editForm.description"
:name="editForm.name"
:files="fileList"
placeholder="请输入知识库描述"
:rows="4"
/>
</a-form-item>
2026-03-04 04:13:05 +08:00
<a-form-item
v-if="database.kb_type !== 'dify'"
label="自动生成问题"
name="auto_generate_questions"
>
<a-switch
v-model:checked="editForm.auto_generate_questions"
checked-children="开启"
un-checked-children="关闭"
/>
<span style="margin-left: 8px; font-size: 12px; color: var(--gray-500)"
>上传文件后自动生成测试问题</span
>
</a-form-item>
<a-form-item v-if="database.kb_type !== 'dify'" name="chunk_preset_id">
<template #label>
<span class="chunk-preset-label">
分块策略
<a-tooltip :title="editPresetDescription">
<QuestionCircleOutlined class="chunk-preset-help-icon" />
</a-tooltip>
</span>
</template>
<a-select v-model:value="editForm.chunk_preset_id" :options="chunkPresetOptions" />
</a-form-item>
<template v-if="database.kb_type === 'dify'">
<a-form-item label="Dify API URL" name="dify_api_url">
2026-03-04 04:13:05 +08:00
<a-input
v-model:value="editForm.dify_api_url"
placeholder="例如: https://api.dify.ai/v1"
/>
</a-form-item>
<a-form-item label="Dify Token" name="dify_token">
2026-03-04 04:13:05 +08:00
<a-input-password
v-model:value="editForm.dify_token"
placeholder="请输入 Dify API Token"
/>
</a-form-item>
<a-form-item label="Dataset ID" name="dify_dataset_id">
<a-input v-model:value="editForm.dify_dataset_id" placeholder="请输入 Dify dataset_id" />
</a-form-item>
</template>
<!-- 仅对 LightRAG 类型显示 LLM 配置 -->
<a-form-item v-if="database.kb_type === 'lightrag'" label="语言模型 (LLM)" name="llm_info">
<ModelSelectorComponent
:model_spec="llmModelSpec"
placeholder="请选择模型"
@select-model="handleLLMSelect"
style="width: 100%"
/>
</a-form-item>
<!-- 共享配置超级管理员可编辑非共享时本部门管理员也可编辑 -->
<a-form-item v-if="canEditShareConfig" label="共享设置" name="share_config">
<a-form-item-rest>
<ShareConfigForm
ref="shareConfigFormRef"
:model-value="database.share_config"
:auto-select-user-dept="true"
/>
</a-form-item-rest>
</a-form-item>
<!-- 非编辑状态下显示共享配置信息 -->
<a-form-item v-else-if="database.share_config" label="共享设置" name="share_config_readonly">
<div class="share-config-readonly">
<a-tag :color="database.share_config.is_shared !== false ? 'green' : 'blue'">
{{ database.share_config.is_shared !== false ? '全员共享' : '指定部门' }}
</a-tag>
<span v-if="database.share_config.is_shared === false" class="dept-names">
{{ getAccessibleDeptNames() }}
</span>
</div>
</a-form-item>
</a-form>
</a-modal>
</template>
<script setup>
import { ref, reactive, computed, h, onMounted } from 'vue'
import { useRouter } from 'vue-router'
import { useDatabaseStore } from '@/stores/database'
import { useUserStore } from '@/stores/user'
import { getKbTypeLabel, getKbTypeColor } from '@/utils/kb_utils'
import {
CHUNK_PRESET_OPTIONS,
CHUNK_PRESET_LABEL_MAP,
getChunkPresetDescription
} from '@/utils/chunk_presets'
import { message } from 'ant-design-vue'
import { LeftOutlined, QuestionCircleOutlined } from '@ant-design/icons-vue'
import { Pencil, Trash2, Copy } from 'lucide-vue-next'
import { departmentApi } from '@/apis/department_api'
import ModelSelectorComponent from '@/components/ModelSelectorComponent.vue'
import AiTextarea from '@/components/AiTextarea.vue'
import ShareConfigForm from '@/components/ShareConfigForm.vue'
const router = useRouter()
const store = useDatabaseStore()
const userStore = useUserStore()
const database = computed(() => store.database)
// 部门列表(用于显示部门名称)
const departments = ref([])
// 加载部门列表
const loadDepartments = async () => {
try {
const res = await departmentApi.getDepartments()
departments.value = res.departments || res || []
} catch (e) {
console.error('加载部门列表失败:', e)
departments.value = []
}
}
// 初始化时加载部门
onMounted(() => {
loadDepartments()
})
// 获取可访问的部门名称
const getAccessibleDeptNames = () => {
const deptIds = database.value?.share_config?.accessible_departments || []
if (deptIds.length === 0) return '无'
return deptIds
.map((id) => {
const dept = departments.value.find((d) => d.id === id)
return dept?.name || `部门${id}`
})
.join('、')
}
// 是否可以编辑共享配置
// 规则1. 超级管理员可以编辑所有
// 2. 管理员也可以编辑(后端会验证权限)
const canEditShareConfig = computed(() => {
if (userStore.isSuperAdmin) {
return true
}
// 管理员可以编辑共享配置,后端会验证权限
return userStore.isAdmin
})
const fileList = computed(() => {
if (!database.value?.files) return []
return Object.values(database.value.files)
.map((f) => f.filename)
.filter(Boolean)
})
// 复制数据库ID
const copyDatabaseId = async () => {
if (!database.value.db_id) {
message.warning('知识库ID为空')
return
}
try {
await navigator.clipboard.writeText(database.value.db_id)
message.success('知识库ID已复制到剪贴板')
} catch {
// 降级方案
const textArea = document.createElement('textarea')
textArea.value = database.value.db_id
document.body.appendChild(textArea)
textArea.select()
document.execCommand('copy')
document.body.removeChild(textArea)
message.success('知识库ID已复制到剪贴板')
}
}
// 返回数据库列表
const backToDatabase = () => {
router.push('/database')
}
// 编辑相关逻辑(复用自 DatabaseHeader
const editModalVisible = ref(false)
const editFormRef = ref(null)
const shareConfigFormRef = ref(null)
const editForm = reactive({
name: '',
description: '',
auto_generate_questions: false,
chunk_preset_id: 'general',
llm_info: {
provider: '',
model_name: ''
},
dify_api_url: '',
dify_token: '',
dify_dataset_id: ''
})
const chunkPresetOptions = CHUNK_PRESET_OPTIONS.map(({ label, value }) => ({ label, value }))
const chunkPresetLabelMap = CHUNK_PRESET_LABEL_MAP
const editPresetDescription = computed(() => getChunkPresetDescription(editForm.chunk_preset_id))
const rules = {
name: [{ required: true, message: '请输入知识库名称' }]
}
// 打开编辑弹窗
const showEditModal = () => {
console.log('[showEditModal] 被调用')
editForm.name = database.value.name || ''
editForm.description = database.value.description || ''
editForm.auto_generate_questions =
database.value.additional_params?.auto_generate_questions || false
editForm.chunk_preset_id = database.value.additional_params?.chunk_preset_id || 'general'
editForm.dify_api_url = database.value.additional_params?.dify_api_url || ''
editForm.dify_token = database.value.additional_params?.dify_token || ''
editForm.dify_dataset_id = database.value.additional_params?.dify_dataset_id || ''
// 如果是 LightRAG 类型,加载当前的 LLM 配置
if (database.value.kb_type === 'lightrag') {
const llmInfo = database.value.llm_info || {}
editForm.llm_info.provider = llmInfo.provider || ''
editForm.llm_info.model_name = llmInfo.model_name || ''
}
editModalVisible.value = true
}
const handleEditSubmit = () => {
editFormRef.value
.validate()
.then(async () => {
// 验证共享配置
if (shareConfigFormRef.value) {
const validation = shareConfigFormRef.value.validate()
if (!validation.valid) {
message.warning(validation.message)
return
}
}
// 从 ShareConfigForm 组件直接获取当前值
let finalIsShared = true
let finalDeptIds = []
if (shareConfigFormRef.value) {
const formConfig = shareConfigFormRef.value.config
finalIsShared = formConfig.is_shared
finalDeptIds = formConfig.accessible_department_ids || []
}
console.log(
'[handleEditSubmit] 直接从组件获取 - is_shared:',
finalIsShared,
'dept_ids:',
JSON.stringify(finalDeptIds)
)
const updateData = {
name: editForm.name,
description: editForm.description,
additional_params: {},
share_config: {
is_shared: finalIsShared,
accessible_departments: finalIsShared ? [] : finalDeptIds
}
}
if (database.value.kb_type === 'dify') {
if (
!editForm.dify_api_url?.trim() ||
!editForm.dify_token?.trim() ||
!editForm.dify_dataset_id?.trim()
) {
message.error('请完整填写 Dify API URL、Token 和 Dataset ID')
return
}
if (!editForm.dify_api_url.trim().endsWith('/v1')) {
message.error('Dify API URL 必须以 /v1 结尾')
return
}
updateData.additional_params = {
dify_api_url: editForm.dify_api_url.trim(),
dify_token: editForm.dify_token.trim(),
dify_dataset_id: editForm.dify_dataset_id.trim()
}
} else {
updateData.additional_params = {
auto_generate_questions: editForm.auto_generate_questions,
chunk_preset_id: editForm.chunk_preset_id || 'general'
}
}
console.log(
'[handleEditSubmit] updateData.share_config:',
JSON.stringify(updateData.share_config)
)
// 如果是 LightRAG 类型,包含 llm_info
if (database.value.kb_type === 'lightrag') {
updateData.llm_info = {
provider: editForm.llm_info.provider,
model_name: editForm.llm_info.model_name
}
}
await store.updateDatabaseInfo(updateData)
editModalVisible.value = false
})
.catch((err) => {
console.error('表单验证失败:', err)
})
}
// LLM 模型选择处理
const llmModelSpec = computed(() => {
const provider = editForm.llm_info?.provider || ''
const modelName = editForm.llm_info?.model_name || ''
if (provider && modelName) {
return `${provider}/${modelName}`
}
return ''
})
const handleLLMSelect = (spec) => {
console.log('LLM选择:', spec)
if (typeof spec !== 'string' || !spec) return
const index = spec.indexOf('/')
const provider = index !== -1 ? spec.slice(0, index) : ''
const modelName = index !== -1 ? spec.slice(index + 1) : ''
editForm.llm_info.provider = provider
editForm.llm_info.model_name = modelName
}
const deleteDatabase = () => {
store.deleteDatabase()
}
</script>
<style lang="less" scoped>
.knowledge-base-card {
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
background: linear-gradient(120deg, var(--main-30) 0%, var(--gray-0) 100%);
border-radius: 12px;
border: 1px solid var(--gray-200);
margin-bottom: 8px;
}
// 只读共享配置显示
.share-config-readonly {
display: flex;
align-items: center;
gap: 8px;
.dept-names {
font-size: 13px;
color: var(--gray-600);
}
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 16px;
.header-left {
display: flex;
align-items: center;
gap: 4px;
flex: 1;
min-width: 0;
button.back-button {
margin-left: -5px;
font-size: 10px;
}
}
.card-title {
font-size: 16px;
font-weight: 600;
color: var(--gray-800);
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
// flex: 1;
}
.header-right {
display: flex;
align-items: center;
gap: 6px;
flex-shrink: 0;
button {
color: var(--gray-500);
height: 100%;
}
button:hover {
color: var(--gray-700);
background-color: var(--gray-100);
}
}
}
.card-content {
padding: 0 16px 16px 16px;
}
.description {
margin-bottom: 12px;
.description-text {
font-size: 14px;
color: var(--gray-700);
line-height: 1.5;
margin: 0;
}
}
.tags-section {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 4px;
}
.chunk-preset-label {
display: inline-flex;
align-items: center;
gap: 6px;
}
.chunk-preset-help-icon {
color: var(--gray-500);
cursor: help;
font-size: 14px;
}
</style>