From 4c20089472b20319746649decbce3a11f16cb6a0 Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期五, 07 二月 2025 18:43:24 +0800
Subject: [PATCH] 切换主题,自身设置颜色、大小

---
 src/components/chat/smallChat/index.vue |  355 ++++++++++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 252 insertions(+), 103 deletions(-)

diff --git a/src/components/chat/smallChat/index.vue b/src/components/chat/smallChat/index.vue
index e40d41a..7549dc7 100644
--- a/src/components/chat/smallChat/index.vue
+++ b/src/components/chat/smallChat/index.vue
@@ -1,18 +1,14 @@
 <template>
-	<div class="relative">
-		<el-tooltip v-if="!isOpen" content="浣犲ソ锛屾垜鏄疉I鍔╃悊锛屽彲浠ヨВ绛旈棶棰樸�佹帹鑽愯В鍐虫柟妗堢瓑" placement="right">
-			<div
-				class="flex flex-col items-center gap-1 cursor-pointer bg-white rounded-lg shadow-lg p-1 absolute bottom-4 right-4 opacity-80"
-				@click="openChat"
-			>
-				<img :src="assistantPic" class="size-10" alt="AI澶村儚" />
-				<span class="text-lg text-center w-5">AI鍔╂墜</span>
-			</div>
-		</el-tooltip>
-		<div v-else class="bg-white rounded-lg shadow-lg flex flex-col w-[400px] h-[600px] absolute bottom-4 right-4">
+	<div ref="chatContainerRef" :style="chatContainerStyle" class="opacity-90 small-chat-container" @mousedown="startDrag">
+		<div class="bg-white rounded-lg shadow-lg flex flex-col w-[370px] max-h-[540px] absolute bottom-4 right-4">
 			<!-- 澶撮儴 -->
-			<div class="h-12 flex items-center justify-between px-4 border-b">
-				<div class="text-base font-medium">WI姘村姟鏅鸿兘鍔╃悊</div>
+			<div
+				ref="chatHeaderRef"
+				:style="handleStyle"
+				class="small-chat-header h-12 flex items-center justify-between px-4"
+				style="border-bottom: 1px solid #e0e0e0"
+			>
+				<div class="text-lg font-bold py-2">WI姘村姟鏅鸿兘鍔╂墜</div>
 				<div class="flex items-center gap-2">
 					<!-- <el-icon class="cursor-pointer text-gray-400 hover:text-gray-600">
 					<Refresh />
@@ -23,168 +19,296 @@
 				<el-icon class="cursor-pointer text-gray-400 hover:text-gray-600">
 					<Star />
 				</el-icon> -->
-					<el-icon class="cursor-pointer text-gray-400 hover:text-gray-600" @click="closeChat">
+					<!-- <el-icon class="cursor-pointer text-gray-400 hover:text-gray-600" @click="closeChat">
 						<Close />
-					</el-icon>
+					</el-icon> -->
 				</div>
 			</div>
 
 			<!-- 鍐呭鍖� -->
-			<div class="flex-1 overflow-y-auto p-4">
+			<div class="flex-1 overflow-y-auto p-4" ref="chatContentRef" v-show="showHistory">
 				<div v-if="isInit">
-					<!-- 娆㈣繋璇� -->
-					<div class="flex flex-col items-center gap-4 mt-8">
-						<img :src="assistantPic" class="w-16 h-16" alt="AI澶村儚" />
-						<div class="text-lg">浣犲ソ, 鎴戞槸</div>
-						<div class="text-lg text-blue-500">WI姘村姟鏅鸿兘鍔╃悊</div>
+					<div class="mx-1">
+						<div class="robot-tip mt-1 p-0.5">
+							<span class="text-[14px] flex flex-col gap-1">
+								<span style="font-style: italic; font-size: 15px; font-weight: 550">娆㈣繋鏉ュ埌AI涓栫晫锛屾帰绱㈡棤闄愬彲鑳斤紒 </span>
+								<span>鎴戞槸WI姘村姟鏅鸿兘鍔╂墜锛屼綘鍙互杈撳叆浠ヤ笅闂锛岃繘琛屽湴鍥炬搷浣溿��</span>
+							</span>
+						</div>
 					</div>
