feat: 增强消息输入和附件组件中的提及功能. #718
- 重构 MessageInputComponent,改用 contenteditable div 以实现更好的提及处理。 - 引入 MentionTextRenderer 组件,用于渲染带图标和标签的提及内容。 - 在 mention_utils.js 中添加用于解析和格式化提及内容的辅助函数。 - 改进 MessageInputComponent 中对提及查询的检测与处理。 - 更新提及标记和资源项的样式,以提升 UI/UX 体验。 - 实现基于键盘事件的提及删除处理。 - 确保与各种提及类型(知识、技能、MCP、子代理、文件)的兼容性。
This commit is contained in:
parent
4f02b4d35e
commit
b51df7097e
@ -70,7 +70,7 @@
|
|||||||
- 标准化 Agent run/SSE 执行链路:run 创建时持久化输入消息并提交后入队,worker 统一写入 Redis Stream envelope,SSE 输出 `event/data/id`、心跳注释、`Last-Event-ID` 回放和终止 `end` 事件;前端强制使用 run API 并支持 ask_user_question 中断后以 resume run 恢复。
|
- 标准化 Agent run/SSE 执行链路:run 创建时持久化输入消息并提交后入队,worker 统一写入 Redis Stream envelope,SSE 输出 `event/data/id`、心跳注释、`Last-Event-ID` 回放和终止 `end` 事件;前端强制使用 run API 并支持 ask_user_question 中断后以 resume run 恢复。
|
||||||
- 收敛后端模块边界:文档解析从 `plugins.parser` 移动到 `knowledge.parser`,内容审查从 `plugins.guard` 移动到 `services.guard`。
|
- 收敛后端模块边界:文档解析从 `plugins.parser` 移动到 `knowledge.parser`,内容审查从 `plugins.guard` 移动到 `services.guard`。
|
||||||
- 收敛文件服务边界:文件预览判断抽为独立服务,Viewer 文件系统的 workspace 分支复用用户 workspace 服务,线程运行时上下文解析从泛化 `filesystem_service` 拆出为 agent runtime helper。
|
- 收敛文件服务边界:文件预览判断抽为独立服务,Viewer 文件系统的 workspace 分支复用用户 workspace 服务,线程运行时上下文解析从泛化 `filesystem_service` 拆出为 agent runtime helper。
|
||||||
- 优化聊天输入 @ 文件提及:未创建 Thread 时可搜索用户 workspace,创建 Thread 后按当前对话文件优先、workspace 兜底的来源顺序搜索,并拆分 workspace/thread 缓存避免假 thread 与跨用户缓存污染。
|
- 优化聊天输入 @ 文件提及:未创建 Thread 时可搜索用户 workspace,创建 Thread 后按当前对话文件优先、workspace 兜底的来源顺序搜索,并拆分 workspace/thread 缓存避免假 thread 与跨用户缓存污染;输入框与用户消息支持将 raw mention 渲染为带类型图标的引用单元,文件仅显示文件名且保留原始沙盒路径文本。
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@ -55,6 +55,7 @@
|
|||||||
:is-processing="isDisplayMessageProcessing(row.conv, displayItem)"
|
:is-processing="isDisplayMessageProcessing(row.conv, displayItem)"
|
||||||
:show-refs="showMsgRefs(displayItem.message)"
|
:show-refs="showMsgRefs(displayItem.message)"
|
||||||
:hide-tool-calls="true"
|
:hide-tool-calls="true"
|
||||||
|
:mention="mentionConfig"
|
||||||
@retry="retryMessage(displayItem.message)"
|
@retry="retryMessage(displayItem.message)"
|
||||||
>
|
>
|
||||||
</AgentMessageComponent>
|
</AgentMessageComponent>
|
||||||
|
|||||||
@ -23,7 +23,9 @@
|
|||||||
<Check v-if="isCopied" size="14" />
|
<Check v-if="isCopied" size="14" />
|
||||||
<Copy v-else size="14" />
|
<Copy v-else size="14" />
|
||||||
</div>
|
</div>
|
||||||
<p v-if="message.type === 'human'" class="message-text">{{ message.content }}</p>
|
<p v-if="message.type === 'human'" class="message-text">
|
||||||
|
<MentionTextRenderer :content="message.content" :display-labels="mentionDisplayLabels" />
|
||||||
|
</p>
|
||||||
|
|
||||||
<p v-else-if="message.type === 'system'" class="message-text-system">{{ message.content }}</p>
|
<p v-else-if="message.type === 'system'" class="message-text-system">{{ message.content }}</p>
|
||||||
|
|
||||||
@ -139,11 +141,13 @@ import RefsComponent from '@/components/RefsComponent.vue'
|
|||||||
import { Copy, Check } from 'lucide-vue-next'
|
import { Copy, Check } from 'lucide-vue-next'
|
||||||
import ToolCallsGroupComponent from '@/components/ToolCallsGroupComponent.vue'
|
import ToolCallsGroupComponent from '@/components/ToolCallsGroupComponent.vue'
|
||||||
import MarkdownPreview from '@/components/common/MarkdownPreview.vue'
|
import MarkdownPreview from '@/components/common/MarkdownPreview.vue'
|
||||||
|
import MentionTextRenderer from '@/components/common/MentionTextRenderer.vue'
|
||||||
import { useAgentStore } from '@/stores/agent'
|
import { useAgentStore } from '@/stores/agent'
|
||||||
import { useInfoStore } from '@/stores/info'
|
import { useInfoStore } from '@/stores/info'
|
||||||
import { storeToRefs } from 'pinia'
|
import { storeToRefs } from 'pinia'
|
||||||
import { MessageProcessor } from '@/utils/messageProcessor'
|
import { MessageProcessor } from '@/utils/messageProcessor'
|
||||||
import { normalizeAttachmentPreviews } from '@/utils/file_utils'
|
import { normalizeAttachmentPreviews } from '@/utils/file_utils'
|
||||||
|
import { buildMentionDisplayLabels } from '@/utils/mention_utils'
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
// 消息角色:'user'|'assistant'|'sent'|'received'
|
// 消息角色:'user'|'assistant'|'sent'|'received'
|
||||||
@ -175,6 +179,10 @@ const props = defineProps({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: false
|
||||||
},
|
},
|
||||||
|
mention: {
|
||||||
|
type: Object,
|
||||||
|
default: () => null
|
||||||
|
},
|
||||||
// 是否显示调试信息 (已废弃,使用 infoStore.debugMode)
|
// 是否显示调试信息 (已废弃,使用 infoStore.debugMode)
|
||||||
debugMode: {
|
debugMode: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -264,6 +272,8 @@ const fileAttachments = computed(() =>
|
|||||||
messageAttachments.value.filter((attachment) => !attachment.isImage || !attachment.previewUrl)
|
messageAttachments.value.filter((attachment) => !attachment.isImage || !attachment.previewUrl)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const mentionDisplayLabels = computed(() => buildMentionDisplayLabels(props.mention || {}))
|
||||||
|
|
||||||
const messageSources = computed(() => {
|
const messageSources = computed(() => {
|
||||||
if (props.message.type === 'ai') {
|
if (props.message.type === 'ai') {
|
||||||
return MessageProcessor.extractSourcesFromMessage(props.message, availableKnowledgeBases.value)
|
return MessageProcessor.extractSourcesFromMessage(props.message, availableKnowledgeBases.value)
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
<a-button
|
<a-button
|
||||||
size="small"
|
size="small"
|
||||||
type="text"
|
type="text"
|
||||||
class="remove-btn"
|
class="lucide-icon-btn remove-btn"
|
||||||
:disabled="confirming"
|
:disabled="confirming"
|
||||||
@click="removeItem(item.localId)"
|
@click="removeItem(item.localId)"
|
||||||
>
|
>
|
||||||
@ -136,7 +136,7 @@
|
|||||||
:loading="item.status === 'parsing'"
|
:loading="item.status === 'parsing'"
|
||||||
:disabled="confirming"
|
:disabled="confirming"
|
||||||
>
|
>
|
||||||
解析
|
可解析
|
||||||
</a-button>
|
</a-button>
|
||||||
</a-popover>
|
</a-popover>
|
||||||
</div>
|
</div>
|
||||||
@ -546,12 +546,6 @@ const formatFileSize = (size) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.remove-btn {
|
.remove-btn {
|
||||||
display: inline-flex;
|
|
||||||
flex: none;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
width: 30px;
|
|
||||||
height: 30px;
|
|
||||||
color: var(--gray-500);
|
color: var(--gray-500);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -565,7 +559,6 @@ const formatFileSize = (size) => {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
margin-top: 6px;
|
|
||||||
color: var(--gray-500);
|
color: var(--gray-500);
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
@ -585,6 +578,7 @@ const formatFileSize = (size) => {
|
|||||||
.parse-trigger-btn {
|
.parse-trigger-btn {
|
||||||
flex: none;
|
flex: none;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.parse-panel {
|
.parse-panel {
|
||||||
|
|||||||
@ -25,22 +25,27 @@
|
|||||||
<slot name="actions-left"></slot>
|
<slot name="actions-left"></slot>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<textarea
|
<div
|
||||||
ref="inputRef"
|
ref="inputRef"
|
||||||
class="user-input"
|
class="user-input mention-editor"
|
||||||
:value="inputValue"
|
role="textbox"
|
||||||
|
aria-multiline="true"
|
||||||
|
:aria-label="placeholder"
|
||||||
|
:contenteditable="disabled ? 'false' : 'true'"
|
||||||
|
:data-placeholder="placeholder"
|
||||||
@keydown="handleKeyPress"
|
@keydown="handleKeyPress"
|
||||||
@keyup="handleKeyUp"
|
@keyup="handleKeyUp"
|
||||||
@input="handleInput"
|
@input="handleInput"
|
||||||
@focus="focusInput"
|
@focus="focusInput"
|
||||||
@click="handleTextareaClick"
|
@click="handleEditorClick"
|
||||||
:placeholder="placeholder"
|
@paste="handlePaste"
|
||||||
:disabled="disabled"
|
@compositionstart="handleCompositionStart"
|
||||||
/>
|
@compositionend="handleCompositionEnd"
|
||||||
|
></div>
|
||||||
|
|
||||||
<!-- @ 提及选择弹窗 -->
|
<!-- @ 提及选择弹窗 -->
|
||||||
<div v-if="mentionPopupVisible" ref="mentionDropdownRef" class="mention-dropdown-wrapper">
|
<div v-if="mentionPopupVisible" ref="mentionDropdownRef" class="mention-dropdown-wrapper">
|
||||||
<div class="mention-popup">
|
<div class="mention-popup" @mousedown.prevent>
|
||||||
<!-- 文件列表 -->
|
<!-- 文件列表 -->
|
||||||
<div v-if="mentionItems.files.length > 0 || showFileSearchPrompt" class="mention-group">
|
<div v-if="mentionItems.files.length > 0 || showFileSearchPrompt" class="mention-group">
|
||||||
<div class="mention-group-title">文件</div>
|
<div class="mention-group-title">文件</div>
|
||||||
@ -94,15 +99,32 @@
|
|||||||
<div
|
<div
|
||||||
v-for="(item, index) in mentionItems.knowledgeBases"
|
v-for="(item, index) in mentionItems.knowledgeBases"
|
||||||
:key="'kb-' + item.value"
|
:key="'kb-' + item.value"
|
||||||
:class="['mention-item', { active: isItemSelected('knowledge', index) }]"
|
:class="['mention-item', 'resource-item', { active: isItemSelected('knowledge', index) }]"
|
||||||
@click="insertMention(item)"
|
@click="insertMention(item)"
|
||||||
>
|
>
|
||||||
<span
|
<div class="resource-name">
|
||||||
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
<span
|
||||||
:key="pIdx"
|
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
||||||
:class="{ 'query-match': part.isMatch }"
|
:key="pIdx"
|
||||||
>{{ part.text }}</span
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="getMentionDescription(item.description)"
|
||||||
|
class="resource-description"
|
||||||
|
:title="getMentionDescription(item.description)"
|
||||||
>
|
>
|
||||||
|
<span
|
||||||
|
v-for="(part, pIdx) in splitTextByQuery(
|
||||||
|
getMentionDescription(item.description),
|
||||||
|
mentionQuery
|
||||||
|
)"
|
||||||
|
:key="pIdx"
|
||||||
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -112,15 +134,32 @@
|
|||||||
<div
|
<div
|
||||||
v-for="(item, index) in mentionItems.mcps"
|
v-for="(item, index) in mentionItems.mcps"
|
||||||
:key="'mcp-' + item.value"
|
:key="'mcp-' + item.value"
|
||||||
:class="['mention-item', { active: isItemSelected('mcp', index) }]"
|
:class="['mention-item', 'resource-item', { active: isItemSelected('mcp', index) }]"
|
||||||
@click="insertMention(item)"
|
@click="insertMention(item)"
|
||||||
>
|
>
|
||||||
<span
|
<div class="resource-name">
|
||||||
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
<span
|
||||||
:key="pIdx"
|
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
||||||
:class="{ 'query-match': part.isMatch }"
|
:key="pIdx"
|
||||||
>{{ part.text }}</span
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="getMentionDescription(item.description)"
|
||||||
|
class="resource-description"
|
||||||
|
:title="getMentionDescription(item.description)"
|
||||||
>
|
>
|
||||||
|
<span
|
||||||
|
v-for="(part, pIdx) in splitTextByQuery(
|
||||||
|
getMentionDescription(item.description),
|
||||||
|
mentionQuery
|
||||||
|
)"
|
||||||
|
:key="pIdx"
|
||||||
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -130,15 +169,32 @@
|
|||||||
<div
|
<div
|
||||||
v-for="(item, index) in mentionItems.skills"
|
v-for="(item, index) in mentionItems.skills"
|
||||||
:key="'skill-' + item.value"
|
:key="'skill-' + item.value"
|
||||||
:class="['mention-item', { active: isItemSelected('skill', index) }]"
|
:class="['mention-item', 'resource-item', { active: isItemSelected('skill', index) }]"
|
||||||
@click="insertMention(item)"
|
@click="insertMention(item)"
|
||||||
>
|
>
|
||||||
<span
|
<div class="resource-name">
|
||||||
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
<span
|
||||||
:key="pIdx"
|
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
||||||
:class="{ 'query-match': part.isMatch }"
|
:key="pIdx"
|
||||||
>{{ part.text }}</span
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="getMentionDescription(item.description)"
|
||||||
|
class="resource-description"
|
||||||
|
:title="getMentionDescription(item.description)"
|
||||||
>
|
>
|
||||||
|
<span
|
||||||
|
v-for="(part, pIdx) in splitTextByQuery(
|
||||||
|
getMentionDescription(item.description),
|
||||||
|
mentionQuery
|
||||||
|
)"
|
||||||
|
:key="pIdx"
|
||||||
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -148,15 +204,32 @@
|
|||||||
<div
|
<div
|
||||||
v-for="(item, index) in mentionItems.subagents"
|
v-for="(item, index) in mentionItems.subagents"
|
||||||
:key="'subagent-' + item.value"
|
:key="'subagent-' + item.value"
|
||||||
:class="['mention-item', { active: isItemSelected('subagent', index) }]"
|
:class="['mention-item', 'resource-item', { active: isItemSelected('subagent', index) }]"
|
||||||
@click="insertMention(item)"
|
@click="insertMention(item)"
|
||||||
>
|
>
|
||||||
<span
|
<div class="resource-name">
|
||||||
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
<span
|
||||||
:key="pIdx"
|
v-for="(part, pIdx) in splitTextByQuery(item.label, mentionQuery)"
|
||||||
:class="{ 'query-match': part.isMatch }"
|
:key="pIdx"
|
||||||
>{{ part.text }}</span
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="getMentionDescription(item.description)"
|
||||||
|
class="resource-description"
|
||||||
|
:title="getMentionDescription(item.description)"
|
||||||
>
|
>
|
||||||
|
<span
|
||||||
|
v-for="(part, pIdx) in splitTextByQuery(
|
||||||
|
getMentionDescription(item.description),
|
||||||
|
mentionQuery
|
||||||
|
)"
|
||||||
|
:key="pIdx"
|
||||||
|
:class="{ 'query-match': part.isMatch }"
|
||||||
|
>{{ part.text }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -193,6 +266,16 @@ import { SendOutlined, ArrowUpOutlined, PauseOutlined, FolderFilled } from '@ant
|
|||||||
import { Paperclip } from 'lucide-vue-next'
|
import { Paperclip } from 'lucide-vue-next'
|
||||||
import { searchMentionFiles } from '@/apis/mention_api'
|
import { searchMentionFiles } from '@/apis/mention_api'
|
||||||
import { getFileIcon, getFileIconColor } from '@/utils/file_utils'
|
import { getFileIcon, getFileIconColor } from '@/utils/file_utils'
|
||||||
|
import {
|
||||||
|
buildMentionDisplayLabels,
|
||||||
|
expandMentionDeletionRange,
|
||||||
|
findActiveMentionQuery,
|
||||||
|
formatMentionToken,
|
||||||
|
getMentionDisplayLabel,
|
||||||
|
mentionTypePrefixMap,
|
||||||
|
parseMentionText,
|
||||||
|
replaceRawRange
|
||||||
|
} from '@/utils/mention_utils'
|
||||||
|
|
||||||
// 点击外部关闭下拉框
|
// 点击外部关闭下拉框
|
||||||
const mentionDropdownRef = ref(null)
|
const mentionDropdownRef = ref(null)
|
||||||
@ -258,17 +341,25 @@ const mentionEnabled = computed(() => {
|
|||||||
return !!props.mention
|
return !!props.mention
|
||||||
})
|
})
|
||||||
|
|
||||||
const mentionTypePrefixMap = {
|
const mentionDisplayLabels = computed(() => buildMentionDisplayLabels(props.mention || {}))
|
||||||
file: 'file',
|
|
||||||
knowledge: 'knowledge',
|
let lastRawSelectionRange = null
|
||||||
mcp: 'mcp',
|
let lastSyncedEditorValue = props.modelValue || ''
|
||||||
skill: 'skill',
|
|
||||||
subagent: 'subagent'
|
const getStoredRawSelectionRange = () => {
|
||||||
|
const length = getEditorRawValue().length
|
||||||
|
if (!lastRawSelectionRange) {
|
||||||
|
return { start: length, end: length, collapsed: true }
|
||||||
|
}
|
||||||
|
|
||||||
|
const start = Math.max(0, Math.min(lastRawSelectionRange.start, length))
|
||||||
|
const end = Math.max(start, Math.min(lastRawSelectionRange.end, length))
|
||||||
|
return { start, end, collapsed: start === end }
|
||||||
}
|
}
|
||||||
|
|
||||||
const formatMentionToken = (type, value) => {
|
const rememberRawSelectionRange = (range) => {
|
||||||
const prefix = mentionTypePrefixMap[type] || type
|
lastRawSelectionRange = { ...range }
|
||||||
return `@${prefix}:${value}`
|
return range
|
||||||
}
|
}
|
||||||
|
|
||||||
const formatMentionPath = (path) => {
|
const formatMentionPath = (path) => {
|
||||||
@ -288,6 +379,12 @@ const formatMentionPath = (path) => {
|
|||||||
return pathForParent.substring(0, lastSlashIndex + 1)
|
return pathForParent.substring(0, lastSlashIndex + 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getMentionDescription = (description) => {
|
||||||
|
const value = String(description || '').trim()
|
||||||
|
if (!value || value === '暂无描述') return ''
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
|
||||||
// 高性能且安全的关键字切片高亮解析函数 (100% 防御 XSS,避开危险的 v-html)
|
// 高性能且安全的关键字切片高亮解析函数 (100% 防御 XSS,避开危险的 v-html)
|
||||||
const splitTextByQuery = (text, query) => {
|
const splitTextByQuery = (text, query) => {
|
||||||
if (!text) return []
|
if (!text) return []
|
||||||
@ -303,20 +400,243 @@ const splitTextByQuery = (text, query) => {
|
|||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const isTextNode = (node) => node?.nodeType === Node.TEXT_NODE
|
||||||
|
const isElementNode = (node) => node?.nodeType === Node.ELEMENT_NODE
|
||||||
|
const isMentionNode = (node) => isElementNode(node) && node.dataset?.mentionRaw !== undefined
|
||||||
|
const isLineBreakNode = (node) => isElementNode(node) && node.tagName === 'BR'
|
||||||
|
const childIndex = (node) => Array.prototype.indexOf.call(node.parentNode?.childNodes || [], node)
|
||||||
|
|
||||||
|
const getRawNodeLength = (node) => {
|
||||||
|
if (!node) return 0
|
||||||
|
if (isTextNode(node)) return node.textContent?.length || 0
|
||||||
|
if (isMentionNode(node)) return node.dataset.mentionRaw?.length || 0
|
||||||
|
if (isLineBreakNode(node)) return 1
|
||||||
|
return Array.from(node.childNodes || []).reduce((total, child) => total + getRawNodeLength(child), 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
const serializeEditorNode = (node) => {
|
||||||
|
if (!node) return ''
|
||||||
|
if (isTextNode(node)) return node.textContent || ''
|
||||||
|
if (isMentionNode(node)) return node.dataset.mentionRaw || ''
|
||||||
|
if (isLineBreakNode(node)) return '\n'
|
||||||
|
return Array.from(node.childNodes || [])
|
||||||
|
.map((child) => serializeEditorNode(child))
|
||||||
|
.join('')
|
||||||
|
}
|
||||||
|
|
||||||
|
const serializeEditorContent = () => serializeEditorNode(inputRef.value)
|
||||||
|
const getEditorRawValue = () => (inputRef.value ? serializeEditorContent() : inputValue.value)
|
||||||
|
|
||||||
|
const getEditorMentionIconSvg = (type) => {
|
||||||
|
if (type === 'knowledge') {
|
||||||
|
return '<svg viewBox="0 0 24 24" width="15" height="15" stroke="currentColor" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7v14"/><path d="M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"/></svg>'
|
||||||
|
}
|
||||||
|
if (type === 'skill') {
|
||||||
|
return '<svg viewBox="0 0 24 24" width="15" height="15" stroke="currentColor" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"/></svg>'
|
||||||
|
}
|
||||||
|
if (type === 'subagent') {
|
||||||
|
return '<svg viewBox="0 0 24 24" width="15" height="15" stroke="currentColor" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M12 8V4H8"/><rect width="16" height="12" x="4" y="8" rx="2"/><path d="M2 14h2"/><path d="M20 14h2"/><path d="M15 13v2"/><path d="M9 13v2"/></svg>'
|
||||||
|
}
|
||||||
|
if (type === 'mcp') {
|
||||||
|
return '<svg viewBox="0 0 24 24" width="15" height="15" stroke="currentColor" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-5"/><path d="M9 8V2"/><path d="M15 8V2"/><path d="M18 8v5a6 6 0 0 1-12 0V8Z"/></svg>'
|
||||||
|
}
|
||||||
|
return '<svg viewBox="0 0 24 24" width="15" height="15" stroke="currentColor" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"/><path d="M14 2v4a2 2 0 0 0 2 2h4"/></svg>'
|
||||||
|
}
|
||||||
|
|
||||||
|
const createEditorMentionElement = (segment) => {
|
||||||
|
const token = document.createElement('span')
|
||||||
|
token.className = `mention-ref-token mention-ref-${segment.type} mention-ref-editable`
|
||||||
|
token.contentEditable = 'false'
|
||||||
|
token.dataset.mentionRaw = segment.raw
|
||||||
|
token.dataset.mentionType = segment.type
|
||||||
|
token.dataset.mentionValue = segment.value
|
||||||
|
token.title = segment.raw
|
||||||
|
|
||||||
|
const icon = document.createElement('span')
|
||||||
|
icon.className = 'mention-ref-icon'
|
||||||
|
icon.innerHTML = getEditorMentionIconSvg(segment.type)
|
||||||
|
if (segment.type === 'file') {
|
||||||
|
icon.style.color = segment.value.endsWith('/') ? '#ffa940' : getFileIconColor(segment.value)
|
||||||
|
}
|
||||||
|
token.appendChild(icon)
|
||||||
|
|
||||||
|
const label = document.createElement('span')
|
||||||
|
label.className = 'mention-ref-label'
|
||||||
|
label.textContent = getMentionDisplayLabel(segment.type, segment.value, mentionDisplayLabels.value)
|
||||||
|
token.appendChild(label)
|
||||||
|
|
||||||
|
return token
|
||||||
|
}
|
||||||
|
|
||||||
|
const renderEditorContent = (raw = '') => {
|
||||||
|
const editor = inputRef.value
|
||||||
|
if (!editor) return
|
||||||
|
|
||||||
|
editor.replaceChildren()
|
||||||
|
parseMentionText(raw).forEach((segment) => {
|
||||||
|
editor.appendChild(
|
||||||
|
segment.kind === 'text' ? document.createTextNode(segment.text) : createEditorMentionElement(segment)
|
||||||
|
)
|
||||||
|
})
|
||||||
|
lastSyncedEditorValue = String(raw || '')
|
||||||
|
}
|
||||||
|
|
||||||
|
const isNodeInEditor = (node) => {
|
||||||
|
const editor = inputRef.value
|
||||||
|
if (!editor || !node) return false
|
||||||
|
const element = isElementNode(node) ? node : node.parentNode
|
||||||
|
return element === editor || editor.contains(element)
|
||||||
|
}
|
||||||
|
|
||||||
|
const getRawOffsetFromDomPoint = (container, offset) => {
|
||||||
|
const editor = inputRef.value
|
||||||
|
if (!editor || !isNodeInEditor(container)) return getEditorRawValue().length
|
||||||
|
|
||||||
|
let rawOffset = 0
|
||||||
|
let found = false
|
||||||
|
|
||||||
|
const visit = (node) => {
|
||||||
|
if (!node || found) return
|
||||||
|
|
||||||
|
if (node === container) {
|
||||||
|
if (isTextNode(node)) {
|
||||||
|
rawOffset += Math.min(offset, node.textContent?.length || 0)
|
||||||
|
} else if (isMentionNode(node)) {
|
||||||
|
rawOffset += offset > 0 ? getRawNodeLength(node) : 0
|
||||||
|
} else {
|
||||||
|
const children = Array.from(node.childNodes || [])
|
||||||
|
for (let index = 0; index < Math.min(offset, children.length); index++) {
|
||||||
|
rawOffset += getRawNodeLength(children[index])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
found = true
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isTextNode(node) || isMentionNode(node) || isLineBreakNode(node)) {
|
||||||
|
rawOffset += getRawNodeLength(node)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const child of Array.from(node.childNodes || [])) {
|
||||||
|
visit(child)
|
||||||
|
if (found) return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
visit(editor)
|
||||||
|
return rawOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
const getRawSelectionRange = () => {
|
||||||
|
const selection = window.getSelection()
|
||||||
|
if (!selection || selection.rangeCount === 0 || !isNodeInEditor(selection.anchorNode)) {
|
||||||
|
return getStoredRawSelectionRange()
|
||||||
|
}
|
||||||
|
|
||||||
|
const anchor = getRawOffsetFromDomPoint(selection.anchorNode, selection.anchorOffset)
|
||||||
|
const focus = getRawOffsetFromDomPoint(selection.focusNode, selection.focusOffset)
|
||||||
|
return rememberRawSelectionRange({
|
||||||
|
start: Math.min(anchor, focus),
|
||||||
|
end: Math.max(anchor, focus),
|
||||||
|
collapsed: anchor === focus
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const getDomPointForRawOffset = (rawOffset) => {
|
||||||
|
const editor = inputRef.value
|
||||||
|
const offset = Math.max(0, Math.min(rawOffset, getEditorRawValue().length))
|
||||||
|
let remaining = offset
|
||||||
|
|
||||||
|
const pointBeforeNode = (node) => ({ node: node.parentNode || editor, offset: childIndex(node) })
|
||||||
|
const pointAfterNode = (node) => ({ node: node.parentNode || editor, offset: childIndex(node) + 1 })
|
||||||
|
|
||||||
|
const visit = (node) => {
|
||||||
|
if (!node) return null
|
||||||
|
|
||||||
|
if (isTextNode(node)) {
|
||||||
|
const length = node.textContent?.length || 0
|
||||||
|
if (remaining <= length) {
|
||||||
|
return { node, offset: remaining }
|
||||||
|
}
|
||||||
|
remaining -= length
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isMentionNode(node) || isLineBreakNode(node)) {
|
||||||
|
const length = getRawNodeLength(node)
|
||||||
|
if (remaining === 0) return pointBeforeNode(node)
|
||||||
|
if (remaining <= length) return pointAfterNode(node)
|
||||||
|
remaining -= length
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const child of Array.from(node.childNodes || [])) {
|
||||||
|
const point = visit(child)
|
||||||
|
if (point) return point
|
||||||
|
}
|
||||||
|
|
||||||
|
return node === editor ? { node: editor, offset: editor.childNodes.length } : null
|
||||||
|
}
|
||||||
|
|
||||||
|
return visit(editor) || { node: editor, offset: editor?.childNodes.length || 0 }
|
||||||
|
}
|
||||||
|
|
||||||
|
const restoreEditorSelection = (start, end = start) => {
|
||||||
|
const editor = inputRef.value
|
||||||
|
const selection = window.getSelection()
|
||||||
|
if (!editor || !selection) return
|
||||||
|
|
||||||
|
const startPoint = getDomPointForRawOffset(start)
|
||||||
|
const endPoint = getDomPointForRawOffset(end)
|
||||||
|
const range = document.createRange()
|
||||||
|
range.setStart(startPoint.node, startPoint.offset)
|
||||||
|
range.setEnd(endPoint.node, endPoint.offset)
|
||||||
|
selection.removeAllRanges()
|
||||||
|
selection.addRange(range)
|
||||||
|
rememberRawSelectionRange({ start, end, collapsed: start === end })
|
||||||
|
editor.focus()
|
||||||
|
}
|
||||||
|
|
||||||
|
const updateRawValue = (value, caretStart, caretEnd = caretStart) => {
|
||||||
|
renderEditorContent(value)
|
||||||
|
emit('update:modelValue', value)
|
||||||
|
nextTick(() => {
|
||||||
|
restoreEditorSelection(caretStart, caretEnd)
|
||||||
|
adjustTextareaHeight()
|
||||||
|
if (mentionEnabled.value) {
|
||||||
|
checkMentionTrigger()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const replaceCurrentRawSelection = (replacement) => {
|
||||||
|
const currentValue = getEditorRawValue()
|
||||||
|
const range = getRawSelectionRange()
|
||||||
|
const nextValue = replaceRawRange(currentValue, range.start, range.end, replacement)
|
||||||
|
const nextOffset = range.start + replacement.length
|
||||||
|
updateRawValue(nextValue, nextOffset)
|
||||||
|
}
|
||||||
|
|
||||||
// 检测是否在 @ 触发位置
|
// 检测是否在 @ 触发位置
|
||||||
const checkMentionTrigger = (textarea) => {
|
const checkMentionTrigger = () => {
|
||||||
if (!textarea || !mentionEnabled.value) return false
|
if (!inputRef.value || !mentionEnabled.value) return false
|
||||||
|
|
||||||
const cursorPos = textarea.selectionStart
|
const selectionRange = getRawSelectionRange()
|
||||||
const textBeforeCursor = inputValue.value.slice(0, cursorPos)
|
if (!selectionRange.collapsed) {
|
||||||
|
mentionPopupVisible.value = false
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// 检查是否以 @ 结尾(刚输入 @)或 @ 后有内容
|
const activeMention = findActiveMentionQuery(getEditorRawValue(), selectionRange.end)
|
||||||
const atMatch = textBeforeCursor.match(/@(\S*)$/)
|
if (activeMention) {
|
||||||
if (atMatch) {
|
const sameQuery = mentionPopupVisible.value && mentionQuery.value === activeMention.query
|
||||||
mentionQuery.value = atMatch[1]
|
mentionQuery.value = activeMention.query
|
||||||
mentionPopupVisible.value = true
|
mentionPopupVisible.value = true
|
||||||
mentionSelectedIndex.value = 0
|
if (!sameQuery) {
|
||||||
updateMentionItems(mentionQuery.value)
|
mentionSelectedIndex.value = 0
|
||||||
|
updateMentionItems(mentionQuery.value)
|
||||||
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -340,6 +660,7 @@ const updateMentionItems = (query = '') => {
|
|||||||
item.label,
|
item.label,
|
||||||
item.value,
|
item.value,
|
||||||
item.description,
|
item.description,
|
||||||
|
item.resourceId,
|
||||||
item.tokenLabel,
|
item.tokenLabel,
|
||||||
item.type,
|
item.type,
|
||||||
mentionTypePrefixMap[item.type]
|
mentionTypePrefixMap[item.type]
|
||||||
@ -375,43 +696,46 @@ const updateMentionItems = (query = '') => {
|
|||||||
type: 'knowledge',
|
type: 'knowledge',
|
||||||
insertValue: kbName,
|
insertValue: kbName,
|
||||||
tokenLabel: formatMentionToken('knowledge', kbName),
|
tokenLabel: formatMentionToken('knowledge', kbName),
|
||||||
description: kb.kb_id
|
description: kb.description || '',
|
||||||
|
resourceId: kb.kb_id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const mcpItems = mcps.map((m) => {
|
const mcpItems = mcps.map((m) => {
|
||||||
const mcpName = m.name || ''
|
const mcpValue = m.slug || m.value || m.id || m.name || ''
|
||||||
|
const mcpLabel = m.name || m.label || mcpValue
|
||||||
return {
|
return {
|
||||||
value: mcpName,
|
value: mcpValue,
|
||||||
label: mcpName,
|
label: mcpLabel,
|
||||||
type: 'mcp',
|
type: 'mcp',
|
||||||
insertValue: mcpName,
|
insertValue: mcpValue,
|
||||||
tokenLabel: formatMentionToken('mcp', mcpName),
|
tokenLabel: formatMentionToken('mcp', mcpLabel),
|
||||||
description: m.description || ''
|
description: m.description || ''
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const skillItems = skills.map((skill) => {
|
const skillItems = skills.map((skill) => {
|
||||||
const skillValue = skill.slug || skill.name || skill.id || ''
|
const skillValue = skill.slug || skill.value || skill.id || skill.name || ''
|
||||||
|
const skillLabel = skill.name || skill.label || skillValue
|
||||||
return {
|
return {
|
||||||
value: skillValue,
|
value: skillValue,
|
||||||
label: skillValue,
|
label: skillLabel,
|
||||||
type: 'skill',
|
type: 'skill',
|
||||||
insertValue: skillValue,
|
insertValue: skillValue,
|
||||||
tokenLabel: formatMentionToken('skill', skillValue),
|
tokenLabel: formatMentionToken('skill', skillLabel),
|
||||||
description: skill.description || ''
|
description: skill.description || ''
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const subagentItems = subagents.map((subagent) => {
|
const subagentItems = subagents.map((subagent) => {
|
||||||
const subagentValue = subagent.id || subagent.value || subagent.name || ''
|
const subagentValue = subagent.id || subagent.value || subagent.slug || subagent.name || ''
|
||||||
const subagentLabel = subagent.name || subagent.label || subagentValue
|
const subagentLabel = subagent.name || subagent.label || subagentValue
|
||||||
return {
|
return {
|
||||||
value: subagentValue,
|
value: subagentValue,
|
||||||
label: subagentLabel,
|
label: subagentLabel,
|
||||||
type: 'subagent',
|
type: 'subagent',
|
||||||
insertValue: subagentValue,
|
insertValue: subagentValue,
|
||||||
tokenLabel: formatMentionToken('subagent', subagentValue),
|
tokenLabel: formatMentionToken('subagent', subagentLabel),
|
||||||
description: subagent.description || ''
|
description: subagent.description || ''
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -531,28 +855,19 @@ const hasAnyItems = computed(() => {
|
|||||||
const insertMention = (item) => {
|
const insertMention = (item) => {
|
||||||
if (!inputRef.value) return
|
if (!inputRef.value) return
|
||||||
|
|
||||||
const textarea = inputRef.value
|
const currentValue = getEditorRawValue()
|
||||||
const cursorPos = textarea.selectionStart
|
const selectionRange = getRawSelectionRange()
|
||||||
const textBeforeCursor = inputValue.value.slice(0, cursorPos)
|
const activeMention = findActiveMentionQuery(currentValue, selectionRange.end)
|
||||||
|
if (!activeMention) return
|
||||||
|
|
||||||
const mentionValue = item.insertValue || item.value
|
const mentionValue = item.insertValue || item.value
|
||||||
const mentionText = formatMentionToken(item.type, mentionValue)
|
const mentionText = `${formatMentionToken(item.type, mentionValue)} `
|
||||||
|
const newValue = replaceRawRange(currentValue, activeMention.start, activeMention.end, mentionText)
|
||||||
// 移除 @ 及后面的查询内容,插入完整的提及项
|
const newCursorPos = activeMention.start + mentionText.length
|
||||||
const newTextBefore = textBeforeCursor.replace(/@(\S*)$/, `${mentionText} `)
|
|
||||||
const textAfterCursor = inputValue.value.slice(cursorPos)
|
|
||||||
|
|
||||||
const newValue = newTextBefore + textAfterCursor
|
|
||||||
emit('update:modelValue', newValue)
|
|
||||||
|
|
||||||
// 重置光标位置到插入内容之后
|
|
||||||
nextTick(() => {
|
|
||||||
const newCursorPos = newTextBefore.length
|
|
||||||
textarea.setSelectionRange(newCursorPos, newCursorPos)
|
|
||||||
textarea.focus()
|
|
||||||
})
|
|
||||||
|
|
||||||
mentionPopupVisible.value = false
|
mentionPopupVisible.value = false
|
||||||
mentionQuery.value = ''
|
mentionQuery.value = ''
|
||||||
|
updateRawValue(newValue, newCursorPos)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 滚动到选中项
|
// 滚动到选中项
|
||||||
@ -643,6 +958,27 @@ const inputValue = computed({
|
|||||||
set: (val) => emit('update:modelValue', val)
|
set: (val) => emit('update:modelValue', val)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const handleMentionDeletion = (e) => {
|
||||||
|
if (e.key !== 'Backspace' && e.key !== 'Delete') return false
|
||||||
|
|
||||||
|
const currentValue = getEditorRawValue()
|
||||||
|
const selectionRange = getRawSelectionRange()
|
||||||
|
const expandedRange = expandMentionDeletionRange(
|
||||||
|
currentValue,
|
||||||
|
selectionRange.start,
|
||||||
|
selectionRange.end,
|
||||||
|
e.key === 'Delete' ? 'forward' : 'backward'
|
||||||
|
)
|
||||||
|
|
||||||
|
if (!expandedRange) return false
|
||||||
|
|
||||||
|
e.preventDefault()
|
||||||
|
const nextValue = replaceRawRange(currentValue, expandedRange.start, expandedRange.end, '')
|
||||||
|
mentionPopupVisible.value = false
|
||||||
|
updateRawValue(nextValue, expandedRange.start)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
// 处理键盘事件
|
// 处理键盘事件
|
||||||
const handleKeyPress = (e) => {
|
const handleKeyPress = (e) => {
|
||||||
// @ 提及键盘导航
|
// @ 提及键盘导航
|
||||||
@ -653,29 +989,69 @@ const handleKeyPress = (e) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (handleMentionDeletion(e)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e.key === 'Enter' && e.shiftKey) {
|
||||||
|
e.preventDefault()
|
||||||
|
replaceCurrentRawSelection('\n')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
emit('keydown', e)
|
emit('keydown', e)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const shouldCheckMentionOnKeyUp = (e) => {
|
||||||
|
if (!e) return false
|
||||||
|
if (e.key.length === 1) return true
|
||||||
|
return e.key === 'Backspace' || e.key === 'Delete'
|
||||||
|
}
|
||||||
|
|
||||||
// 检测 @ 触发
|
// 检测 @ 触发
|
||||||
const handleKeyUp = (e) => {
|
const handleKeyUp = (e) => {
|
||||||
if (e.key === '@' && mentionEnabled.value) {
|
if (!mentionEnabled.value || isComposing.value || !shouldCheckMentionOnKeyUp(e)) return
|
||||||
|
nextTick(() => {
|
||||||
|
checkMentionTrigger()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 处理输入事件
|
||||||
|
const handleInput = () => {
|
||||||
|
if (isComposing.value) return
|
||||||
|
|
||||||
|
if (inputRef.value && !inputRef.value.querySelector('.mention-ref-token')) {
|
||||||
|
const text = inputRef.value.textContent || ''
|
||||||
|
if (!text.trim()) {
|
||||||
|
inputRef.value.replaceChildren()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const value = serializeEditorContent()
|
||||||
|
lastSyncedEditorValue = value
|
||||||
|
emit('update:modelValue', value)
|
||||||
|
adjustTextareaHeight()
|
||||||
|
|
||||||
|
if (mentionEnabled.value) {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
checkMentionTrigger(e.target)
|
checkMentionTrigger()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理输入事件
|
const handlePaste = (e) => {
|
||||||
const handleInput = (e) => {
|
e.preventDefault()
|
||||||
const value = e.target.value
|
const text = e.clipboardData?.getData('text/plain') || ''
|
||||||
emit('update:modelValue', value)
|
replaceCurrentRawSelection(text)
|
||||||
|
}
|
||||||
|
|
||||||
// 只要开启了提及功能,在任何输入事件时都使用正则表达式动态检测是否唤醒或更新弹出框
|
const handleCompositionStart = () => {
|
||||||
if (mentionEnabled.value) {
|
isComposing.value = true
|
||||||
nextTick(() => {
|
}
|
||||||
checkMentionTrigger(e.target)
|
|
||||||
})
|
const handleCompositionEnd = () => {
|
||||||
}
|
isComposing.value = false
|
||||||
|
handleInput()
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理发送按钮点击
|
// 处理发送按钮点击
|
||||||
@ -689,6 +1065,7 @@ const mentionQuery = ref('')
|
|||||||
const mentionItems = ref({ files: [], knowledgeBases: [], mcps: [], skills: [], subagents: [] })
|
const mentionItems = ref({ files: [], knowledgeBases: [], mcps: [], skills: [], subagents: [] })
|
||||||
const mentionSelectedIndex = ref(0)
|
const mentionSelectedIndex = ref(0)
|
||||||
const searchRequestId = ref(0)
|
const searchRequestId = ref(0)
|
||||||
|
const isComposing = ref(false)
|
||||||
let activeAbortController = null
|
let activeAbortController = null
|
||||||
let mentionSearchTimer = null
|
let mentionSearchTimer = null
|
||||||
|
|
||||||
@ -709,23 +1086,27 @@ const focusInput = () => {
|
|||||||
// 聚焦回来时,如果开启了提及,自动检测当前光标位置是否处于 @提及 范围,是则重新升起弹框
|
// 聚焦回来时,如果开启了提及,自动检测当前光标位置是否处于 @提及 范围,是则重新升起弹框
|
||||||
if (mentionEnabled.value) {
|
if (mentionEnabled.value) {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
checkMentionTrigger(inputRef.value)
|
checkMentionTrigger()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理输入框点击事件,自适应检测光标是否落入 @提及 范围内以唤醒或更新弹窗
|
// 处理输入框点击事件,自适应检测光标是否落入 @提及 范围内以唤醒或更新弹窗
|
||||||
const handleTextareaClick = (e) => {
|
const handleEditorClick = () => {
|
||||||
if (mentionEnabled.value) {
|
if (mentionEnabled.value) {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
checkMentionTrigger(e.target)
|
checkMentionTrigger()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 监听输入值变化
|
// 监听输入值变化
|
||||||
watch(inputValue, () => {
|
watch(inputValue, (value) => {
|
||||||
|
if (value !== lastSyncedEditorValue) {
|
||||||
|
renderEditorContent(value || '')
|
||||||
|
}
|
||||||
|
|
||||||
if (debounceTimer.value) {
|
if (debounceTimer.value) {
|
||||||
clearTimeout(debounceTimer.value)
|
clearTimeout(debounceTimer.value)
|
||||||
}
|
}
|
||||||
@ -740,6 +1121,7 @@ onMounted(() => {
|
|||||||
document.addEventListener('click', closeMentionPopup)
|
document.addEventListener('click', closeMentionPopup)
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
if (inputRef.value) {
|
if (inputRef.value) {
|
||||||
|
renderEditorContent(inputValue.value || '')
|
||||||
adjustTextareaHeight()
|
adjustTextareaHeight()
|
||||||
inputRef.value.focus()
|
inputRef.value.focus()
|
||||||
}
|
}
|
||||||
@ -846,6 +1228,10 @@ defineExpose({
|
|||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
min-height: 44px; /* Default min-height for multi-line */
|
min-height: 44px; /* Default min-height for multi-line */
|
||||||
max-height: 200px;
|
max-height: 200px;
|
||||||
|
overflow-y: auto;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
overflow-wrap: anywhere;
|
||||||
|
cursor: text;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
@ -855,6 +1241,58 @@ defineExpose({
|
|||||||
&::placeholder {
|
&::placeholder {
|
||||||
color: var(--gray-400);
|
color: var(--gray-400);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.mention-editor {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:empty::before {
|
||||||
|
content: attr(data-placeholder);
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
color: var(--gray-400);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&[contenteditable='false'] {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.mention-ref-token) {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: baseline;
|
||||||
|
gap: 2px;
|
||||||
|
max-width: min(100%, 360px);
|
||||||
|
color: var(--main-700);
|
||||||
|
line-height: normal;
|
||||||
|
vertical-align: baseline;
|
||||||
|
white-space: nowrap;
|
||||||
|
user-select: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.mention-ref-icon) {
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.mention-ref-icon svg) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
:deep(.mention-ref-label) {
|
||||||
|
min-width: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
line-height: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.send-button-container {
|
.send-button-container {
|
||||||
@ -992,6 +1430,7 @@ defineExpose({
|
|||||||
0 -4px 16px rgba(0, 0, 0, 0.08),
|
0 -4px 16px rgba(0, 0, 0, 0.08),
|
||||||
0 4px 16px rgba(0, 0, 0, 0.12);
|
0 4px 16px rgba(0, 0, 0, 0.12);
|
||||||
border: 1px solid var(--gray-200);
|
border: 1px solid var(--gray-200);
|
||||||
|
padding: 8px 0;
|
||||||
|
|
||||||
.mention-group {
|
.mention-group {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
@ -1021,6 +1460,35 @@ defineExpose({
|
|||||||
margin: 1px 4px;
|
margin: 1px 4px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
||||||
|
&.resource-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
min-width: 0;
|
||||||
|
padding: 6px 10px;
|
||||||
|
|
||||||
|
.resource-name {
|
||||||
|
color: var(--gray-800);
|
||||||
|
font-weight: 500;
|
||||||
|
flex: 0 1 auto;
|
||||||
|
min-width: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.resource-description {
|
||||||
|
color: var(--gray-500);
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 1.35;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
min-width: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.file-item {
|
&.file-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -1065,11 +1533,42 @@ defineExpose({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover,
|
&:hover {
|
||||||
&.active {
|
|
||||||
background-color: var(--main-10);
|
background-color: var(--main-10);
|
||||||
color: var(--main-600);
|
color: var(--main-600);
|
||||||
|
|
||||||
|
&.resource-item {
|
||||||
|
.resource-name {
|
||||||
|
color: var(--main-600);
|
||||||
|
}
|
||||||
|
.resource-description {
|
||||||
|
color: var(--main-400);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.file-item {
|
||||||
|
.file-info-left .file-name {
|
||||||
|
color: var(--main-600);
|
||||||
|
}
|
||||||
|
.file-parent-dir {
|
||||||
|
color: var(--main-400);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
background-color: var(--gray-50);
|
||||||
|
color: var(--main-600);
|
||||||
|
|
||||||
|
&.resource-item {
|
||||||
|
.resource-name {
|
||||||
|
color: var(--main-600);
|
||||||
|
}
|
||||||
|
.resource-description {
|
||||||
|
color: var(--main-400);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.file-item {
|
&.file-item {
|
||||||
.file-info-left .file-name {
|
.file-info-left .file-name {
|
||||||
color: var(--main-600);
|
color: var(--main-600);
|
||||||
|
|||||||
121
web/src/components/common/MentionTextRenderer.vue
Normal file
121
web/src/components/common/MentionTextRenderer.vue
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<template>
|
||||||
|
<span class="mention-text-renderer">
|
||||||
|
<template v-for="segment in segments" :key="`${segment.kind}-${segment.start}-${segment.end}`">
|
||||||
|
<span v-if="segment.kind === 'text'" class="mention-text-segment">{{ segment.text }}</span>
|
||||||
|
<span
|
||||||
|
v-else
|
||||||
|
class="mention-ref-token"
|
||||||
|
:class="[`mention-ref-${segment.type}`, { 'mention-ref-editable': editable }]"
|
||||||
|
:contenteditable="editable ? 'false' : undefined"
|
||||||
|
:data-mention-raw="editable ? segment.raw : undefined"
|
||||||
|
:data-mention-type="editable ? segment.type : undefined"
|
||||||
|
:data-mention-value="editable ? segment.value : undefined"
|
||||||
|
:title="segment.raw"
|
||||||
|
>
|
||||||
|
<component
|
||||||
|
:is="getTokenIcon(segment)"
|
||||||
|
class="mention-ref-icon"
|
||||||
|
:style="getIconStyle(segment)"
|
||||||
|
:stroke-width="2.2"
|
||||||
|
:size="15"
|
||||||
|
/>
|
||||||
|
<span class="mention-ref-label">{{ getTokenLabel(segment) }}</span>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { computed } from 'vue'
|
||||||
|
import { FolderFilled } from '@ant-design/icons-vue'
|
||||||
|
import { BookMarked, BookOpen, Bot, Plug } from 'lucide-vue-next'
|
||||||
|
import { getFileIcon, getFileIconColor } from '@/utils/file_utils'
|
||||||
|
import { getMentionDisplayLabel, parseMentionText } from '@/utils/mention_utils'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
content: {
|
||||||
|
type: String,
|
||||||
|
default: ''
|
||||||
|
},
|
||||||
|
editable: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
displayLabels: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const segments = computed(() => parseMentionText(props.content))
|
||||||
|
|
||||||
|
const typeIcons = {
|
||||||
|
knowledge: BookOpen,
|
||||||
|
skill: BookMarked,
|
||||||
|
mcp: Plug,
|
||||||
|
subagent: Bot
|
||||||
|
}
|
||||||
|
|
||||||
|
const getTokenIcon = (segment) => {
|
||||||
|
if (segment.type === 'file') {
|
||||||
|
return segment.value.endsWith('/') ? FolderFilled : getFileIcon(segment.value)
|
||||||
|
}
|
||||||
|
return typeIcons[segment.type] || Plug
|
||||||
|
}
|
||||||
|
|
||||||
|
const getIconStyle = (segment) => {
|
||||||
|
if (segment.type === 'file') {
|
||||||
|
return {
|
||||||
|
color: segment.value.endsWith('/') ? '#ffa940' : getFileIconColor(segment.value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
const getTokenLabel = (segment) =>
|
||||||
|
getMentionDisplayLabel(segment.type, segment.value, props.displayLabels)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.mention-text-renderer {
|
||||||
|
white-space: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mention-text-segment {
|
||||||
|
white-space: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mention-ref-token {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: baseline;
|
||||||
|
gap: 2px;
|
||||||
|
max-width: 100%;
|
||||||
|
color: var(--main-700);
|
||||||
|
line-height: normal;
|
||||||
|
vertical-align: baseline;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mention-ref-editable {
|
||||||
|
user-select: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mention-ref-icon {
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mention-ref-label {
|
||||||
|
min-width: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
line-height: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
184
web/src/utils/mention_utils.js
Normal file
184
web/src/utils/mention_utils.js
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
import { getDisplayFileName } from '@/utils/file_utils'
|
||||||
|
|
||||||
|
export const mentionTypePrefixMap = {
|
||||||
|
file: 'file',
|
||||||
|
knowledge: 'knowledge',
|
||||||
|
mcp: 'mcp',
|
||||||
|
skill: 'skill',
|
||||||
|
subagent: 'subagent'
|
||||||
|
}
|
||||||
|
|
||||||
|
const mentionTypePattern = Object.values(mentionTypePrefixMap).join('|')
|
||||||
|
const mentionTokenRegex = new RegExp(`@(${mentionTypePattern}):\\S+`, 'g')
|
||||||
|
|
||||||
|
export const formatMentionToken = (type, value) => {
|
||||||
|
const prefix = mentionTypePrefixMap[type] || type
|
||||||
|
return `@${prefix}:${value}`
|
||||||
|
}
|
||||||
|
|
||||||
|
export const parseMentionText = (text = '') => {
|
||||||
|
const value = String(text || '')
|
||||||
|
const segments = []
|
||||||
|
let lastIndex = 0
|
||||||
|
|
||||||
|
mentionTokenRegex.lastIndex = 0
|
||||||
|
for (const match of value.matchAll(mentionTokenRegex)) {
|
||||||
|
const raw = match[0]
|
||||||
|
const start = match.index ?? 0
|
||||||
|
const end = start + raw.length
|
||||||
|
|
||||||
|
if (start > lastIndex) {
|
||||||
|
segments.push({
|
||||||
|
kind: 'text',
|
||||||
|
text: value.slice(lastIndex, start),
|
||||||
|
start: lastIndex,
|
||||||
|
end: start
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const type = match[1]
|
||||||
|
const prefix = `@${type}:`
|
||||||
|
segments.push({
|
||||||
|
kind: 'mention',
|
||||||
|
raw,
|
||||||
|
type,
|
||||||
|
value: raw.slice(prefix.length),
|
||||||
|
start,
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
lastIndex = end
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lastIndex < value.length) {
|
||||||
|
segments.push({
|
||||||
|
kind: 'text',
|
||||||
|
text: value.slice(lastIndex),
|
||||||
|
start: lastIndex,
|
||||||
|
end: value.length
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return segments
|
||||||
|
}
|
||||||
|
|
||||||
|
const setMentionLabel = (labels, type, value, label) => {
|
||||||
|
const rawValue = String(value || '').trim()
|
||||||
|
const displayLabel = String(label || '').trim()
|
||||||
|
if (!rawValue || !displayLabel) return
|
||||||
|
labels[`${type}:${rawValue}`] = displayLabel
|
||||||
|
}
|
||||||
|
|
||||||
|
export const buildMentionDisplayLabels = (mention = {}) => {
|
||||||
|
const labels = {}
|
||||||
|
|
||||||
|
;(mention.knowledgeBases || []).forEach((kb) => {
|
||||||
|
const label = kb?.name || kb?.label || kb?.kb_id || kb?.value || ''
|
||||||
|
setMentionLabel(labels, 'knowledge', kb?.name, label)
|
||||||
|
setMentionLabel(labels, 'knowledge', kb?.label, label)
|
||||||
|
setMentionLabel(labels, 'knowledge', kb?.kb_id, label)
|
||||||
|
setMentionLabel(labels, 'knowledge', kb?.value, label)
|
||||||
|
})
|
||||||
|
|
||||||
|
;(mention.mcps || []).forEach((mcp) => {
|
||||||
|
const label = mcp?.name || mcp?.label || mcp?.slug || mcp?.id || mcp?.value || ''
|
||||||
|
setMentionLabel(labels, 'mcp', mcp?.slug, label)
|
||||||
|
setMentionLabel(labels, 'mcp', mcp?.id, label)
|
||||||
|
setMentionLabel(labels, 'mcp', mcp?.value, label)
|
||||||
|
setMentionLabel(labels, 'mcp', mcp?.name, label)
|
||||||
|
})
|
||||||
|
|
||||||
|
;(mention.skills || []).forEach((skill) => {
|
||||||
|
const label = skill?.name || skill?.label || skill?.slug || skill?.id || skill?.value || ''
|
||||||
|
setMentionLabel(labels, 'skill', skill?.slug, label)
|
||||||
|
setMentionLabel(labels, 'skill', skill?.id, label)
|
||||||
|
setMentionLabel(labels, 'skill', skill?.value, label)
|
||||||
|
setMentionLabel(labels, 'skill', skill?.name, label)
|
||||||
|
})
|
||||||
|
|
||||||
|
;(mention.subagents || []).forEach((subagent) => {
|
||||||
|
const label = subagent?.name || subagent?.label || subagent?.id || subagent?.value || ''
|
||||||
|
setMentionLabel(labels, 'subagent', subagent?.id, label)
|
||||||
|
setMentionLabel(labels, 'subagent', subagent?.value, label)
|
||||||
|
setMentionLabel(labels, 'subagent', subagent?.slug, label)
|
||||||
|
setMentionLabel(labels, 'subagent', subagent?.name, label)
|
||||||
|
})
|
||||||
|
|
||||||
|
return labels
|
||||||
|
}
|
||||||
|
|
||||||
|
export const getMentionDisplayLabel = (type, value, displayLabels = {}) => {
|
||||||
|
const mappedLabel = displayLabels[`${type}:${value}`]
|
||||||
|
if (mappedLabel) return mappedLabel
|
||||||
|
|
||||||
|
if (type === 'file') {
|
||||||
|
const normalizedPath = String(value || '').replace(/\/+$/, '')
|
||||||
|
return getDisplayFileName(normalizedPath || value, '文件')
|
||||||
|
}
|
||||||
|
return String(value || '').trim() || type
|
||||||
|
}
|
||||||
|
|
||||||
|
export const findActiveMentionQuery = (text = '', rawCaretOffset = 0) => {
|
||||||
|
const value = String(text || '')
|
||||||
|
const offset = Math.max(0, Math.min(rawCaretOffset, value.length))
|
||||||
|
const segments = parseMentionText(value)
|
||||||
|
const mentionAtCursor = segments.find(
|
||||||
|
(segment) => segment.kind === 'mention' && offset > segment.start && offset <= segment.end
|
||||||
|
)
|
||||||
|
|
||||||
|
if (mentionAtCursor) return null
|
||||||
|
|
||||||
|
const textBeforeCursor = value.slice(0, offset)
|
||||||
|
const atIndex = textBeforeCursor.lastIndexOf('@')
|
||||||
|
if (atIndex === -1) return null
|
||||||
|
|
||||||
|
const query = textBeforeCursor.slice(atIndex + 1)
|
||||||
|
if (query.includes('@') || query.includes(':') || /\s/.test(query)) return null
|
||||||
|
|
||||||
|
return { start: atIndex, end: offset, query }
|
||||||
|
}
|
||||||
|
|
||||||
|
export const replaceRawRange = (text = '', start = 0, end = start, replacement = '') => {
|
||||||
|
const value = String(text || '')
|
||||||
|
const safeStart = Math.max(0, Math.min(start, value.length))
|
||||||
|
const safeEnd = Math.max(safeStart, Math.min(end, value.length))
|
||||||
|
return value.slice(0, safeStart) + replacement + value.slice(safeEnd)
|
||||||
|
}
|
||||||
|
|
||||||
|
export const expandMentionDeletionRange = (text = '', start = 0, end = start, direction = 'backward') => {
|
||||||
|
const value = String(text || '')
|
||||||
|
const safeStart = Math.max(0, Math.min(start, value.length))
|
||||||
|
const safeEnd = Math.max(safeStart, Math.min(end, value.length))
|
||||||
|
const mentions = parseMentionText(value).filter((segment) => segment.kind === 'mention')
|
||||||
|
|
||||||
|
if (safeStart !== safeEnd) {
|
||||||
|
const touchedMentions = mentions.filter(
|
||||||
|
(segment) => segment.start < safeEnd && segment.end > safeStart
|
||||||
|
)
|
||||||
|
if (!touchedMentions.length) return null
|
||||||
|
|
||||||
|
return {
|
||||||
|
start: Math.min(safeStart, ...touchedMentions.map((segment) => segment.start)),
|
||||||
|
end: Math.max(safeEnd, ...touchedMentions.map((segment) => segment.end))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const cursor = safeStart
|
||||||
|
if (direction === 'forward') {
|
||||||
|
const mention = mentions.find((segment) => cursor >= segment.start && cursor < segment.end)
|
||||||
|
if (!mention) return null
|
||||||
|
|
||||||
|
const includeTrailingSpace = value[mention.end] === ' '
|
||||||
|
return {
|
||||||
|
start: mention.start,
|
||||||
|
end: includeTrailingSpace ? mention.end + 1 : mention.end
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const mention = mentions.find((segment) => cursor > segment.start && cursor <= segment.end)
|
||||||
|
if (mention) {
|
||||||
|
return { start: mention.start, end: mention.end }
|
||||||
|
}
|
||||||
|
|
||||||
|
return null
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user