ForcePilot/web/src/components/MessageInputComponent.vue
2025-06-16 23:08:40 +08:00

268 lines
5.2 KiB
Vue

<template>
<div class="input-box" :class="customClasses" @click="focusInput">
<div class="input-area">
<a-textarea
ref="inputRef"
class="user-input"
v-model:value="inputValue"
@keydown="handleKeyPress"
:placeholder="placeholder"
:disabled="disabled"
:auto-size="autoSize"
/>
</div>
<div class="input-options">
<div class="options__left">
<slot name="options-left"></slot>
</div>
<div class="options__right">
<a-tooltip :title="isLoading ? '停止回答' : ''">
<a-button
@click="handleSendOrStop"
:disabled="sendButtonDisabled"
type="link"
>
<template #icon>
<component :is="getIcon" class="send-btn"/>
</template>
</a-button>
</a-tooltip>
</div>
</div>
</div>
</template>
<script setup>
import { ref, computed, toRefs, onMounted } from 'vue';
import {
SendOutlined,
ArrowUpOutlined,
LoadingOutlined,
PauseOutlined
} from '@ant-design/icons-vue';
const inputRef = ref(null);
const props = defineProps({
modelValue: {
type: String,
default: ''
},
placeholder: {
type: String,
default: '输入问题...'
},
isLoading: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
sendButtonDisabled: {
type: Boolean,
default: false
},
autoSize: {
type: Object,
default: () => ({ minRows: 2, maxRows: 6 })
},
sendIcon: {
type: String,
default: 'ArrowUpOutlined'
},
customClasses: {
type: Object,
default: () => ({})
}
});
const emit = defineEmits(['update:modelValue', 'send', 'keydown']);
// 图标映射
const iconComponents = {
'SendOutlined': SendOutlined,
'ArrowUpOutlined': ArrowUpOutlined,
'PauseOutlined': PauseOutlined
};
// 根据传入的图标名动态获取组件
const getIcon = computed(() => {
if (props.isLoading) {
return PauseOutlined;
}
return iconComponents[props.sendIcon] || ArrowUpOutlined;
});
// 创建本地引用以进行双向绑定
const inputValue = computed({
get: () => props.modelValue,
set: (val) => emit('update:modelValue', val)
});
// 处理键盘事件
const handleKeyPress = (e) => {
emit('keydown', e);
};
// 处理发送按钮点击
const handleSendOrStop = () => {
emit('send');
};
// 聚焦输入框
const focusInput = () => {
if (inputRef.value && !props.disabled) {
inputRef.value.focus();
}
};
// Wait for component to mount before setting up onStartTyping
onMounted(() => {
// Use the template ref element for onStartTyping
setTimeout(() => {
if (inputRef.value) {
inputRef.value.focus();
}
}, 100);
});
</script>
<style lang="less" scoped>
.input-box {
display: flex;
flex-direction: column;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0.4rem 0.75rem;
border: 2px solid var(--gray-200);
border-radius: 0.8rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
&:focus-within {
border-color: var(--main-500);
background: white;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.input-area {
display: flex;
align-items: flex-end;
gap: 8px;
}
.user-input {
flex: 1;
min-height: 44px;
padding: 0;
background-color: transparent;
border: none;
margin: 0;
color: #222222;
font-size: 14px;
outline: none;
resize: none;
line-height: 1.6;
&:focus {
outline: none;
box-shadow: none;
}
&:active {
outline: none;
}
&::placeholder {
color: #888888;
}
}
.input-options {
display: flex;
// border-top: 1px solid var(--gray-100);
.options__left,
.options__right {
display: flex;
align-items: center;
gap: 10px;
}
.options__right {
width: fit-content;
}
.options__left {
flex: 1;
:deep(.opt-item) {
border-radius: 12px;
border: 1px solid var(--gray-300);
padding: 5px 10px;
cursor: pointer;
font-size: 12px;
color: var(--gray-700);
transition: all 0.2s ease;
&:hover {
background-color: var(--main-10);
color: var(--main-600);
}
&.active {
color: var(--main-600);
border: 1px solid var(--main-500);
background-color: var(--main-10);
}
}
}
}
}
button.ant-btn-icon-only {
height: 32px;
width: 32px;
cursor: pointer;
background-color: var(--main-500);
border-radius: 50%;
border: none;
transition: all 0.2s ease;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
color: white;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
&:hover {
background-color: var(--main-600);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
color: white;
}
&:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
&:disabled {
background-color: var(--gray-400);
cursor: not-allowed;
transform: none;
box-shadow: none;
}
}
@media (max-width: 520px) {
.input-box {
border-radius: 15px;
padding: 0.625rem 0.875rem;
}
}
</style>