+					<!-- 娆㈣繋璇� -->
+					<!-- <div class="flex flex-col items-center gap-1.5 mt-8">
+						<div class="text-lg">浣犲ソ, 鎴戞槸</div>
+						<div class="text-lg text-blue-500">WI姘村姟鏅鸿兘鍔╂墜</div>
+						<span class="text-lg">浣犲彲浠ヨ緭鍏ヤ互涓嬮棶棰橈紝杩涜鍦板浘鎿嶄綔</span>
+					</div> -->
 					<!-- 蹇嵎闂 -->
-					<div class="mt-8 flex flex-col gap-3 mx-10">
+					<!-- <div class="mt-8 flex flex-col gap-3 mx-10">
 						<div
 							v-for="(item, index) in initQuestionList"
 							:key="index"
 							class="cursor-pointer hover:bg-gray-50 p-3 rounded-lg border border-solid border-gray-400"
-							@click="handleQuestionClick(item)"
+							@click="handleQuestionClick(item.question)"
 						>
-							{{ item }}
+							{{ item.title }}
 						</div>
-						<!-- <div class="cursor-pointer hover:bg-gray-50 p-3 rounded-lg border border-solid border-gray-400">
-						闃块噷浜戜骇鍝佹�庝箞璐拱,閲嶇偣鏈夊摢浜涘姛鑳�?
-					</div>
-					<div class="cursor-pointer hover:bg-gray-50 p-3 rounded-lg border border-solid border-gray-400">AI 鍔╃悊鑳戒负鎴戝仛浠�涔�?</div> -->
+					</div> -->
+					<div class="mr-1 ml-10 !mt-6 text-[13px] flex flex-col">
+						<div class="space-y-2">
+							<div
+								class="bg-gray-200 hover:bg-gray-300 cursor-pointer rounded-lg p-3"
+								v-for="(item, index) in initQuestionList"
+								:key="index"
+								style="width: fit-content"
+								@click="handleQuestionClick(item.question)"
+							>
+								<div class="over-ellisis-1" style="width: fit-content">
+									{{ item.title }}
+								</div>
+							</div>
+						</div>
+						<!-- <div class="flex-items-center ml-auto mr-2 mt-1 text-gray-600 active:text-gray-500" @click="changeABatch">
+							<span class="ywifont ywicon-shuaxin !text-[12px] mr-1"></span>
+							<span>鎹竴鎵�</span>
+						</div> -->
 					</div>
 				</div>
-				<div v-else class="flex flex-col gap-4">
+				<div v-else class="flex flex-col gap-1.5">
 					<!-- 瀵硅瘽鍐呭 -->
-					<div class="flex flex-col gap-4" v-for="item in historyMessages" :key="item.id">
+					<div class="flex flex-col gap-4" v-for="(item, index) in historyMessages" :key="item.id">
 						<!-- 鐢ㄦ埛鎻愰棶 -->
-						<div class="flex gap-3" v-if="item.role === 'user'">
+						<div class="flex gap-3 items-center" v-if="item.role === 'user'">
 							<img :src="userPic" class="w-10 h-10" alt="鐢ㄦ埛澶村儚" />
-							<div class="flex-1 bg-blue-100">
-								<div class="p-4 rounded-lg">{{ item.content.value }}</div>
+							<div class="flex-1 bg-blue-100 rounded-lg">
+								<div class="p-3  flex items-center">
+									<span>
+										{{ item.content.value }}
+									</span>
+
+									<!-- #region ====================== 鍥炲鍙嶉 ======================-->
+									<el-icon v-if="(historyMessages[index+1].content as AssistantContent).isLoading" class="ml-2 animate-spin"
+										><Loading
+									/></el-icon>
+									<template v-else>
+										<span
+											v-if="(historyMessages[index+1].content as AssistantContent).isError"
+											class="flex items-center ml-4 text-danger before:content-['('] after:content-[')']"
+										>
+											
+											{{ (historyMessages[index + 1].content as AssistantContent).value }}
+											<el-tooltip
+												v-if="(historyMessages[index + 1].content as AssistantContent).reason"
+												:content="(historyMessages[index + 1].content as AssistantContent).reason"
+												placement="top"
+											>
+												<el-icon class="flex-center cursor-pointer ml-1">
+													<question-filled />
+												</el-icon>
+											</el-tooltip>
+										</span>
+										<span v-else class="ml-4 text-success before:content-['('] after:content-[')']">
+											{{ (historyMessages[index + 1].content as AssistantContent).value }}
+										</span>
+									</template>
+
+									<!-- #endregion -->
+								</div>
 							</div>
 						</div>
 
 						<!-- AI鍥炵瓟 -->
