| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458 |
- <template>
- <div class="chat-input-area">
- <div v-if="pendingFile" class="pending-file-display">
- <div class="pending-file-card">
- <div class="file-icon-pending"></div>
- <div class="file-info-pending">
- <div class="file-name-pending">{{ pendingFile.name }}</div>
- <div class="file-size-pending">{{ formatFileSize(pendingFile.size) }}</div>
- </div>
- <div class="remove-pending" @click="emit('remove-pending-file')">
- <CloseOutlined />
- </div>
- </div>
- </div>
- <!-- 已选会话引用标签 -->
- <div v-if="selectedSessions.length > 0" class="session-chips">
- <div v-for="session in selectedSessions" :key="session.id" class="session-chip">
- <div class="session-chip-icon"></div>
- <span class="session-chip-name">{{ session.name }}</span>
- <CloseOutlined class="session-chip-remove" @click.stop="removeSession(session.id)" />
- </div>
- </div>
- <a-textarea
- ref="textareaRef"
- :value="modelValue"
- @update:value="handleTextareaInput"
- :rows="3"
- class="chat-input"
- placeholder="请输入你的问题"
- :auto-size="{ minRows: 3, maxRows: 6 }"
- @keydown="handleSessionKeydown"
- @keydown.enter.prevent="handleEnterKey"
- @keydown.backspace="handleBackspace"
- />
- <div class="input-actions">
- <div class="action-left">
- <div class="btn-upload-wrapper">
- <a-tooltip title="添加上下文">
- <div class="btn-upload" @click="togglePopup">
- <div class="plus-icon"></div>
- </div>
- </a-tooltip>
- <div v-if="showPopup" ref="popupRef" class="upload-popup" @click.stop>
- <div class="popup-item" @click="handleAddAttachment">
- <div class="popup-item-icon attach-icon"></div>
- <span class="popup-item-text">添加附件</span>
- </div>
- <!-- <div class="popup-item" @click="handleInsertMention">
- <div class="popup-item-icon mention-icon"></div>
- <span class="popup-item-text">插入 @ 提及</span>
- </div> -->
- <div class="popup-item" @click="handleInsertSession">
- <div class="popup-item-icon session-icon"></div>
- <span class="popup-item-text">插入 # 会话</span>
- </div>
- <!-- <div class="popup-item" @click="handleInsertCommand">
- <div class="popup-item-icon command-icon"></div>
- <span class="popup-item-text">插入 / 命令</span>
- </div> -->
- </div>
- </div>
- <div class="action-divider"></div>
- <div class="btn-edit-mode-wrapper">
- <a-tooltip title="切换模式">
- <div class="btn-edit-mode" @click="toggleEditModePopup">
- <div class="btn-icon" :class="`mode-icon-${selectedEditMode.key}`"></div>
- <span class="btn-text">{{ selectedEditMode.label }}</span>
- <div class="btn-arrow"></div>
- </div>
- </a-tooltip>
- <div v-if="showEditModePopup" ref="editModePopupRef" class="edit-mode-popup">
- <div
- v-for="item in editModeOptions"
- :key="item.key"
- class="edit-mode-item"
- :class="{ active: selectedEditMode.key === item.key }"
- @click="handleSelectEditMode(item)"
- >
- <div class="edit-mode-item-icon" :class="`mode-icon-${item.key}`"></div>
- <div class="edit-mode-item-main">
- <span class="edit-mode-item-label">{{ item.label }}</span>
- <span class="edit-mode-item-desc">{{ item.desc }}</span>
- </div>
- <div class="edit-mode-check" :class="{ visible: selectedEditMode.key === item.key }"></div>
- </div>
- </div>
- </div>
- <input ref="fileInputRef" type="file" style="display: none" @change="emit('file-change', $event)" />
- </div>
- <div class="action-right">
- <div class="btn-context-wrapper" ref="contextPopupRef" @mouseenter="showContextPopup = true" @mouseleave="showContextPopup = false">
- <div class="btn-context" @click="toggleContextPopup">
- <svg class="context-ring" viewBox="0 0 32 32">
- <circle class="context-ring-bg" cx="16" cy="16" r="13" />
- <circle
- class="context-ring-fill"
- cx="16"
- cy="16"
- r="13"
- :stroke-dasharray="contextCircumference"
- :stroke-dashoffset="contextOffset"
- :style="{ stroke: contextColor }"
- />
- </svg>
- <span class="context-percent">{{ contextPercent }}%</span>
- </div>
- <div v-if="showContextPopup" class="context-popup" @click.stop>
- <div class="context-popup-title">上下文容量</div>
- <div class="context-popup-info">
- <span class="context-used">{{ contextDisplayUsed }}</span>
- <span class="context-sep">/</span>
- <span class="context-max">{{ contextDisplayMax }}</span>
- <span class="context-pct">({{ contextPercent }}%)</span>
- </div>
- <div class="context-popup-bar-track">
- <div class="context-popup-bar-fill" :style="{ width: contextPercent + '%', background: contextColor }"></div>
- </div>
- <div class="context-breakdown">
- <div class="breakdown-item">
- <span class="breakdown-label">历史消息</span>
- <span class="breakdown-value">{{ formatTokens(props.contextBreakdown.messages) }}</span>
- </div>
- <div class="breakdown-item">
- <span class="breakdown-label">MCP工具</span>
- <span class="breakdown-value">{{ formatTokens(props.contextBreakdown.mcp) }}</span>
- </div>
- <div class="breakdown-item">
- <span class="breakdown-label">技能描述</span>
- <span class="breakdown-value">{{ formatTokens(props.contextBreakdown.skills) }}</span>
- </div>
- <div class="breakdown-item">
- <span class="breakdown-label">系统提示词</span>
- <span class="breakdown-value">{{ formatTokens(props.contextBreakdown.system_prompt) }}</span>
- </div>
- <div class="breakdown-item">
- <span class="breakdown-label">其他</span>
- <span class="breakdown-value">{{ formatTokens(props.contextBreakdown.other) }}</span>
- </div>
- </div>
- </div>
- </div>
- <!-- <div class="action-divider"></div>
- <div class="btn-model-wrapper" ref="modelPopupRef">
- <a-tooltip title="选择模型">
- <div class="btn-model" @click="toggleModelPopup">
- <span class="btn-text">{{ selectedModel.label }}</span>
- <div class="btn-arrow"></div>
- </div>
- </a-tooltip>
- <div v-if="showModelPopup" class="model-popup" @click.stop>
- <div
- v-for="item in modelOptions"
- :key="item.key"
- class="model-popup-item"
- :class="{ active: selectedModel.key === item.key }"
- @click="handleSelectModel(item)"
- >
- <div class="model-item-main">
- <span class="model-item-label">{{ item.label }}</span>
- <span class="model-item-desc">{{ item.desc }}</span>
- </div>
- <div class="model-item-check" :class="{ visible: selectedModel.key === item.key }"></div>
- </div>
- </div>
- </div> -->
- <div class="action-divider"></div>
- <div class="btn-think-wrapper" ref="thinkPopupRef">
- <a-tooltip title="思考级别">
- <div class="btn-think" @click="toggleThinkPopup">
- <div class="btn-icon think-icon"></div>
- <span class="btn-text">{{ selectedThinkLevel.label }}</span>
- <div class="btn-arrow"></div>
- </div>
- </a-tooltip>
- <div v-if="showThinkPopup" class="think-popup" @click.stop>
- <div
- v-for="item in thinkLevelOptions"
- :key="item.key"
- class="think-popup-item"
- :class="{ active: selectedThinkLevel.key === item.key }"
- @click="handleSelectThinkLevel(item)"
- >
- <div class="think-item-main">
- <span class="think-item-label">{{ item.label }}</span>
- <span class="think-item-desc">{{ item.desc }}</span>
- </div>
- <div class="think-item-check" :class="{ visible: selectedThinkLevel.key === item.key }"></div>
- </div>
- </div>
- </div>
- <div class="action-divider"></div>
- <div class="btn-send" :class="{ disabled: !modelValue.trim() || loading }" @click="handleSend">
- <div class="send-icon"></div>
- </div>
- </div>
- <!-- 会话列表弹框 -->
- <div v-if="showSessionPopup" ref="sessionPopupRef" class="session-popup" @click.stop @pointerdown.stop>
- <div class="session-popup-header">
- <span>选择会话</span>
- <span class="session-count">{{ selectedSessions.length }}/5</span>
- </div>
- <div class="session-list">
- <div
- v-for="(task, index) in filteredSessionList"
- :key="task.id"
- class="session-item"
- :class="{
- active: index === activeSessionIndex,
- selected: isSessionSelected(task.id),
- disabled: (selectedSessions.length >= 5 && !isSessionSelected(task.id)) || task.id === props.currentTaskId,
- }"
- @click="handleSelectSession(task)"
- >
- <div class="session-checkbox" :class="{ checked: isSessionSelected(task.id) }">
- <span v-if="isSessionSelected(task.id)" class="check-mark">✓</span>
- </div>
- <div class="session-item-icon"></div>
- <span class="session-item-name">{{ task.name }}</span>
- </div>
- <div v-if="filteredSessionList.length === 0" class="session-empty">暂无匹配会话</div>
- </div>
- <div class="session-popup-footer">
- <span v-if="selectedSessions.length >= 5" class="max-hint">最多选择5个会话</span>
- <span v-else>点击选择会话(最多5个)</span>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, computed, watch, nextTick } from 'vue';
- import { onClickOutside } from '@vueuse/core';
- import { CloseOutlined } from '@ant-design/icons-vue';
- import { formatFileSize } from './utils';
- import type { AttachedFile, Task } from './types';
- const props = withDefaults(
- defineProps<{
- modelValue: string;
- pendingFile: AttachedFile | null;
- loading: boolean;
- contextUsed?: number;
- contextMax?: number;
- contextPercent?: number;
- contextBreakdown?: { messages: number; mcp: number; skills: number; system_prompt: number; other: number };
- initialThinkLevel?: string;
- initialEditMode?: string;
- taskList?: Task[];
- currentTaskId?: string;
- }>(),
- {
- contextUsed: 0,
- contextMax: 1000000,
- contextPercent: 0,
- contextBreakdown: () => ({ messages: 0, mcp: 0, skills: 0, system_prompt: 0, other: 0 }),
- initialThinkLevel: 'off',
- initialEditMode: 'full',
- taskList: () => [],
- currentTaskId: '',
- }
- );
- const emit = defineEmits<{
- (e: 'update:modelValue', value: string): void;
- (e: 'send'): void;
- (e: 'file-upload'): void;
- (e: 'file-change', event: Event): void;
- (e: 'remove-pending-file'): void;
- (e: 'model-change', modelKey: string): void;
- (e: 'think-level-change', levelKey: string): void;
- (e: 'edit-mode-change', modeKey: string): void;
- (e: 'update:selectedSessions', sessions: Array<{ id: string; name: string }>): void;
- }>();
- const handleSelectModel = (item: ModelOption) => {
- selectedModel.value = item;
- showModelPopup.value = false;
- emit('model-change', item.key);
- };
- const fileInputRef = ref<HTMLInputElement>();
- const popupRef = ref<HTMLElement>();
- const showPopup = ref(false);
- // 上下文容量
- const contextPopupRef = ref<HTMLElement>();
- const showContextPopup = ref(false);
- const contextPercent = computed(() => {
- return props.contextPercent;
- });
- const contextCircumference = computed(() => 2 * Math.PI * 13);
- const contextOffset = computed(() => contextCircumference.value * (1 - contextPercent.value / 100));
- const contextColor = computed(() => {
- if (contextPercent.value >= 90) return '#ff4d4f';
- if (contextPercent.value >= 70) return '#faad14';
- return '#52c41a';
- });
- const contextDisplayUsed = computed(() => {
- if (props.contextUsed >= 10000) return (props.contextUsed / 10000).toFixed(1) + '万';
- return props.contextUsed.toLocaleString();
- });
- const contextDisplayMax = computed(() => {
- if (props.contextMax >= 10000) return (props.contextMax / 10000).toFixed(0) + '万';
- return props.contextMax.toLocaleString();
- });
- const formatTokens = (tokens: number) => {
- if (tokens >= 10000) return (tokens / 10000).toFixed(1) + '万';
- return tokens.toLocaleString();
- };
- const toggleContextPopup = () => {
- showContextPopup.value = !showContextPopup.value;
- };
- onClickOutside(contextPopupRef, () => {
- showContextPopup.value = false;
- });
- // 模型选择
- const modelPopupRef = ref<HTMLElement>();
- const showModelPopup = ref(false);
- interface ModelOption {
- key: string;
- label: string;
- desc: string;
- }
- const modelOptions: ModelOption[] = [
- { key: 'deepseek-v4-pro', label: 'DeepSeek-V4-Pro', desc: '默认模型,综合能力强' },
- { key: 'deepseek-v4', label: 'DeepSeek-V4', desc: '轻量快速,适合简单任务' },
- { key: 'gpt-4o', label: 'GPT-4o', desc: 'OpenAI 多模态模型' },
- { key: 'gpt-4o-mini', label: 'GPT-4o Mini', desc: 'OpenAI 轻量模型' },
- { key: 'claude-sonnet-4', label: 'Claude Sonnet 4', desc: 'Anthropic 高性能模型' },
- { key: 'qwen-max', label: '通义千问 Max', desc: '阿里云旗舰模型' },
- ];
- const selectedModel = ref<ModelOption>(modelOptions[0]);
- const toggleModelPopup = () => {
- showModelPopup.value = !showModelPopup.value;
- };
- onClickOutside(modelPopupRef, () => {
- showModelPopup.value = false;
- });
- // 思考级别
- const thinkPopupRef = ref<HTMLElement>();
- const showThinkPopup = ref(false);
- interface ThinkLevelOption {
- key: string;
- label: string;
- desc: string;
- }
- const thinkLevelOptions: ThinkLevelOption[] = [
- { key: 'off', label: '关闭', desc: '不使用深度思考,响应最快' },
- { key: 'high', label: '高', desc: '深度思考,平衡速度与质量' },
- { key: 'highest', label: '最高', desc: '极致思考,质量最高但较慢' },
- ];
- const selectedThinkLevel = ref<ThinkLevelOption>(thinkLevelOptions[0]);
- watch(
- () => props.initialThinkLevel,
- (level) => {
- const found = thinkLevelOptions.find((opt) => opt.key === level);
- if (found) selectedThinkLevel.value = found;
- },
- { immediate: true }
- );
- const toggleThinkPopup = () => {
- showThinkPopup.value = !showThinkPopup.value;
- };
- const handleSelectThinkLevel = (item: ThinkLevelOption) => {
- selectedThinkLevel.value = item;
- showThinkPopup.value = false;
- emit('think-level-change', item.key);
- };
- onClickOutside(thinkPopupRef, () => {
- showThinkPopup.value = false;
- });
- const editModePopupRef = ref<HTMLElement>();
- const showEditModePopup = ref(false);
- interface EditModeOption {
- key: string;
- label: string;
- desc: string;
- }
- const editModeOptions: EditModeOption[] = [
- // { key: 'confirm', label: '变更前确认', desc: '改文件前先问我' },
- // { key: 'auto', label: '自动编辑', desc: '自动编辑文件' },
- { key: 'plan', label: '计划模式', desc: '编辑前先出计划' },
- { key: 'full', label: '完全访问', desc: '减少确认次数' },
- ];
- const selectedEditMode = ref<EditModeOption>(editModeOptions[1]);
- watch(
- () => props.initialEditMode,
- (mode) => {
- const found = editModeOptions.find((opt) => opt.key === mode);
- if (found) selectedEditMode.value = found;
- },
- { immediate: true }
- );
- onClickOutside(editModePopupRef, () => {
- showEditModePopup.value = false;
- });
- const toggleEditModePopup = () => {
- showEditModePopup.value = !showEditModePopup.value;
- };
- const handleSelectEditMode = (item: EditModeOption) => {
- selectedEditMode.value = item;
- showEditModePopup.value = false;
- emit('edit-mode-change', item.key);
- };
- onClickOutside(popupRef, () => {
- showPopup.value = false;
- });
- const togglePopup = () => {
- showPopup.value = !showPopup.value;
- };
- const handleAddAttachment = () => {
- showPopup.value = false;
- emit('file-upload');
- };
- const handleInsertMention = () => {
- showPopup.value = false;
- };
- // 会话列表弹框
- const textareaRef = ref<InstanceType<any>>();
- const sessionPopupRef = ref<HTMLElement>();
- const showSessionPopup = ref(false);
- const activeSessionIndex = ref(0);
- const selectedSessions = ref<Array<{ id: string; name: string }>>([]);
- const sessionPopupManual = ref(false);
- let isRemovingTag = false;
- let sessionJustSelected = false;
- const isSessionSelected = (sessionId: string) => {
- return selectedSessions.value.some((s) => s.id === sessionId);
- };
- const sessionSearchText = computed(() => {
- const val = props.modelValue || '';
- const hashIndex = val.lastIndexOf('#');
- if (hashIndex === -1) return '';
- const afterHash = val.substring(hashIndex + 1);
- if (afterHash.includes(' ')) return '';
- return afterHash.toLowerCase();
- });
- const filteredSessionList = computed(() => {
- const list = props.taskList.filter((t) => t.sessionId);
- if (!sessionSearchText.value) return list;
- return list.filter((t) => t.name.toLowerCase().includes(sessionSearchText.value));
- });
- watch(filteredSessionList, () => {
- activeSessionIndex.value = 0;
- });
- watch(showSessionPopup, (val) => {
- if (val) activeSessionIndex.value = 0;
- });
- const handleSessionKeydown = (e: KeyboardEvent) => {
- if (!showSessionPopup.value || filteredSessionList.value.length === 0) return;
- if (e.key === 'ArrowDown') {
- e.preventDefault();
- activeSessionIndex.value = (activeSessionIndex.value + 1) % filteredSessionList.value.length;
- } else if (e.key === 'ArrowUp') {
- e.preventDefault();
- activeSessionIndex.value = (activeSessionIndex.value - 1 + filteredSessionList.value.length) % filteredSessionList.value.length;
- } else if (e.key === 'Enter') {
- e.preventDefault();
- const task = filteredSessionList.value[activeSessionIndex.value];
- if (task) {
- sessionJustSelected = true;
- handleSelectSession(task);
- }
- }
- };
- const handleInsertSession = () => {
- showPopup.value = false;
- sessionPopupManual.value = true;
- showSessionPopup.value = true;
- const cur = props.modelValue || '';
- const needsSpace = cur && !cur.endsWith(' ') ? ' ' : '';
- emit('update:modelValue', `${cur}${needsSpace}#`);
- nextTick(() => {
- const el = textareaRef.value?.$el?.querySelector('textarea') || textareaRef.value?.$el;
- if (el) el.focus();
- });
- };
- const handleSelectSession = (task: Task) => {
- if (task.id === props.currentTaskId) return;
- const idx = selectedSessions.value.findIndex((s) => s.id === task.id);
- if (idx >= 0) {
- selectedSessions.value.splice(idx, 1);
- } else {
- if (selectedSessions.value.length >= 5) return;
- selectedSessions.value.push({ id: task.id, name: task.name });
- }
- removeSearchTag();
- emit('update:selectedSessions', [...selectedSessions.value]);
- };
- const removeSearchTag = () => {
- isRemovingTag = true;
- const val = props.modelValue || '';
- const hashIndex = val.lastIndexOf('#');
- if (hashIndex === -1) {
- isRemovingTag = false;
- return;
- }
- emit('update:modelValue', val.substring(0, hashIndex).trimEnd());
- nextTick(() => {
- isRemovingTag = false;
- });
- };
- watch(
- () => props.modelValue,
- (newVal, oldVal) => {
- if (isRemovingTag) return;
- if (oldVal && !newVal) selectedSessions.value = [];
- }
- );
- const removeSession = (sessionId: string) => {
- selectedSessions.value = selectedSessions.value.filter((s) => s.id !== sessionId);
- emit('update:selectedSessions', [...selectedSessions.value]);
- };
- const handleTextareaInput = (val: string) => {
- emit('update:modelValue', val);
- if (sessionPopupManual.value) return;
- const hashIndex = val.lastIndexOf('#');
- if (hashIndex === -1) {
- showSessionPopup.value = false;
- } else {
- const afterHash = val.substring(hashIndex + 1);
- if (afterHash.includes(' ')) {
- showSessionPopup.value = false;
- } else {
- showSessionPopup.value = true;
- }
- }
- };
- const handleBackspace = (e: KeyboardEvent) => {
- const val = props.modelValue || '';
- if (val) return;
- if (selectedSessions.value.length > 0) {
- e.preventDefault();
- selectedSessions.value.pop();
- emit('update:selectedSessions', [...selectedSessions.value]);
- }
- };
- onClickOutside(sessionPopupRef, () => {
- showSessionPopup.value = false;
- sessionPopupManual.value = false;
- });
- const handleInsertCommand = () => {
- showPopup.value = false;
- };
- const handleEnterKey = (e: KeyboardEvent) => {
- if (showSessionPopup.value) return;
- if (sessionJustSelected) {
- sessionJustSelected = false;
- return;
- }
- if (!e.shiftKey && props.modelValue.trim() && !props.loading) {
- emit('send');
- }
- };
- const handleSend = () => {
- if (props.modelValue.trim() && !props.loading) {
- emit('send');
- }
- };
- defineExpose({ fileInputRef });
- </script>
- <style scoped lang="less">
- .chat-input-area {
- position: relative;
- padding: 5px 10px;
- flex-shrink: 0;
- background-color: #002f4a;
- border: 1px solid #005482;
- border-radius: 4px;
- margin: 10px 16px 16px 16px;
- .pending-file-display {
- margin-bottom: 5px;
- .pending-file-card {
- display: flex;
- align-items: center;
- gap: 10px;
- padding: 10px 12px;
- background: rgba(10, 132, 255, 0.06);
- border: 1px solid rgba(63, 80, 106, 0.5);
- border-radius: 6px;
- transition: all 0.3s;
- &:hover {
- background: rgba(10, 132, 255, 0.1);
- }
- .file-icon-pending {
- width: 32px;
- height: 32px;
- background-image: var(--img-chat-attach-icon);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- flex-shrink: 0;
- }
- .file-info-pending {
- flex: 1;
- min-width: 0;
- .file-name-pending {
- font-size: 12px;
- font-weight: 400;
- line-height: 1.4;
- color: #e0e6ed;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-bottom: 2px;
- }
- .file-size-pending {
- font-size: 11px;
- font-weight: 400;
- line-height: 1.3;
- color: #8b949e;
- }
- }
- .remove-pending {
- cursor: pointer;
- color: #8b949e;
- font-size: 14px;
- padding: 4px;
- border-radius: 4px;
- transition: all 0.3s;
- &:hover {
- color: #ff4d4f;
- background: rgba(220, 38, 38, 0.1);
- }
- }
- }
- }
- :deep(.chat-input) {
- color: #e0e6ed;
- background-color: transparent !important;
- border: none !important;
- &::placeholder {
- color: #8b949e !important;
- opacity: 1 !important;
- }
- &:focus,
- &:hover,
- &:active {
- border: none !important;
- box-shadow: none !important;
- outline: none !important;
- }
- }
- .input-actions {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 12px;
- .mode-icon-confirm {
- background-image: var(--img-chat-mode-confirm-icon);
- }
- .mode-icon-auto {
- background-image: var(--img-chat-mode-auto-icon);
- }
- .mode-icon-plan {
- background-image: var(--img-chat-mode-plan-icon);
- }
- .mode-icon-full {
- background-image: var(--img-chat-mode-full-icon);
- }
- .action-left,
- .action-right {
- display: flex;
- gap: 8px;
- .action-divider {
- width: 1px;
- height: 18px;
- background: rgba(255, 255, 255, 0.15);
- align-self: center;
- flex-shrink: 0;
- }
- .btn-icon {
- width: 14px;
- height: 14px;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- flex-shrink: 0;
- }
- .think-icon {
- background-image: var(--img-chat-thinking-icon);
- }
- .btn-text {
- font-size: 12px;
- color: #e0e6ed;
- white-space: nowrap;
- }
- .btn-arrow {
- width: 0;
- height: 0;
- border-left: 4px solid transparent;
- border-right: 4px solid transparent;
- border-top: 4px solid #8b949e;
- flex-shrink: 0;
- }
- .btn-upload-wrapper {
- position: relative;
- }
- .btn-upload {
- width: 30px;
- height: 30px;
- border-radius: 6px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- }
- .plus-icon {
- width: 20px;
- height: 20px;
- background-image: var(--img-chat-input-bg);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- cursor: pointer;
- }
- .upload-popup {
- position: absolute;
- bottom: 38px;
- left: 0;
- background: #0a2a3f;
- border: 1px solid #1a4a6f;
- border-radius: 8px;
- min-width: 160px;
- z-index: 1000;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
- .popup-item {
- display: flex;
- align-items: center;
- gap: 10px;
- padding: 9px 16px;
- cursor: pointer;
- transition: background 0.2s;
- border-radius: 8px;
- &:hover {
- background: rgba(10, 132, 255, 0.15);
- }
- .popup-item-icon {
- width: 18px;
- height: 18px;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- flex-shrink: 0;
- }
- .attach-icon {
- background-image: var(--img-chat-popup-attach-icon);
- }
- .mention-icon {
- background-image: var(--img-chat-popup-mention-icon);
- }
- .session-icon {
- background-image: var(--img-chat-popup-session-icon);
- }
- .command-icon {
- background-image: var(--img-chat-popup-command-icon);
- }
- .popup-item-text {
- font-size: 13px;
- color: #e0e6ed;
- white-space: nowrap;
- }
- }
- }
- .btn-edit-mode-wrapper {
- position: relative;
- }
- .btn-edit-mode {
- height: 28px;
- padding: 0 10px;
- border-radius: 6px;
- display: flex;
- align-items: center;
- gap: 4px;
- cursor: pointer;
- transition: all 0.2s;
- border: 1px solid rgba(255, 255, 255, 0.12);
- &:hover {
- border-color: #3a8fd4;
- background: rgba(10, 132, 255, 0.1);
- }
- }
- .edit-mode-popup {
- position: absolute;
- bottom: 38px;
- left: 50%;
- transform: translateX(-50%);
- background: #0a2a3f;
- border: 1px solid #1a4a6f;
- border-radius: 8px;
- min-width: 200px;
- z-index: 1000;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
- .edit-mode-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px 12px;
- cursor: pointer;
- transition: background 0.2s;
- border-radius: 6px;
- &:hover {
- background: rgba(10, 132, 255, 0.15);
- }
- &.active {
- background: rgba(10, 132, 255, 0.1);
- }
- .edit-mode-item-icon {
- width: 18px;
- height: 18px;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- flex-shrink: 0;
- margin-right: 10px;
- }
- .edit-mode-item-main {
- display: flex;
- flex-direction: column;
- gap: 2px;
- .edit-mode-item-label {
- font-size: 13px;
- color: #e0e6ed;
- white-space: nowrap;
- }
- .edit-mode-item-desc {
- font-size: 11px;
- color: #8b949e;
- white-space: nowrap;
- }
- }
- .edit-mode-check {
- width: 16px;
- height: 16px;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- visibility: hidden;
- &.visible {
- visibility: visible;
- }
- &::after {
- content: '✓';
- font-size: 12px;
- color: #3a8fd4;
- }
- }
- }
- }
- .btn-context-wrapper {
- position: relative;
- display: flex;
- align-items: center;
- }
- .btn-context {
- width: 30px;
- height: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- position: relative;
- border-radius: 6px;
- transition: background 0.2s;
- &:hover {
- background: rgba(10, 132, 255, 0.1);
- }
- .context-ring {
- width: 24px;
- height: 24px;
- transform: rotate(-90deg);
- .context-ring-bg {
- fill: none;
- stroke: rgba(255, 255, 255, 0.1);
- stroke-width: 3;
- }
- .context-ring-fill {
- fill: none;
- stroke-width: 3;
- stroke-linecap: round;
- transition: stroke-dashoffset 0.3s ease;
- }
- }
- .context-percent {
- position: absolute;
- font-size: 8px;
- color: #e0e6ed;
- font-weight: 500;
- line-height: 1;
- }
- }
- .context-popup {
- position: absolute;
- bottom: 42px;
- left: 50%;
- transform: translateX(-50%);
- background: #0a2a3f;
- border: 1px solid #1a4a6f;
- border-radius: 8px;
- min-width: 200px;
- padding: 14px 16px;
- &::before {
- content: '';
- position: absolute;
- bottom: -12px;
- left: 0;
- right: 0;
- height: 12px;
- }
- z-index: 1000;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
- .context-popup-title {
- font-size: 13px;
- color: #8b949e;
- margin-bottom: 8px;
- }
- .context-popup-info {
- display: flex;
- align-items: baseline;
- gap: 2px;
- margin-bottom: 10px;
- .context-used {
- font-size: 18px;
- font-weight: 600;
- color: #e0e6ed;
- }
- .context-sep {
- font-size: 14px;
- color: #8b949e;
- }
- .context-max {
- font-size: 14px;
- color: #8b949e;
- }
- .context-pct {
- font-size: 13px;
- color: #8b949e;
- }
- }
- .context-popup-bar-track {
- width: 100%;
- height: 6px;
- background: rgba(255, 255, 255, 0.08);
- border-radius: 3px;
- overflow: hidden;
- .context-popup-bar-fill {
- height: 100%;
- border-radius: 3px;
- transition: width 0.3s ease;
- }
- }
- .context-breakdown {
- margin-top: 10px;
- padding-top: 10px;
- border-top: 1px solid rgba(255, 255, 255, 0.08);
- .breakdown-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 3px 0;
- .breakdown-label {
- font-size: 12px;
- color: #8b949e;
- }
- .breakdown-value {
- font-size: 12px;
- color: #e0e6ed;
- }
- }
- }
- }
- .btn-model-wrapper {
- position: relative;
- display: flex;
- align-items: center;
- }
- .btn-model {
- height: 28px;
- padding: 0 10px;
- border-radius: 6px;
- display: flex;
- align-items: center;
- gap: 4px;
- cursor: pointer;
- transition: all 0.2s;
- border: 1px solid rgba(255, 255, 255, 0.12);
- &:hover {
- border-color: #3a8fd4;
- background: rgba(10, 132, 255, 0.1);
- }
- }
- .model-popup {
- position: absolute;
- bottom: 38px;
- left: 50%;
- transform: translateX(-50%);
- background: #0a2a3f;
- border: 1px solid #1a4a6f;
- border-radius: 8px;
- min-width: 220px;
- z-index: 1000;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
- .model-popup-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px 12px;
- cursor: pointer;
- transition: background 0.2s;
- border-radius: 6px;
- &:hover {
- background: rgba(10, 132, 255, 0.15);
- }
- &.active {
- background: rgba(10, 132, 255, 0.1);
- }
- .model-item-main {
- display: flex;
- flex-direction: column;
- gap: 2px;
- .model-item-label {
- font-size: 13px;
- color: #e0e6ed;
- white-space: nowrap;
- }
- .model-item-desc {
- font-size: 11px;
- color: #8b949e;
- white-space: nowrap;
- }
- }
- .model-item-check {
- width: 16px;
- height: 16px;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- visibility: hidden;
- &.visible {
- visibility: visible;
- }
- &::after {
- content: '✓';
- font-size: 12px;
- color: #3a8fd4;
- }
- }
- }
- }
- .btn-think-wrapper {
- position: relative;
- display: flex;
- align-items: center;
- }
- .btn-think {
- height: 28px;
- padding: 0 10px;
- border-radius: 6px;
- display: flex;
- align-items: center;
- gap: 4px;
- cursor: pointer;
- transition: all 0.2s;
- border: 1px solid rgba(255, 255, 255, 0.12);
- &:hover {
- border-color: #3a8fd4;
- background: rgba(10, 132, 255, 0.1);
- }
- }
- .think-popup {
- position: absolute;
- bottom: 38px;
- left: 50%;
- transform: translateX(-50%);
- background: #0a2a3f;
- border: 1px solid #1a4a6f;
- border-radius: 8px;
- min-width: 200px;
- z-index: 1000;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
- .think-popup-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px 12px;
- cursor: pointer;
- transition: background 0.2s;
- border-radius: 6px;
- &:hover {
- background: rgba(10, 132, 255, 0.15);
- }
- &.active {
- background: rgba(10, 132, 255, 0.1);
- }
- .think-item-main {
- display: flex;
- flex-direction: column;
- gap: 2px;
- .think-item-label {
- font-size: 13px;
- color: #e0e6ed;
- white-space: nowrap;
- }
- .think-item-desc {
- font-size: 11px;
- color: #8b949e;
- white-space: nowrap;
- }
- }
- .think-item-check {
- width: 16px;
- height: 16px;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- visibility: hidden;
- &.visible {
- visibility: visible;
- }
- &::after {
- content: '✓';
- font-size: 12px;
- color: #3a8fd4;
- }
- }
- }
- }
- .btn-send {
- width: 32px;
- height: 32px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- opacity: 1;
- transition: opacity 0.2s;
- &.disabled {
- opacity: 0.4;
- cursor: not-allowed;
- }
- .send-icon {
- width: 24px;
- height: 24px;
- background-image: var(--img-chat-send-icon);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- }
- }
- }
- .session-chips {
- display: flex;
- flex-wrap: wrap;
- gap: 6px;
- margin-bottom: 5px;
- .session-chip {
- display: inline-flex;
- align-items: center;
- gap: 4px;
- padding: 3px 6px 3px 4px;
- background: rgba(10, 132, 255, 0.15);
- border: 1px solid rgba(10, 132, 255, 0.3);
- border-radius: 4px;
- font-size: 12px;
- color: #e0e6ed;
- cursor: default;
- .session-chip-icon {
- width: 16px;
- height: 16px;
- background-image: var(--img-chat-popup-session-icon);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- flex-shrink: 0;
- }
- .session-chip-name {
- max-width: 150px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .session-chip-remove {
- font-size: 10px;
- color: #8b949e;
- cursor: pointer;
- padding: 0 2px;
- transition: color 0.2s;
- &:hover {
- color: #ff4d4f;
- }
- }
- }
- }
- .session-popup {
- position: absolute;
- bottom: 100%;
- left: 0;
- right: 0;
- margin-bottom: 8px;
- background: #0a2a3f;
- border: 1px solid #1a4a6f;
- border-radius: 8px;
- max-height: 300px;
- display: flex;
- flex-direction: column;
- z-index: 1000;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
- .session-popup-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 10px 14px 8px;
- font-size: 13px;
- color: #e0e6ed;
- border-bottom: 1px solid rgba(63, 80, 106, 0.3);
- flex-shrink: 0;
- .session-count {
- font-size: 12px;
- color: #3a8fd4;
- font-weight: 500;
- }
- }
- .session-list {
- flex: 1;
- overflow-y: auto;
- padding: 6px;
- .session-item {
- display: flex;
- align-items: center;
- gap: 10px;
- padding: 8px 10px;
- cursor: pointer;
- border-radius: 6px;
- transition: background 0.2s;
- &:hover {
- background: rgba(10, 132, 255, 0.15);
- }
- &.active {
- background: rgba(10, 132, 255, 0.2);
- }
- &.selected {
- background: rgba(10, 132, 255, 0.12);
- }
- &.disabled {
- opacity: 0.4;
- cursor: not-allowed;
- &:hover {
- background: transparent;
- }
- }
- .session-checkbox {
- width: 16px;
- height: 16px;
- border: 1.5px solid rgba(255, 255, 255, 0.25);
- border-radius: 3px;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all 0.2s;
- &.checked {
- background: #3a8fd4;
- border-color: #3a8fd4;
- }
- .check-mark {
- font-size: 11px;
- color: #fff;
- line-height: 1;
- }
- }
- .session-item-icon {
- width: 18px;
- height: 18px;
- background-image: var(--img-chat-popup-session-icon);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- flex-shrink: 0;
- }
- .session-item-name {
- font-size: 13px;
- color: #e0e6ed;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .session-empty {
- text-align: center;
- color: #8b949e;
- font-size: 13px;
- padding: 20px 0;
- }
- }
- .session-popup-footer {
- padding: 8px 14px;
- font-size: 12px;
- color: #8b949e;
- text-align: center;
- border-top: 1px solid rgba(63, 80, 106, 0.3);
- flex-shrink: 0;
- .max-hint {
- color: #faad14;
- }
- }
- }
- }
- </style>
|