ChatAgentInput.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. <script setup>
  2. import { ref, unref, onMounted, onUnmounted, computed, watch } from 'vue';
  3. import { useMessage, NInput, NSwitch, NPopover, NScrollbar, NUpload, NTooltip, NProgress } from 'naive-ui';
  4. import { useUserStore } from '@/stores/modules/userStore';
  5. import { baseURL } from '@/utils/request';
  6. import { getFormatYesterDay } from '@/utils/format';
  7. import { helperApi } from '@/api/helper';
  8. import SvgIcon from '@/components/SvgIcon';
  9. import 'load-awesome/css/ball-running-dots.min.css';
  10. const props = defineProps({
  11. activeItem: {
  12. type: Object,
  13. default: () => ({})
  14. }
  15. });
  16. const emit = defineEmits(['onClick', 'onEnter']);
  17. const MAX_NUM = 5;
  18. const useStore = useUserStore();
  19. const modelLoading = defineModel('loading');
  20. const switchStatus = defineModel('switch');
  21. const message = useMessage();
  22. const inpVal = ref('');
  23. const inpRef = ref(null);
  24. const isFocusState = ref(false);
  25. const isOpen = ref(false);
  26. const highlightedIndex = ref(0);
  27. const selectedOption = ref(null);
  28. const helperList = ref([]);
  29. const popoverTriggerRef = ref(null);
  30. const popoverInnerRef = ref(null);
  31. const scrollRef = ref(null);
  32. const uploadFileList = ref([]);
  33. const uploadLoading = ref(false);
  34. const agentOptions = computed(() => helperList.value.filter(({ tools }) => tools));
  35. const lastFileListIndex = computed(() => uploadFileList.value.length == 0 ? 0 : uploadFileList.value.length - 1);
  36. const focusInput = _ => isFocusState.value = true;
  37. const blurInput = _ => isFocusState.value = false;
  38. watch(inpVal, (curVal) => {
  39. if (curVal === "@" && curVal.length === 1) {
  40. if ( !unref(agentOptions).length ) {
  41. return message.warning('当前未配置智能体');
  42. }
  43. if ( modelLoading.value ) {
  44. return message.warning('当前对话进行中');
  45. }
  46. isOpen.value = true;
  47. } else {
  48. isOpen.value = false;
  49. }
  50. })
  51. watch(() => props.activeItem, (curVal) => {
  52. selectedOption.value = curVal?.tools ? curVal : null;
  53. })
  54. const handleInpFocus = () => {
  55. inpRef.value?.focus();
  56. }
  57. const commonEmitEvent = (eventName) => {
  58. const val = unref(inpVal);
  59. const len = val.trim().length;
  60. if ( !len ) {
  61. return message.warning('请输入您的问题或需求');
  62. }
  63. if ( len > 2000 ) {
  64. return message.warning('问题限制2000个字以内');
  65. }
  66. if ( modelLoading.value ) {
  67. return message.warning('当前对话进行中');
  68. }
  69. if ( uploadLoading.value ) {
  70. return message.warning('文件上传中,请稍后');
  71. }
  72. emit(eventName, { showVal: val, question: val, selectedOption: selectedOption.value || {}, uploadFileList: uploadFileList.value });
  73. inpVal.value = '';
  74. uploadFileList.value = [];
  75. }
  76. // 回车事件
  77. const handleInpEnter = (event) => {
  78. if (event.key === 'Enter' && !event.shiftKey && inpVal.value) {
  79. event.preventDefault();
  80. commonEmitEvent('onEnter');
  81. inpRef.value?.blur();
  82. }
  83. }
  84. // 点击事件
  85. const handleBtnClick = () => {
  86. commonEmitEvent("onClick");
  87. }
  88. const clearInpVal = () => {
  89. inpVal.value = '';
  90. }
  91. // 键盘上键无限滚动
  92. const scrollKeyUp = (index) => {
  93. const itemLength = agentOptions.value.length;
  94. if ( itemLength - MAX_NUM > index ) {
  95. scrollRef.value.scrollBy({
  96. top: -40 ,
  97. behavior: 'smooth'
  98. })
  99. }
  100. if ( index == itemLength - 1 ) {
  101. scrollRef.value.scrollTo({
  102. top: itemLength * 40,
  103. behavior: 'smooth'
  104. })
  105. }
  106. }
  107. // 键盘下键无限滚动
  108. const scrollKeyDown = (index) => {
  109. if ( index >= MAX_NUM ) {
  110. scrollRef.value.scrollBy({
  111. top: 40,
  112. behavior: 'smooth'
  113. })
  114. }
  115. if ( index == 0 ) {
  116. scrollRef.value.scrollTo({
  117. top: 0,
  118. behavior: 'smooth'
  119. })
  120. }
  121. }
  122. // 键盘事件
  123. const handleKeyDown = (event) => {
  124. const len = unref(agentOptions).length;
  125. if ( !isOpen.value ) return;
  126. switch (event.key) {
  127. case 'ArrowUp':
  128. event.preventDefault();
  129. highlightedIndex.value = (unref(highlightedIndex) - 1 + len) % len;
  130. scrollKeyUp(unref(highlightedIndex), 1)
  131. break;
  132. case 'ArrowDown':
  133. event.preventDefault();
  134. highlightedIndex.value = (unref(highlightedIndex) + 1) % len;
  135. scrollKeyDown(unref(highlightedIndex))
  136. break;
  137. case 'Enter':
  138. event.preventDefault();
  139. selectOption(unref(highlightedIndex));
  140. break;
  141. default:
  142. break;
  143. }
  144. }
  145. const formatFileItem = (file) => {
  146. const { name } = file;
  147. return {
  148. name: name.substring(0, name.lastIndexOf('.')),
  149. url: "",
  150. size: (file.file.size / 1024).toFixed(2) + "KB",
  151. suffix: name.substring( name.lastIndexOf('.') + 1 ).toUpperCase(),
  152. originSuffix:name.substring( name.lastIndexOf('.') )
  153. }
  154. }
  155. // 处理点击空白处关闭
  156. const closePopoverOutside =(event) => {
  157. if (!isOpen.value) return;
  158. const triggerResult = popoverTriggerRef.value.contains(event.target);
  159. const innerResult = popoverInnerRef.value.contains(event.target);
  160. isOpen.value = triggerResult || innerResult;
  161. }
  162. // 选中选项
  163. const selectOption = (index) => {
  164. selectedOption.value = agentOptions.value[index];
  165. highlightedIndex.value = index;
  166. isOpen.value = false;
  167. inpVal.value = selectedOption.value.content;
  168. }
  169. const beforeUpload = ({ file }) => {
  170. if (( file.file?.size / ( 1024 * 2 ) ) > 5) {
  171. message.warning("只能上传.doc、.docx、.txt格式的文件, 请重新上传");
  172. return false;
  173. }
  174. const index = unref(lastFileListIndex);
  175. uploadFileList.value[index] = {
  176. ...formatFileItem(file),
  177. percentage: 0
  178. }
  179. uploadLoading.value = true
  180. return true;
  181. }
  182. // 上传文件
  183. const handleUploadChange = ({ file }) => {
  184. if (file.status === 'uploading') {
  185. uploadFileList.value[lastFileListIndex.value].percentage = file.percentage;
  186. }
  187. }
  188. // 文件上传完成
  189. const handleFinish = ({ file, event }) => {
  190. uploadLoading.value = false
  191. try {
  192. const res = JSON.parse( (event?.target).response );
  193. if ( res.code == 200 ) {
  194. uploadFileList.value[lastFileListIndex.value] = {
  195. ...uploadFileList.value[lastFileListIndex.value],
  196. url: res.data,
  197. }
  198. }
  199. } catch (error) {
  200. console.log("上传完成, 但是存在错误", error);
  201. }
  202. }
  203. // 上传失败
  204. const handleUploadError = (error) => {
  205. uploadLoading.value = false;
  206. }
  207. // 删除文件
  208. const onRemoveFile = (i) => {
  209. uploadFileList.value.splice(i, 1);
  210. }
  211. const clearFileList = () => {
  212. uploadFileList.value = [];
  213. }
  214. onMounted(async () => {
  215. const { data } = await helperApi.getHelperList();
  216. const result = getFormatYesterDay(data)
  217. helperList.value = result;
  218. document.addEventListener('keydown', handleKeyDown);
  219. document.addEventListener('click', closePopoverOutside);
  220. })
  221. onUnmounted(() => {
  222. document.removeEventListener('keydown', handleKeyDown);
  223. document.removeEventListener('click', closePopoverOutside);
  224. })
  225. defineExpose({
  226. clearFileList,
  227. clearInpVal,
  228. handleInpFocus,
  229. inpVal,
  230. })
  231. </script>
  232. <template>
  233. <NPopover
  234. trigger="hover"
  235. width="trigger"
  236. display-directive="show"
  237. content-style="padding: 0;"
  238. :show-arrow="false"
  239. :show="isOpen"
  240. >
  241. <template #trigger>
  242. <div class="popover-trigger" ref="popoverTriggerRef">
  243. <div class="chat-inp-outer border-[1px]" :class="[{ 'border-[#2454FF]': isFocusState }]">
  244. <ul class="chat-tools-inner py-[10px] px-[10px] bg-[#fcfcfc]" v-show="selectedOption">
  245. <li class="tools-tips space-x-[10px]">
  246. <span>与</span>
  247. <p class="agent-name space-x-[5px]" @click="isOpen = true">
  248. <img src="https://static.fuxicarbon.com/userupload/db77ffe0cef843278a23b0d2db9505fa.png" alt="">
  249. <span>{{ selectedOption?.title }}</span>
  250. </p>
  251. <span>对话中</span>
  252. </li>
  253. <li class="tools-close" @click="selectedOption = null">
  254. <SvgIcon name="chat-icon-close-btn"></SvgIcon>
  255. </li>
  256. </ul>
  257. <ul class="file-list-wrapper" v-show="uploadFileList.length">
  258. <li class="file-item space-x-[14px]" v-for="(item, index) in uploadFileList" :key="index">
  259. <div class="file-icon"></div>
  260. <div class="file-info">
  261. <p class="title">{{ item.name }}</p>
  262. <p class="info space-x-[8px]">
  263. <span class="suffix">{{ item.suffix }}</span>
  264. <span class="size">{{ item.size }}</span>
  265. </p>
  266. </div>
  267. <span class="close" @click="onRemoveFile(i)" v-show="item.percentage == 100">x</span>
  268. <div class="file-progress" v-if="item.percentage != 100">
  269. <NProgress
  270. type="line"
  271. color="#3153f5"
  272. :percentage="item.percentage"
  273. :show-indicator="false"
  274. :height="3"
  275. ></NProgress>
  276. </div>
  277. </li>
  278. </ul>
  279. <div class="chat-inp-inner">
  280. <div class="inp-wrapper flex-1" @click="handleInpFocus">
  281. <div class="upload-inner">
  282. <NUpload
  283. accept=".doc, .docx, .txt"
  284. :disabled="uploadLoading"
  285. :show-file-list="false"
  286. :action="baseURL + '/qiniuyun/upLoadImage'"
  287. :headers="{
  288. 'Authorization': 'Bearer' + useStore.token,
  289. }"
  290. @on-error="handleUploadError"
  291. @change="handleUploadChange"
  292. @finish="handleFinish"
  293. @before-upload="beforeUpload"
  294. >
  295. <NTooltip trigger="hover">
  296. <template #trigger>
  297. <div class="upload-file-button"></div>
  298. </template>
  299. <span class="text-[12px]">支持上传文件(每次一个, 大小5MB以内)接受.doc、.docx、.txt等格式的文件</span>
  300. </NTooltip>
  301. </NUpload>
  302. </div>
  303. <NInput
  304. class="flex-1"
  305. ref="inpRef"
  306. type="textarea"
  307. size="medium"
  308. placeholder="输入@,召唤智能体"
  309. v-model:value="inpVal"
  310. :autosize="{ minRows: 1, maxRows: 5 }"
  311. @focus="focusInput"
  312. @blur="blurInput"
  313. @keypress="handleInpEnter"
  314. />
  315. </div>
  316. <div class="submit-btn">
  317. <button class="btn bg-[#1A2029] hover:bg-[#3C4148]" @click="handleBtnClick">
  318. <SvgIcon name="tool-send-plane" size="22" v-show="!modelLoading"></SvgIcon>
  319. <div style="color: #fff" class="la-ball-running-dots la-sm" v-show="modelLoading">
  320. <div v-for="item in 5" :key="item"></div>
  321. </div>
  322. </button>
  323. </div>
  324. </div>
  325. </div>
  326. <div class="switch-inner pt-[8px] space-x-[6px]">
  327. <NSwitch size="small" v-model:value="switchStatus"></NSwitch>
  328. <span class="text-[12px] text-[#9E9E9E]">使用搜索增强</span>
  329. </div>
  330. <div class="masking-inner text-center text-[#2454FF]"></div>
  331. </div>
  332. </template>
  333. <div class="popover-inner" ref="popoverInnerRef">
  334. <div class="header">
  335. <span>选择智能体</span>
  336. <p class="tools-close" @click="isOpen = false">
  337. <SvgIcon name="chat-icon-close-btn"></SvgIcon>
  338. </p>
  339. </div>
  340. <NScrollbar style="max-height: 200px;" ref="scrollRef" trigger="none">
  341. <div class="item" v-for="item, index in agentOptions" :class="['item', { active: highlightedIndex === index }]" @click="selectOption(index)">
  342. <p class="icon">
  343. <img :src="item.banner" alt="">
  344. </p>
  345. <p class="ml-[10px] space-x-[5px] text">
  346. <span class="text-[15px]">{{item.title}}</span>
  347. <!-- <span class="text-[#888] text-[14px]">这里可以补充个描述</span> -->
  348. </p>
  349. </div>
  350. </NScrollbar>
  351. </div>
  352. </NPopover>
  353. </template>
  354. <style scoped lang="scss">
  355. .chat-inp-outer {
  356. border-radius: 8px;
  357. overflow: hidden;
  358. box-shadow: 0px 3px 12px 0px #97D3FF40;
  359. .chat-tools-inner {
  360. @include flex(x, center, between);
  361. .tools-tips {
  362. @include flex(x, center, start);
  363. color: #666;
  364. font-size: 14px;
  365. .agent-name {
  366. @include flex(x, center, start);
  367. font-weight: bold;
  368. color: #333;
  369. cursor: pointer;
  370. img {
  371. width: 14px;
  372. height: 14px;
  373. }
  374. }
  375. }
  376. }
  377. .chat-inp-inner {
  378. position: relative;
  379. @include flex(x, center, between);
  380. background: #fff;
  381. .inp-wrapper {
  382. @include flex(x, start, center);
  383. padding: 17px 0px 17px 17px;
  384. .upload-inner {
  385. width: 30px;
  386. height: 30px;
  387. padding-top: 2px;
  388. .upload-file-button {
  389. width: 30px;
  390. height: 30px;
  391. background: url("@/assets/svgs/chat/icon-file-default.svg") center center no-repeat;
  392. cursor: pointer;
  393. &:hover {
  394. background: url("@/assets/svgs/chat/icon-file-active.svg") center center no-repeat;
  395. }
  396. }
  397. }
  398. }
  399. .submit-btn {
  400. @include flex(x, center, center);
  401. width: 84px;
  402. .btn {
  403. @include flex(x, center, center);
  404. width: 50px;
  405. height: 32px;
  406. border-radius: 32px;
  407. transition: all .3s;
  408. }
  409. }
  410. }
  411. .file-list-wrapper {
  412. padding: 10px;
  413. padding-bottom: 0px;
  414. background: #fff;
  415. .file-item {
  416. position: relative;
  417. @include flex(x, center, start);
  418. width: 30%;
  419. // height: 52px;
  420. padding: 10px;
  421. border-radius: 4px;
  422. background: #f5f5f5;
  423. .file-icon {
  424. flex-shrink: 0;
  425. width: 36px;
  426. height: 36px;
  427. background: url("@/assets/svgs/chat/icon-file.svg") center center no-repeat;
  428. }
  429. .file-info {
  430. flex: 1;
  431. @include flex(y, start, start);
  432. font-size: 12px;
  433. .title {
  434. width: 170px;
  435. color: #1a2029;
  436. text-overflow: ellipsis;
  437. overflow: hidden;
  438. word-break: break-all;
  439. white-space: nowrap;
  440. }
  441. .info {
  442. flex: 1;
  443. @include flex(x, center, between);
  444. color: #838a95;
  445. }
  446. }
  447. .file-progress {
  448. position: absolute;
  449. left: 0;
  450. bottom: 0;
  451. width: 100%;
  452. margin: 0;
  453. }
  454. .close {
  455. position: absolute;
  456. top: 0;
  457. right: 0;
  458. width: 16px;
  459. height: 16px;
  460. border: 1px solid #fff;
  461. border-radius: 100%;
  462. transform: translate(40%, -40%);
  463. background: #c8c8c8;
  464. font-size: 10px;
  465. text-align: center;
  466. line-height: 12px;
  467. cursor: pointer;
  468. color: #fff;
  469. &:hover {
  470. background: #b7b7b7;
  471. }
  472. }
  473. }
  474. }
  475. }
  476. .popover-inner {
  477. .header {
  478. @include flex(x, center, between);
  479. padding-bottom: 8px;
  480. font-size: 14px;
  481. color: #666;
  482. }
  483. .item {
  484. @include flex(x, center, start);
  485. padding: 8px 10px;
  486. cursor: pointer;
  487. &:hover {
  488. background: #f0fafe;
  489. }
  490. .icon {
  491. @include flex(x, center, center);
  492. width: 24px;
  493. height: 24px;
  494. border-radius: 100%;
  495. background: #e9eef8;
  496. img {
  497. width: 16px;
  498. height: 16px;
  499. }
  500. }
  501. .text {
  502. text-align: left;
  503. overflow: hidden;
  504. white-space: nowrap;
  505. text-overflow: ellipsis;
  506. }
  507. }
  508. .active {
  509. background: #f0fafe;
  510. }
  511. }
  512. .tools-close {
  513. @include flex(x, center, center);
  514. width: 28px;
  515. height: 28px;
  516. border-radius: 6px;
  517. background: #fff;
  518. cursor: pointer;
  519. &:hover {
  520. background: #e9eef8;
  521. }
  522. }
  523. .masking-inner {
  524. position: absolute;
  525. top: -30px;
  526. left: 0;
  527. width: 100%;
  528. height: 30px;
  529. background: linear-gradient(180deg, rgba(232, 241, 250, 0) 0%, #E7F0FA 95%);
  530. }
  531. </style>