-						<div class="flex gap-3" v-else-if="item.role === 'assistant'">
+						<!-- <div class="flex gap-3" v-else-if="item.role === 'assistant'">
 							<img :src="assistantPic" class="w-10 h-10" alt="AI澶村儚" />
 							<div class="flex-1 bg-gray-100">
 								<div v-if="(item.content as AssistantContent)?.isLoading" class="p-4 rounded-lg flex items-center">
 									<el-icon class="animate-spin mr-2"><Loading /></el-icon>
 									AI姝e湪鎬濊�冧腑...
 								</div>
-								<div v-else class="p-4 rounded-lg">
+								<div v-else class="p-4 rounded-lg" :class="{ 'text-danger': (item.content as AssistantContent)?.isError }">
 									{{ item.content.value }}
 								</div>
 							</div>
-						</div>
+						</div> -->
 					</div>
 				</div>
 			</div>
 
 			<!-- 搴曢儴杈撳叆妗� -->
-			<div class="p-4 border-t">
-				<ChatInput v-model="inputText" @sendClick="sendClick" />
+			<div class="p-2 border-t">
+				<ChatInput v-model="inputText" @sendClick="sendClick" @toggleHistory="toggleHistory" :showHistory="showHistory" />
 			</div>
 		</div>
 	</div>
 </template>
 
 <script setup lang="ts" name="smallChat">
-import { computed, onMounted, ref } from 'vue';
+import { computed, nextTick, onMounted, ref } from 'vue';
 import ChatInput from './ChatInput.vue';
 import type { ChatMessage } from './types';
 import { AssistantContent } from './types';
-import { agentStreamByPost, question_stream_reply } from '/@/api/ai/chat';
+import { agentStreamByPost } from '/@/api/ai/chat';
 import { Logger } from '/@/model/logger/Logger';
-import type { OLMap } from '/@/model/map/OLMap';
+import { GaoDeSourceType, gaoDeSourceTypeMap, type OLMap } from '/@/model/map/OLMap';
 import assistantPic from '/static/images/role/assistant-200x192.png';
 import userPic from '/static/images/role/user-200x206.png';
+import { useDrag } from '/@/hooks/useDrag';
+import { cloneDeep, defaults } from 'lodash-es';
 
 const props = defineProps<{
 	olMap?: OLMap;
 }>();
 const isOpen = ref(false);
 const inputText = ref('');
+/** @description 瀵硅瘽瀹屾垚鍓嶆槸鍚︽椂鍒濆鐘舵�� */
+let lastIsInit = true;
 const closeChat = () => {
 	isOpen.value = false;
 };
+const chatHeaderRef = ref<HTMLDivElement>(null);
+
+const chatContainerRef = ref<HTMLDivElement>(null);
+
+const {
+	startDrag,
+	style: chatContainerStyle,
+	handleStyle,
+} = useDrag({
+	handle: chatHeaderRef,
+});
+
 const historyMessages = ref<ChatMessage[]>([]);
 const isInit = computed(() => historyMessages.value.length === 0);
-const initQuestionList = ref(null);
+const initQuestionList = ref([
+	{ title: '鍥惧眰鍒囨崲', question: '鍒囨崲鍗槦鍦板浘' },
+	{ title: '鍦板浘缂╂斁', question: '鏀惧ぇ' },
+	{ title: '璁惧鏄鹃殣', question: '闅愯棌璁惧' },
+	{ title: '璁惧鑱氱劍', question: '鑱氱劍璁惧' },
+]);
+const chatContentRef = ref<HTMLDivElement>(null);
+
 const getLastAssistantMessage = () => {
 	const last = historyMessages.value[historyMessages.value.length - 1];
 	const result = last.role === 'assistant' ? last : null;
 	return result as ChatMessage<AssistantContent>;
 };
