ForcePilot/web/src/components/AgentInputArea.vue

363 lines
8.1 KiB
Vue
Raw Normal View History

<template>
<MessageInputComponent
ref="inputRef"
:model-value="modelValue"
@update:modelValue="updateValue"
:is-loading="isLoading"
:disabled="disabled"
:send-button-disabled="sendButtonDisabled"
:placeholder="placeholder"
:mention="mention"
:thread-id="threadId"
@send="handleSend"
@keydown="handleKeyDown"
>
<template #top>
<div v-if="currentImage || previewAttachments.length" class="input-top-stack">
<ImagePreviewComponent
v-if="currentImage"
:image-data="currentImage"
@remove="handleImageRemoved"
class="image-preview-wrapper"
/>
<div v-if="previewAttachments.length" class="attachment-preview-list">
<div
v-for="attachment in previewImageAttachments"
:key="attachment.fileId"
class="attachment-preview-image"
>
<img
:src="attachment.previewUrl"
:alt="attachment.name"
class="attachment-image-thumb"
/>
<button
class="attachment-remove-btn"
type="button"
:aria-label="`移除附件 ${attachment.name}`"
@click.stop="handleAttachmentRemoved(attachment)"
>
<X :size="14" />
</button>
</div>
<div
v-for="attachment in previewFileAttachments"
:key="attachment.fileId"
class="attachment-file-card"
>
<div class="attachment-file-icon" :style="{ color: attachment.iconColor }">
<component :is="attachment.icon" />
</div>
<div class="attachment-file-body">
<div class="attachment-file-name" :title="attachment.name">{{ attachment.name }}</div>
<div class="attachment-file-meta">{{ attachment.meta }}</div>
</div>
<button
class="attachment-remove-btn"
type="button"
:aria-label="`移除附件 ${attachment.name}`"
@click.stop="handleAttachmentRemoved(attachment)"
>
<X :size="14" />
</button>
</div>
</div>
</div>
</template>
<template #options-left>
<AttachmentOptionsComponent
v-if="supportsFileUpload"
:disabled="disabled"
@upload="handleAttachmentUpload"
@upload-image="handleImageUpload"
@upload-image-success="handleImageUploadSuccess"
/>
</template>
<template #actions-left>
<div class="input-actions-left">
<slot name="actions-left-extra"></slot>
</div>
</template>
<template #actions-right>
<div class="input-actions-right">
<slot name="actions-right-extra"></slot>
</div>
</template>
</MessageInputComponent>
</template>
<script setup>
2026-05-29 22:19:58 +08:00
import { computed, ref } from 'vue'
import MessageInputComponent from '@/components/MessageInputComponent.vue'
import ImagePreviewComponent from '@/components/ImagePreviewComponent.vue'
import AttachmentOptionsComponent from '@/components/AttachmentOptionsComponent.vue'
2026-05-29 22:19:58 +08:00
import { X } from 'lucide-vue-next'
import { normalizeAttachmentPreviews } from '@/utils/file_utils'
const props = defineProps({
modelValue: { type: String, default: '' },
isLoading: { type: Boolean, default: false },
disabled: { type: Boolean, default: false },
sendButtonDisabled: { type: Boolean, default: false },
mention: { type: Object, default: () => null },
threadId: { type: String, default: '' },
supportsFileUpload: { type: Boolean, default: false },
attachments: {
type: Array,
default: () => []
}
})
const emit = defineEmits([
'update:modelValue',
'send',
'keydown',
'upload-attachment',
'remove-attachment'
])
const inputRef = ref(null)
const currentImage = ref(null)
const placeholder = '问点什么?使用 @ 可以提及哦~'
const previewAttachments = computed(() => normalizeAttachmentPreviews(props.attachments))
const previewImageAttachments = computed(() =>
previewAttachments.value.filter((attachment) => attachment.isImage && attachment.previewUrl)
)
const previewFileAttachments = computed(() =>
previewAttachments.value.filter((attachment) => !attachment.isImage || !attachment.previewUrl)
)
const updateValue = (val) => {
emit('update:modelValue', val)
}
const handleAttachmentUpload = (files = []) => {
emit('upload-attachment', files)
}
const handleImageUpload = (imageData) => {
if (imageData && imageData.success) {
currentImage.value = imageData
}
}
const handleImageUploadSuccess = () => {
if (inputRef.value) {
inputRef.value.closeOptions()
}
}
const handleImageRemoved = () => {
currentImage.value = null
}
const handleAttachmentRemoved = (attachment) => {
emit('remove-attachment', attachment.raw)
}
const handleSend = () => {
emit('send', { image: currentImage.value })
currentImage.value = null
}
const handleKeyDown = (e) => {
if (props.sendButtonDisabled) {
return
}
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault()
handleSend()
} else {
emit('keydown', e)
}
}
defineExpose({
focus: () => inputRef.value?.focus(),
closeOptions: () => inputRef.value?.closeOptions()
})
</script>
<style lang="less" scoped>
.input-actions-left {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.input-actions-right {
display: flex;
align-items: center;
margin-right: 8px;
2026-04-01 16:55:29 +08:00
gap: 2px;
}
.input-top-stack {
width: 100%;
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 10px;
}
.attachment-preview-list {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
}
.attachment-preview-image {
position: relative;
width: 80px;
height: 80px;
border-radius: 12px;
border: 1px solid var(--gray-150);
background: var(--gray-25);
overflow: hidden;
}
.attachment-image-thumb {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.attachment-file-card {
position: relative;
display: flex;
align-items: center;
gap: 12px;
width: 220px;
min-width: 0;
padding: 10px 34px 10px 12px;
border: 1px solid var(--gray-150);
border-radius: 12px;
background: var(--gray-0);
box-shadow: 0 1px 4px var(--shadow-0);
}
.attachment-file-icon {
width: 40px;
height: 40px;
border-radius: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--main-700);
background: var(--main-30);
}
.attachment-file-body {
min-width: 0;
}
.attachment-file-name {
overflow: hidden;
color: var(--gray-900);
font-size: 14px;
font-weight: 600;
line-height: 1.35;
text-overflow: ellipsis;
white-space: nowrap;
}
.attachment-file-meta {
margin-top: 2px;
color: var(--gray-500);
font-size: 12px;
line-height: 1.3;
}
.attachment-remove-btn {
position: absolute;
top: 6px;
right: 6px;
width: 24px;
height: 24px;
border: none;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0;
color: var(--gray-0);
background: var(--gray-900);
cursor: pointer;
transition:
background-color 0.15s ease,
transform 0.15s ease;
&:hover {
background: var(--gray-700);
}
&:active {
transform: scale(0.96);
}
}
// 输入框操作按钮通用样式(穿透到 slot 内容)
:deep(.input-action-btn) {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 8px;
height: 30px;
border-radius: 8px;
font-size: 13px;
color: var(--gray-600);
cursor: pointer;
transition: all 0.2s ease;
user-select: none;
background: transparent;
border: none;
&:hover {
color: var(--gray-900);
background: var(--gray-50);
}
&.active {
color: var(--gray-900);
background: var(--gray-100);
font-weight: 500;
}
&.disabled {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
}
span {
line-height: 1;
}
}
// slot 内容的 hide-text 响应式样式
:deep(.hide-text) {
@media (max-width: 768px) {
display: none;
}
}
@media (max-width: 768px) {
.input-top-stack {
gap: 8px;
margin-bottom: 10px;
}
.attachment-file-card {
width: min(220px, 100%);
}
}
</style>