-let streamIsOpen = false;
-const startStream = () => {
+
+const mockCommand = (question: string) => {
+	if (question === `鍒囨崲${gaoDeSourceTypeMap[GaoDeSourceType.Vector]}`) {
+		handleMapCommand({ operate: '鍒囨崲鏍囧噯鍦板浘' });
+		return;
+	} else if (question === `鍒囨崲${gaoDeSourceTypeMap[GaoDeSourceType.Satellite]}`) {
+		handleMapCommand({ operate: '鍒囨崲鍗槦鍦板浘' });
+		return;
+	} else if (question === `鍒囨崲${gaoDeSourceTypeMap[GaoDeSourceType.SatelliteRoad]}`) {
+		handleMapCommand({ operate: '鍒囨崲璺綉鍦板浘' });
+		return;
+	} else if (question === '鏄剧ず璁惧') {
+		handleMapCommand({ operate: '鏄剧ず璁惧' });
+		return;
+	} else if (question === '闅愯棌璁惧') {
+		handleMapCommand({ operate: '闅愯棌璁惧' });
+		return;
+	} else if (question === '鑱氱劍璁惧') {
+		handleMapCommand({ operate: '鑱氱劍璁惧' });
+		return;
+	}
+};
+
+const startStream = (question: string) => {
+	if (lastIsInit) {
+		showHistory.value = false;
+	}
+
+	// mockCommand(question);
+	// return;
+	let haveMapOperate = false;
 	agentStreamByPost(
 		{
+			question: question,
 			agent_id: 'a_019471cdb0667a83956b76ac97283f1c',
 		},
 		(chunkRes) => {
-			if (!streamIsOpen) {
-				streamIsOpen = true;
-			}
 			Logger.info('agent stream response锛歕n\n' + JSON.stringify(chunkRes));
-			if (chunkRes.mode === 'question') {
-				if (chunkRes.type === 'json') {
-					if (!initQuestionList.value) {
-						initQuestionList.value = chunkRes.value?.options ?? [];
-					}
-					activeQuestionChunk = chunkRes;
-				}
-			}
+
 			if (chunkRes.mode === 'map') {
+				haveMapOperate = true;
 				if (chunkRes.type === 'string') {
 					const jsonData = JSON.parse(chunkRes.value);
 					handleMapCommand(jsonData);
 				}
 			}
-
 			if (chunkRes.mode === 'finish') {
-				isOpen.value = false;
-				streamIsOpen = false;
-				const last = getLastAssistantMessage();
-				if (last) {
-					last.content.value = '宸查��鍑�';
-					last.content.isLoading = false;
+				if (!haveMapOperate) {
+					refreshAssistantMessage({ reason: `鏈瘑鍒埌鎿嶄綔锛�"${question}"` });
 				}
 			}
 		}
-	);
+	).catch((error) => {
+		Logger.error('agent stream error锛歕n\n' + error);
+		refreshAssistantMessage({ reason: 'AI鍥炵瓟澶辫触' });
+	});
 };
+
+const refreshAssistantMessage = (
+	content: Partial<AssistantContent> = { value: '澶辫触', isError: true, reason: '', isLoading: false }
+) => {
+	const cloneContent = cloneDeep(content);
+	const last = getLastAssistantMessage();
+	content = defaults(cloneContent, {
+		value: '澶辫触',
+		isError: true,
+		reason: '',
+		isLoading: false,
+	});
+	if (last) {
+		for (const key in content) {
+			if (Object.prototype.hasOwnProperty.call(content, key)) {
+				last.content[key] = content[key];
+			}
+		}
+	}
+};
+
 const handleMapCommand = (command: any) => {
 	if (!command) return;
-	const last = getLastAssistantMessage();
-	if (last) {
-		last.content.value = `宸叉墽琛屾搷浣�: ${command.operate}`;
-		switch (command.operate) {
-			case '鏀惧ぇ':
-				props.olMap.zoomIn();
-				break;
+	switch (command.operate) {
+		case '鏀惧ぇ':
+			props.olMap.zoomIn();
+			break;
 
-			case '缂╁皬':
-				props.olMap.zoomOut();
-				break;
-		}
-		last.content.isLoading = false;
+		case '缂╁皬':
+			props.olMap.zoomOut();
+			break;
+		case `鍒囨崲${gaoDeSourceTypeMap[GaoDeSourceType.Vector]}`:
+			props.olMap.setSourceType(GaoDeSourceType.Vector);
+			break;
+		case `鍒囨崲${gaoDeSourceTypeMap[GaoDeSourceType.Satellite]}`:
+			props.olMap.setSourceType(GaoDeSourceType.Satellite);
+			break;
+
+		case `鍒囨崲${gaoDeSourceTypeMap[GaoDeSourceType.SatelliteRoad]}`:
+			props.olMap.setSourceType(GaoDeSourceType.SatelliteRoad);
+			break;
+
+		case '鏄剧ず璁惧':
+			props.olMap.toggleMarkerOverlayVisible(true);
+			break;
+		case '闅愯棌璁惧':
+			props.olMap.toggleMarkerOverlayVisible(false);
+			break;
+		case '鑱氱劍璁惧':
+			props.olMap.adjustViewToMarkers();
+			break;
 	}
+	refreshAssistantMessage({ value: `鎴愬姛`, isError: false });
 };
 
 const scrollToBottom = () => {
-	const chatContainer = document.querySelector('.chat-container');
-	if (chatContainer) {
-		chatContainer.scrollTop = chatContainer.scrollHeight;
+	if (chatContentRef.value) {
+		chatContentRef.value.scrollTop = chatContentRef.value.scrollHeight;
 	}
 };
-const openChat = () => {
-	isOpen.value = true;
-	if (!streamIsOpen) {
-		startStream();
-	}
-};
+
 const applyMessage = () => {
 	const time = Date.now().toString();
 	const userMessageId = `user-${time}`;
@@ -206,44 +330,41 @@
 		},
 	};
 	historyMessages.value.push(assistantMessage);
+
+	nextTick(() => {
+		scrollToBottom();
+	});
 	const userReactive = historyMessages.value.find((item) => item.id === userMessageId);
 	const assistantReactive = historyMessages.value.find((item) => item.id === assistantMessageId);
 	return [userReactive, assistantReactive];
 };
 
-const resetActive = () => {
-	activeQuestionChunk = null;
-};
-
-const refreshMessageList = () => {
-	historyMessages.value = historyMessages.value.concat([]);
-};
 const sendClick = async () => {
-	if (!activeQuestionChunk) return;
 	if (!inputText.value.trim()) return;
+	lastIsInit = isInit.value;
 	const lastMessage = historyMessages.value[historyMessages.value.length - 1];
 	if (lastMessage && lastMessage.role === 'assistant' && (lastMessage.content as AssistantContent).isLoading) return;
 	const [userMessage, assistantMessage] = applyMessage();
 	const question = inputText.value;
 	inputText.value = '';
 
-	const assistantContent = assistantMessage.content as AssistantContent;
-	const res = await question_stream_reply({
-		select: question,
-		reply_id: activeQuestionChunk.value.reply_id,
-	}).catch(() => {
-		assistantContent.isLoading = false;
-		assistantContent.value = 'AI鍥炵瓟澶辫触';
-	});
-	resetActive();
+	startStream(question);
 };
 
 const handleQuestionClick = (item: string) => {
 	inputText.value = item;
 	sendClick();
 };
-const isFinish = ref(false);
-let activeQuestionChunk = null;
+
+//#region ====================== 鍘嗗彶鏄剧ず鎺у埗 ======================
+const showHistory = ref(true);
+const toggleHistory = () => {
+	showHistory.value = !showHistory.value;
+	nextTick(() => {
+		scrollToBottom();
+	});
+};
+//#endregion
 onMounted(() => {});
 </script>
 
@@ -251,4 +372,32 @@
 :deep(.el-input__wrapper) {
 	padding-right: 0;
 }
+
+.robot-tip {
+	position: relative;
+	width: fit-content;
+	height: fit-content;
+	background: linear-gradient(90deg, #ccdcf5 0%, #ccdcf5 25%, #ebf3fe 55%, #ccdcf5 100%);
+	border: 4px solid transparent;
+	border-radius: 10px;
+}
+.robot-tip::after {
+	content: '';
+	position: absolute;
+	top: 100%;
+	left: 20%;
+	transform: translateX(-50%);
+	border: 20px solid transparent;
+	border-top: 20px solid transparent;
+}
+.robot-tip::before {
+	content: '';
+	position: absolute;
+	top: 100%;
+	left: 20%;
+	transform: translateX(-50%);
+	border: 20px solid transparent;
+	border-top: 20px solid #ccdcf5;
+	z-index: 1;
+}
 </style>

--
Gitblit v1.9.3