bhd-components 0.6.2 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/{9eaa797e.esm.es5.development.js → a0cd97b9.esm.es5.development.js} +1 -1
  2. package/dist/{587f2764.esm.es5.production.js → e88a10a0.esm.es5.production.js} +1 -1
  3. package/dist/index.esm.es5.development.css +1711 -827
  4. package/dist/index.esm.es5.development.js +511 -383
  5. package/dist/index.esm.es5.production.css +1 -1
  6. package/dist/index.esm.es5.production.js +1 -1
  7. package/es2017/bhdSelect/index.d.ts +3 -0
  8. package/es2017/bhdSelect/index.js +18 -13
  9. package/es2017/bhdSelect/index.module.less +4 -1
  10. package/es2017/customerService/{contactsList/index.js → contactsList.js} +92 -76
  11. package/es2017/customerService/function.d.ts +1 -1
  12. package/es2017/customerService/function.js +10 -2
  13. package/es2017/customerService/{historyFun/index.d.ts → historyFun.d.ts} +0 -1
  14. package/es2017/customerService/{historyFun/index.js → historyFun.js} +62 -16
  15. package/es2017/customerService/index.d.ts +3 -3
  16. package/es2017/customerService/index.js +143 -82
  17. package/es2017/customerService/index.module.less +496 -6
  18. package/es2017/customerService/index2.module.less +1282 -0
  19. package/es2017/typings.d.ts +12 -0
  20. package/esm/bhdSelect/index.d.ts +3 -0
  21. package/esm/bhdSelect/index.js +18 -13
  22. package/esm/bhdSelect/index.module.less +4 -1
  23. package/esm/customerService/{contactsList/index.js → contactsList.js} +83 -65
  24. package/esm/customerService/function.d.ts +1 -1
  25. package/esm/customerService/function.js +10 -1
  26. package/esm/customerService/{historyFun/index.d.ts → historyFun.d.ts} +0 -1
  27. package/esm/customerService/{historyFun/index.js → historyFun.js} +63 -16
  28. package/esm/customerService/index.d.ts +3 -3
  29. package/esm/customerService/index.js +173 -112
  30. package/esm/customerService/index.module.less +496 -6
  31. package/esm/customerService/index2.module.less +1282 -0
  32. package/esm/typings.d.ts +12 -0
  33. package/package.json +1 -1
  34. package/es2017/customerService/contactsList/index.module.less +0 -208
  35. package/es2017/customerService/historyFun/index.module.less +0 -223
  36. package/esm/customerService/contactsList/index.module.less +0 -208
  37. package/esm/customerService/historyFun/index.module.less +0 -223
  38. /package/es2017/customerService/{contactsList/index.d.ts → contactsList.d.ts} +0 -0
  39. /package/esm/customerService/{contactsList/index.d.ts → contactsList.d.ts} +0 -0
@@ -1,15 +1,19 @@
1
- /* eslint-disable import/first */ import { _ as _object_spread } from "@swc/helpers/_/_object_spread";
1
+ import { _ as _object_spread } from "@swc/helpers/_/_object_spread";
2
2
  import { _ as _object_spread_props } from "@swc/helpers/_/_object_spread_props";
3
3
  import { _ as _sliced_to_array } from "@swc/helpers/_/_sliced_to_array";
4
4
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "@ice/jsx-runtime/jsx-runtime";
5
5
  import React, { useEffect, useState, useRef } from "react";
6
6
  import { Modal, Drawer, Input, Tooltip } from "antd";
7
- import styles from "./index.module.less";
8
- // const inOnline = process.env.NODE_TYPE === "online";
7
+ import cssStyle from "./index.module.less";
8
+ import cssStyleOnline from "./index2.module.less";
9
+ var styles = cssStyle;
10
+ if (false) {
11
+ styles = cssStyleOnline;
12
+ }
9
13
  import { CustomAiIcon, CustomRecord, CustomFullScreen, CustomExitFullScreen, CustomReloading, CustomCopy, CustomLike, CustomDislike, CustomQuote, CustomSending, CustomContacts, CustomDuihao, CustomSoundRecording, CustomRoundClose } from "../icons/index";
10
- import { CloseOutlined } from "@ant-design/icons";
11
- import HistoryFun from "./historyFun/index";
12
- import ContactsList from "./contactsList/index";
14
+ import { CloseOutlined, RightOutlined } from "@ant-design/icons";
15
+ import HistoryFun from "./historyFun";
16
+ import ContactsList from "./contactsList";
13
17
  import { parseDate } from "../utils/Date";
14
18
  import { Remarkable } from "remarkable";
15
19
  import hljs from "highlight.js";
@@ -22,35 +26,34 @@ import { useMediaRecorder } from "./useMediaRecorder"; //录音使用文件
22
26
  import { readMessage, getByteLen, serverUrl, copyText, getDataTime } from "./function"; //一些方法
23
27
  var CustomerService = function(props) {
24
28
  var userData = props.userData, http = props.http, urllocation = props.urllocation, onCancel = props.onCancel, serverName = props.serverName, fetchEventSource = props.fetchEventSource, initShowType = props.initShowType, onEvent = props.onEvent, stepIds = props.stepIds, stepId = props.stepId;
25
- var _useState = _sliced_to_array(useState(props.userData.mid), 2), mid = _useState[0], setmid = _useState[1]; //当前用户id
26
29
  var _useMediaRecorder = useMediaRecorder(), bese64String = _useMediaRecorder.bese64String, startRecord = _useMediaRecorder.startRecord, stopRecord = _useMediaRecorder.stopRecord; //语音转文字
27
- var _useState1 = _sliced_to_array(useState(3), 2), voiceRecordingStatus = _useState1[0], setVoiceRecordingStatus = _useState1[1]; //语音录制状态 3,语音识别完成 2,录制中, 1,录制结束
28
- var _useState2 = _sliced_to_array(useState([]), 2), copyTextOBJ = _useState2[0], setCopyTextObj = _useState2[1]; //复制的消息id
29
- var _useState3 = _sliced_to_array(useState({}), 2), citationContent = _useState3[0], setCitationContent = _useState3[1]; //引用内容
30
- var _useState4 = _sliced_to_array(useState(""), 2), roomId = _useState4[0], setRoomId = _useState4[1]; //聊天室id
31
- var _useState5 = _sliced_to_array(useState([]), 2), historyMessageList = _useState5[0], setHistoryMessageList = _useState5[1]; //历史消息
32
- var _useState6 = _sliced_to_array(useState(""), 2), keyWord = _useState6[0], setKeyWord = _useState6[1]; //搜索内容
33
- var _useState7 = _sliced_to_array(useState([]), 2), questionsList = _useState7[0], setQuestionsList = _useState7[1]; //问题列表
34
- var _useState8 = _sliced_to_array(useState([]), 2), hotQuestionsList = _useState8[0], setHotQuestionsList = _useState8[1]; //热门问题
35
- var _useState9 = _sliced_to_array(useState(false), 2), greetingMessage = _useState9[0], setGreetingMessage = _useState9[1]; //聊天记录列表是否请求完成
36
- var _useState10 = _sliced_to_array(useState(1), 2), pageNum = _useState10[0], setPageNum = _useState10[1]; //页码
37
- var _useState11 = _sliced_to_array(useState(0), 2), pageNumHistory = _useState11[0], setPageNumHistory = _useState11[1]; //用于搜索历史记录后的页码
38
- var _useState12 = _sliced_to_array(useState(0), 2), pageCount = _useState12[0], setPageCount = _useState12[1]; //总页数
39
- var _useState13 = _sliced_to_array(useState(false), 2), loading = _useState13[0], setLoading = _useState13[1]; //上拉显示加载图标
40
- var _useState14 = _sliced_to_array(useState(false), 2), bottomLoading = _useState14[0], setBottomLoading = _useState14[1]; //下拉显示加载图标
41
- var _useState15 = _sliced_to_array(useState(true), 2), finished = _useState15[0], setFinished = _useState15[1]; //是否结束生成
42
- var _useState16 = _sliced_to_array(useState(""), 2), lastId = _useState16[0], setLastId = _useState16[1]; //最后一条数据的id,可用于定位当前位置
43
- var _useState17 = _sliced_to_array(useState({}), 2), chatWith = _useState17[0], setChatWith = _useState17[1]; //聊天的老师id或ai
44
- var _useState18 = _sliced_to_array(useState(false), 2), firstLoad = _useState18[0], setFirstLoad = _useState18[1]; //第一次切换全屏时滚动到页面底部
45
- var _useState19 = _sliced_to_array(useState(45), 2), buttomHei = _useState19[0], setButtomHei = _useState19[1]; //底部输入框的高度
46
- var _useState20 = _sliced_to_array(useState(false), 2), showHistory = _useState20[0], setShowHistory = _useState20[1]; //是否显示历史记录
47
- var _useState21 = _sliced_to_array(useState(false), 2), showContacts = _useState21[0], setShowContacts = _useState21[1]; //是否显示关联老师
48
- var _useState22 = _sliced_to_array(useState(-1), 2), showType = _useState22[0], setShowType = _useState22[1]; //显示聊天框类型 1、侧边栏 2 modal 3 相应的div中 newlabo中使用
49
- var _useState23 = _sliced_to_array(useState(-1), 2), answerMode = _useState23[0], setAnswerMode = _useState23[1]; //设置回答模式。1,召唤老师回答
50
- var _useState24 = _sliced_to_array(useState([]), 2), teacherList = _useState24[0], setTeacherList = _useState24[1]; //老师列表
51
- var _useState25 = _sliced_to_array(useState({}), 2), problem = _useState25[0], setProblem = _useState25[1]; //召唤老师回答的问题
52
- var _useState26 = _sliced_to_array(useState([]), 2), roomList = _useState26[0], setRoomList = _useState26[1]; //聊天列表
53
- var _useState27 = _sliced_to_array(useState([]), 2), chatObj = _useState27[0], setChatObj = _useState27[1]; //聊天记录id保存,用来在实验报告中记录
30
+ var _useState = _sliced_to_array(useState(3), 2), voiceRecordingStatus = _useState[0], setVoiceRecordingStatus = _useState[1]; //语音录制状态 3,语音识别完成 2,录制中, 1,录制结束
31
+ var _useState1 = _sliced_to_array(useState([]), 2), copyTextOBJ = _useState1[0], setCopyTextObj = _useState1[1]; //复制的消息id
32
+ var _useState2 = _sliced_to_array(useState({}), 2), citationContent = _useState2[0], setCitationContent = _useState2[1]; //引用内容
33
+ var _useState3 = _sliced_to_array(useState(""), 2), roomId = _useState3[0], setRoomId = _useState3[1]; //聊天室id
34
+ var _useState4 = _sliced_to_array(useState([]), 2), historyMessageList = _useState4[0], setHistoryMessageList = _useState4[1]; //历史消息
35
+ var _useState5 = _sliced_to_array(useState(""), 2), keyWord = _useState5[0], setKeyWord = _useState5[1]; //搜索内容
36
+ var _useState6 = _sliced_to_array(useState([]), 2), questionsList = _useState6[0], setQuestionsList = _useState6[1]; //问题列表
37
+ var _useState7 = _sliced_to_array(useState([]), 2), hotQuestionsList = _useState7[0], setHotQuestionsList = _useState7[1]; //热门问题
38
+ var _useState8 = _sliced_to_array(useState(false), 2), greetingMessage = _useState8[0], setGreetingMessage = _useState8[1]; //聊天记录列表是否请求完成
39
+ var _useState9 = _sliced_to_array(useState(1), 2), pageNum = _useState9[0], setPageNum = _useState9[1]; //页码
40
+ var _useState10 = _sliced_to_array(useState(0), 2), pageNumHistory = _useState10[0], setPageNumHistory = _useState10[1]; //用于搜索历史记录后的页码
41
+ var _useState11 = _sliced_to_array(useState(0), 2), pageCount = _useState11[0], setPageCount = _useState11[1]; //总页数
42
+ var _useState12 = _sliced_to_array(useState(false), 2), loading = _useState12[0], setLoading = _useState12[1]; //上拉显示加载图标
43
+ var _useState13 = _sliced_to_array(useState(false), 2), bottomLoading = _useState13[0], setBottomLoading = _useState13[1]; //下拉显示加载图标
44
+ var _useState14 = _sliced_to_array(useState(true), 2), finished = _useState14[0], setFinished = _useState14[1]; //是否结束生成
45
+ var _useState15 = _sliced_to_array(useState(""), 2), lastId = _useState15[0], setLastId = _useState15[1]; //最后一条数据的id,可用于定位当前位置
46
+ var _useState16 = _sliced_to_array(useState({}), 2), chatWith = _useState16[0], setChatWith = _useState16[1]; //聊天的老师id或ai
47
+ var _useState17 = _sliced_to_array(useState(false), 2), firstLoad = _useState17[0], setFirstLoad = _useState17[1]; //第一次切换全屏时滚动到页面底部
48
+ var _useState18 = _sliced_to_array(useState(45), 2), buttomHei = _useState18[0], setButtomHei = _useState18[1]; //底部输入框的高度
49
+ var _useState19 = _sliced_to_array(useState(false), 2), showHistory = _useState19[0], setShowHistory = _useState19[1]; //是否显示历史记录
50
+ var _useState20 = _sliced_to_array(useState(false), 2), showContacts = _useState20[0], setShowContacts = _useState20[1]; //是否显示关联老师
51
+ var _useState21 = _sliced_to_array(useState(-1), 2), showType = _useState21[0], setShowType = _useState21[1]; //显示聊天框类型 1、侧边栏 2 modal 3 相应的div中 newlabo中使用
52
+ var _useState22 = _sliced_to_array(useState(-1), 2), answerMode = _useState22[0], setAnswerMode = _useState22[1]; //设置回答模式。1,召唤老师回答
53
+ var _useState23 = _sliced_to_array(useState([]), 2), teacherList = _useState23[0], setTeacherList = _useState23[1]; //老师列表
54
+ var _useState24 = _sliced_to_array(useState({}), 2), problem = _useState24[0], setProblem = _useState24[1]; //召唤老师回答的问题
55
+ var _useState25 = _sliced_to_array(useState([]), 2), roomList = _useState25[0], setRoomList = _useState25[1]; //聊天列表
56
+ var _useState26 = _sliced_to_array(useState([]), 2), chatObj = _useState26[0], setChatObj = _useState26[1]; //聊天记录id保存,用来在实验报告中记录
54
57
  var timer = useRef(null); //文本框输入时
55
58
  var receiveMessageTimer = useRef(null); //接收ai发回的消息
56
59
  var voiceCountdownTimer = useRef(null); //语音录制倒计时
@@ -58,6 +61,8 @@ var CustomerService = function(props) {
58
61
  var roomMessage = useRef(null); //循环当前页面的新消息
59
62
  var ctrl = useRef(); //停止生成ai回答时使用
60
63
  var childRef = useRef(null); //获取子组件方法
64
+ // const [mid, setmid] = useState(props.userData.mid); //当前用户id
65
+ var mid = props.userData.mid;
61
66
  var remarkable = new Remarkable({
62
67
  highlight: function highlight(str, lang) {
63
68
  if (lang && hljs.getLanguage(lang)) {
@@ -85,37 +90,39 @@ var CustomerService = function(props) {
85
90
  var container = document.getElementById(showType == 1 || showType == 3 ? "chat_content" : "chat_content_modal");
86
91
  var scrollTop = container.scrollTop;
87
92
  // const scrollBottom = container.scroll;
88
- // console.log(container,'sdcsdcsdcsdc');
89
- container.onscroll = function(e) {
90
- //元素内部页面滚动到达底部
91
- if (e.target.clientHeight + e.target.scrollTop >= e.target.scrollHeight) {
92
- //console.log('元素内部页面滚动到达底部');
93
- if (pageNumHistory > 1) {
94
- console.log(pageNumHistory, "pageNumpageNumpageNum");
95
- var number = pageNumHistory - 1;
96
- // setPageNum((pageNum) => {
97
- // return pageNum - 1;
98
- // });
99
- setPageNumHistory(number);
100
- clearTimeout(listTimer.current);
101
- setBottomLoading(true);
102
- listTimer.current = setTimeout(function() {
103
- console.log("加载下一页", number);
104
- getHistoryMessage(number, 4);
105
- }, 1000);
106
- }
93
+ var clientHeight = container.clientHeight;
94
+ var scrollHeight = container.scrollHeight;
95
+ // console.log(scrollTop,clientHeight,scrollHeight,'333dfkvmdfv')
96
+ if (clientHeight + scrollTop + 0.5 >= scrollHeight) {
97
+ console.log("到底部了22222");
98
+ // console.log(11111111,pageNumHistory)
99
+ if (pageNumHistory > 1) {
100
+ // console.log(pageNumHistory,'pageNumpageNumpageNum')
101
+ var number = pageNumHistory - 1;
102
+ setPageNumHistory(number);
103
+ clearTimeout(listTimer.current);
104
+ setBottomLoading(true);
105
+ listTimer.current = setTimeout(function() {
106
+ // console.log("加载下一页", number);
107
+ getHistoryMessage(number, 4);
108
+ }, 1000);
109
+ } else {
110
+ setLastId("");
107
111
  }
108
- };
112
+ }
109
113
  if (scrollTop == 0 && pageCount > pageNum && pageCount > 0) {
114
+ console.log("到顶了", pageNum);
115
+ // if(pageNum == 1){
116
+ // setFirstpage(true);//代表是否存在第一页
117
+ // }
110
118
  setLoading(true);
111
- var number = pageNum + 1;
119
+ var number1 = pageNum + 1;
112
120
  setPageNum(function(pageNum) {
113
121
  return pageNum + 1;
114
122
  });
115
- clearTimeout(listTimer.current);
116
123
  listTimer.current = setTimeout(function() {
117
- console.log("下拉加载下一页", number);
118
- getHistoryMessage(number, 2);
124
+ console.log("下拉加载下一页", number1);
125
+ getHistoryMessage(number1, 2);
119
126
  }, 1000);
120
127
  }
121
128
  };
@@ -407,19 +414,23 @@ var CustomerService = function(props) {
407
414
  }
408
415
  }).then(function(res) {
409
416
  if (res.data.id) {
410
- setHistoryMessageList(function(historyMessageList) {
411
- var newHistoryMessageList = historyMessageList.concat(_object_spread_props(_object_spread({}, obj), {
412
- id: res.data.id,
413
- upvoted: false,
414
- downvoted: false,
415
- createdAt: getDataTime(-1)
416
- }));
417
- return newHistoryMessageList;
418
- });
419
- scrollToBottom();
420
- //记录一个问题id,用于记录老师和学生之间的聊天保存到实验报告中
421
- // if(stepIds != undefined && stepIds != '' && (showType == 3 || showType == 4)){
422
- // setChatObj({'roomId':roomId,'id':res.data.id});
417
+ console.log(pageNum, pageNumHistory, lastId, "dlskskdsd4444");
418
+ if (pageNum == 1 || pageNumHistory == 1 || pageNumHistory == 0) {
419
+ setHistoryMessageList(function(historyMessageList) {
420
+ var newHistoryMessageList = historyMessageList.concat(_object_spread_props(_object_spread({}, obj), {
421
+ id: res.data.id,
422
+ upvoted: false,
423
+ downvoted: false,
424
+ createdAt: getDataTime(-1)
425
+ }));
426
+ return newHistoryMessageList;
427
+ });
428
+ if (!lastId) {
429
+ setTimeout(function() {
430
+ scrollToBottom();
431
+ }, 100);
432
+ }
433
+ }
423
434
  //判断当前窗口是否是
424
435
  if (type == 1) {
425
436
  var roomList = [
@@ -435,7 +446,6 @@ var CustomerService = function(props) {
435
446
  return list2.concat(roomList);
436
447
  });
437
448
  }
438
- // }
439
449
  }
440
450
  }).catch(function(err) {
441
451
  console.log(err);
@@ -898,6 +908,7 @@ var CustomerService = function(props) {
898
908
  var getHistoryMessage = function(pageNum, flag) {
899
909
  var id = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "1";
900
910
  clearTimeout(roomMessage.current);
911
+ console.log(pageNum, flag, "dkfjvndfjvndfkvdf");
901
912
  // flag == 1 时已经设置好了位置标记
902
913
  var last_id = "";
903
914
  if (flag == 2 && historyMessageList.length > 0) {
@@ -1003,7 +1014,7 @@ var CustomerService = function(props) {
1003
1014
  return item.roomId == rid;
1004
1015
  });
1005
1016
  var isAiChatWindow = chatWindow.length > 0 && chatWindow[0].sender != undefined && chatWindow[0].sender == "AI" ? true : false;
1006
- if (!isAiChatWindow && roomList.length > 0) {
1017
+ if (!isAiChatWindow && roomList.length > 0 && (pageNum == 1 || pageNumHistory == 0)) {
1007
1018
  getRoomidHistoryMessage(totalNumber, rid);
1008
1019
  }
1009
1020
  }).catch(function(res) {
@@ -1022,7 +1033,7 @@ var CustomerService = function(props) {
1022
1033
  params: {
1023
1034
  roomId: rid,
1024
1035
  page: 1,
1025
- maxPageSize: totalNumber < 30 ? 30 : totalNumber + 10,
1036
+ maxPageSize: totalNumber,
1026
1037
  direction: "desc"
1027
1038
  },
1028
1039
  headers: {
@@ -1035,17 +1046,24 @@ var CustomerService = function(props) {
1035
1046
  var newHistoryMessageList = [];
1036
1047
  if (res.data.messages.length > 0) {
1037
1048
  var dataList = res.data.messages.reverse();
1049
+ var originList = 0;
1050
+ var newList = 0;
1038
1051
  setHistoryMessageList(function(historyMessageList) {
1039
- newHistoryMessageList = dataList;
1052
+ originList = historyMessageList.length;
1053
+ newHistoryMessageList = historyMessageList.concat(dataList);
1040
1054
  //去重
1041
1055
  var _$res = new Map();
1042
1056
  newHistoryMessageList = newHistoryMessageList.filter(function(a) {
1043
1057
  return !_$res.has(a.id) && _$res.set(a.id, 1);
1044
1058
  });
1059
+ newList = newHistoryMessageList.length;
1045
1060
  return newHistoryMessageList;
1046
1061
  });
1047
- if (dataList.length > totalNumber) {
1048
- scrollToBottom();
1062
+ console.log(dataList.length, originList, lastId, "dfkvdnfkvdfj44444");
1063
+ if (!lastId && originList != newList) {
1064
+ setTimeout(function() {
1065
+ scrollToBottom();
1066
+ }, 100);
1049
1067
  }
1050
1068
  }
1051
1069
  try {
@@ -1105,7 +1123,7 @@ var CustomerService = function(props) {
1105
1123
  });
1106
1124
  console.log(result, "存储的消息");
1107
1125
  result.map(function(item) {
1108
- testLabQuestion(item.question, item.answer, item.id);
1126
+ testLabQuestion(item.question, item.answer, String(item.id));
1109
1127
  });
1110
1128
  }
1111
1129
  }
@@ -1268,7 +1286,7 @@ var CustomerService = function(props) {
1268
1286
  var list = roomList.filter(function(e) {
1269
1287
  return e.roomId == roomId;
1270
1288
  });
1271
- var title = "智能回答";
1289
+ var title = "智能问答";
1272
1290
  if (list.length > 0 && list[0].name) {
1273
1291
  title = list[0].name;
1274
1292
  }
@@ -1319,6 +1337,7 @@ var CustomerService = function(props) {
1319
1337
  ]
1320
1338
  });
1321
1339
  } else {
1340
+ // console.log(roomList,'777668888900')
1322
1341
  return /*#__PURE__*/ _jsxs("div", {
1323
1342
  className: styles.top,
1324
1343
  children: [
@@ -1329,7 +1348,7 @@ var CustomerService = function(props) {
1329
1348
  showType == 1 && /*#__PURE__*/ _jsxs("i", {
1330
1349
  className: "lianxiren21",
1331
1350
  onClick: function() {
1332
- setShowContacts(true);
1351
+ setShowContacts(!showContacts);
1333
1352
  },
1334
1353
  children: [
1335
1354
  /*#__PURE__*/ _jsx(CustomContacts, {}),
@@ -1350,6 +1369,7 @@ var CustomerService = function(props) {
1350
1369
  className: "_lishixiao22",
1351
1370
  onClick: function() {
1352
1371
  setShowHistory(true);
1372
+ onEvent(serverName + serverUrl(), "click_智能问答_历史记录", "提交");
1353
1373
  },
1354
1374
  children: /*#__PURE__*/ _jsx(CustomRecord, {})
1355
1375
  }),
@@ -1537,9 +1557,10 @@ var CustomerService = function(props) {
1537
1557
  title: item.quotedMessage,
1538
1558
  placement: "leftTop",
1539
1559
  children: /*#__PURE__*/ _jsxs("p", {
1560
+ className: styles.text_exceed,
1540
1561
  children: [
1541
1562
  item.quotedMessage,
1542
- ">"
1563
+ /*#__PURE__*/ _jsx(RightOutlined, {})
1543
1564
  ]
1544
1565
  })
1545
1566
  }) : /*#__PURE__*/ _jsx("p", {
@@ -1641,11 +1662,12 @@ var CustomerService = function(props) {
1641
1662
  children: getByteLen(item.quotedMessage) > 120 ? /*#__PURE__*/ _jsx(Tooltip, {
1642
1663
  overlayClassName: styles.popover_main_content,
1643
1664
  title: item.quotedMessage,
1644
- placement: "leftTop",
1665
+ placement: "rightTop",
1645
1666
  children: /*#__PURE__*/ _jsxs("p", {
1667
+ className: styles.text_exceed,
1646
1668
  children: [
1647
1669
  item.quotedMessage,
1648
- ">"
1670
+ /*#__PURE__*/ _jsx(RightOutlined, {})
1649
1671
  ]
1650
1672
  })
1651
1673
  }) : /*#__PURE__*/ _jsx("p", {
@@ -1690,7 +1712,7 @@ var CustomerService = function(props) {
1690
1712
  return "";
1691
1713
  }
1692
1714
  };
1693
- //渲染相关操作按钮
1715
+ //渲染相关操作按钮 header == 1 ai ,== 2 知识库
1694
1716
  var renderOperateBtn = function(item, isAiChatWindow, i) {
1695
1717
  //问候语及点赞下面不需要展示相关按钮
1696
1718
  var extraInfo = item.extraInfo;
@@ -1720,7 +1742,13 @@ var CustomerService = function(props) {
1720
1742
  recevier: mid,
1721
1743
  message: "请告诉我您要召唤的老师名字",
1722
1744
  createdAt: getDataTime(-1),
1723
- findTeacher: true
1745
+ findTeacher: true,
1746
+ extraInfo: item.extraInfo == null ? null : JSON.stringify([
1747
+ {
1748
+ key: "questionId",
1749
+ value: "questionId"
1750
+ }
1751
+ ])
1724
1752
  });
1725
1753
  return newHistoryMessageList;
1726
1754
  });
@@ -1782,7 +1810,7 @@ var CustomerService = function(props) {
1782
1810
  if (!isAiChatWindow) return;
1783
1811
  //只有最后一条回答,支持发送点赞或踩
1784
1812
  if (!item.upvoted && (historyMessageList.length == i + 1 || historyMessageList.length - 2 == i)) {
1785
- console.log("判断是AI还是智能回答", item);
1813
+ console.log("判断是AI还是智能问答", item);
1786
1814
  if (!item.extraInfo && item.sender == "AI") {
1787
1815
  aiSendQuestions(1, {
1788
1816
  roomId: roomId,
@@ -1907,6 +1935,8 @@ var CustomerService = function(props) {
1907
1935
  question: historyMessageList[i - 1].message,
1908
1936
  user: problem.user
1909
1937
  });
1938
+ console.log(item, "88888999999");
1939
+ // if(item.extraInfo == null){
1910
1940
  setHistoryMessageList(function(historyMessageList) {
1911
1941
  var newHistoryMessageList = historyMessageList.concat({
1912
1942
  id: -1,
@@ -1915,10 +1945,40 @@ var CustomerService = function(props) {
1915
1945
  recevier: mid,
1916
1946
  message: "请告诉我您要召唤的老师名字",
1917
1947
  createdAt: getDataTime(-1),
1918
- findTeacher: true
1948
+ findTeacher: true,
1949
+ extraInfo: item.extraInfo == null ? null : JSON.stringify([
1950
+ {
1951
+ key: "questionId",
1952
+ value: "questionId"
1953
+ }
1954
+ ])
1919
1955
  });
1920
1956
  return newHistoryMessageList;
1921
1957
  });
1958
+ // }else{
1959
+ // setHistoryMessageList(
1960
+ // (historyMessageList) => {
1961
+ // let newHistoryMessageList =
1962
+ // historyMessageList.concat({
1963
+ // id: -1,
1964
+ // roomId: roomId,
1965
+ // sender: "AI",
1966
+ // recevier: mid,
1967
+ // message:
1968
+ // "请告诉我您要召唤的老师名字",
1969
+ // createdAt: getDataTime(-1),
1970
+ // findTeacher:true,
1971
+ // extraInfo: JSON.stringify([
1972
+ // {
1973
+ // key: "questionId",
1974
+ // value: "questionId",
1975
+ // },
1976
+ // ])
1977
+ // });
1978
+ // return newHistoryMessageList;
1979
+ // }
1980
+ // );
1981
+ // }
1922
1982
  setTimeout(function() {
1923
1983
  scrollToBottom();
1924
1984
  }, 200);
@@ -1995,7 +2055,7 @@ var CustomerService = function(props) {
1995
2055
  if (!isAiChatWindow) return;
1996
2056
  //只有最后一条回答,支持发送点赞或踩
1997
2057
  if (!item.upvoted && (historyMessageList.length == i + 1 || historyMessageList.length - 2 == i)) {
1998
- console.log("判断是AI还是智能回答", item);
2058
+ console.log("判断是AI还是智能问答", item);
1999
2059
  if (!item.extraInfo && item.sender == "AI") {
2000
2060
  aiSendQuestions(1, {
2001
2061
  roomId: roomId,
@@ -2048,7 +2108,7 @@ var CustomerService = function(props) {
2048
2108
  var placeholder = "";
2049
2109
  var disabled = false;
2050
2110
  if (voiceRecordingStatus == 2) {
2051
- placeholder = "录制中...";
2111
+ placeholder = "语音录制中,请说话...";
2052
2112
  } else if (voiceRecordingStatus == 1) {
2053
2113
  placeholder = "正在语音识别文字,请稍后...";
2054
2114
  } else if (!finished) {
@@ -2108,7 +2168,7 @@ var CustomerService = function(props) {
2108
2168
  if (roomList.length > 0 && roomList[0].roomId != roomId) {
2109
2169
  sendToTeacher(2);
2110
2170
  } else {
2111
- sendMessage();
2171
+ sendMessage("", 0);
2112
2172
  }
2113
2173
  setButtomHei(45);
2114
2174
  } else {
@@ -2195,7 +2255,7 @@ var CustomerService = function(props) {
2195
2255
  if (roomList.length > 0 && roomList[0].roomId != roomId) {
2196
2256
  sendToTeacher(2);
2197
2257
  } else {
2198
- sendMessage();
2258
+ sendMessage("", 0);
2199
2259
  }
2200
2260
  onEvent(serverName + serverUrl(), "click_智能问答_ Enter", "提交");
2201
2261
  }
@@ -2212,7 +2272,7 @@ var CustomerService = function(props) {
2212
2272
  return /*#__PURE__*/ _jsx("div", {
2213
2273
  className: "".concat(styles.issues_list, " ").concat(styles.issues_list_teacherList),
2214
2274
  style: {
2215
- bottom: "".concat(buttomHei + 6, "px")
2275
+ bottom: "".concat(buttomHei + 14, "px")
2216
2276
  },
2217
2277
  children: teacherList.map(function(item) {
2218
2278
  var span = item.name.replaceAll(keyWord, function() {
@@ -2284,12 +2344,6 @@ var CustomerService = function(props) {
2284
2344
  if (page != 1) {
2285
2345
  setPageNumHistory(page);
2286
2346
  }
2287
- createRooms(receiver);
2288
- if (childRef.current) {
2289
- setTimeout(function() {
2290
- childRef.current.roomsListTimer();
2291
- }, 500);
2292
- }
2293
2347
  setPageNum(page);
2294
2348
  setLastId(id); //用于定位
2295
2349
  //如果是当前聊天室
@@ -2297,12 +2351,20 @@ var CustomerService = function(props) {
2297
2351
  getHistoryMessage(page, 1);
2298
2352
  } else {
2299
2353
  setRoomId(renewRoomId);
2354
+ if (childRef.current) {
2355
+ if (receiver != mid) {
2356
+ createRooms(receiver);
2357
+ }
2358
+ setTimeout(function() {
2359
+ childRef.current.roomsListTimer();
2360
+ }, 500);
2361
+ }
2300
2362
  }
2301
2363
  };
2302
2364
  return /*#__PURE__*/ _jsxs(_Fragment, {
2303
2365
  children: [
2304
2366
  /*#__PURE__*/ _jsxs(Drawer, {
2305
- title: "智能回答",
2367
+ title: "智能问答",
2306
2368
  width: 560,
2307
2369
  onClose: function() {
2308
2370
  onCancel();
@@ -2381,13 +2443,12 @@ var CustomerService = function(props) {
2381
2443
  onClose: function() {
2382
2444
  setShowHistory(false);
2383
2445
  },
2384
- loadSpecifiedData: loadSpecifiedData,
2385
- roomList: roomList
2446
+ loadSpecifiedData: loadSpecifiedData
2386
2447
  })
2387
2448
  ]
2388
2449
  }),
2389
2450
  /*#__PURE__*/ _jsxs(Modal, {
2390
- title: "智能回答",
2451
+ title: "智能问答",
2391
2452
  open: showType == 2 ? true : false,
2392
2453
  onCancel: function() {
2393
2454
  onCancel();
@@ -2395,6 +2456,7 @@ var CustomerService = function(props) {
2395
2456
  },
2396
2457
  centered: true,
2397
2458
  width: window.innerWidth - 252 > 1214 ? window.innerWidth - 252 : 1214,
2459
+ // @ts-ignore
2398
2460
  height: window.innerHeight - 160,
2399
2461
  wrapClassName: styles.ChatWindow_Modal,
2400
2462
  footer: false,
@@ -2463,8 +2525,7 @@ var CustomerService = function(props) {
2463
2525
  onClose: function() {
2464
2526
  setShowHistory(false);
2465
2527
  },
2466
- loadSpecifiedData: loadSpecifiedData,
2467
- roomList: roomList
2528
+ loadSpecifiedData: loadSpecifiedData
2468
2529
  })
2469
2530
  ]
2470
2531
  })
@@ -2488,7 +2549,7 @@ var CustomerService = function(props) {
2488
2549
  return e.roomId == roomId;
2489
2550
  })[0].name != undefined ? roomList.filter(function(e) {
2490
2551
  return e.roomId == roomId;
2491
- })[0].name : "智能回答"
2552
+ })[0].name : "智能问答"
2492
2553
  })
2493
2554
  }),
2494
2555
  /*#__PURE__*/ _jsxs("div", {
@@ -2497,6 +2558,7 @@ var CustomerService = function(props) {
2497
2558
  /*#__PURE__*/ _jsx("i", {
2498
2559
  onClick: function() {
2499
2560
  setShowHistory(true);
2561
+ onEvent(serverName + serverUrl(), "click_智能问答_历史记录", "提交");
2500
2562
  },
2501
2563
  children: /*#__PURE__*/ _jsx(CustomRecord, {})
2502
2564
  }),
@@ -2515,7 +2577,7 @@ var CustomerService = function(props) {
2515
2577
  /*#__PURE__*/ _jsx("i", {
2516
2578
  className: "lianxiren21",
2517
2579
  onClick: function() {
2518
- setShowContacts(true);
2580
+ setShowContacts(!showContacts);
2519
2581
  },
2520
2582
  children: /*#__PURE__*/ _jsx(CustomContacts, {})
2521
2583
  })
@@ -2561,8 +2623,7 @@ var CustomerService = function(props) {
2561
2623
  onClose: function() {
2562
2624
  setShowHistory(false);
2563
2625
  },
2564
- loadSpecifiedData: loadSpecifiedData,
2565
- roomList: roomList
2626
+ loadSpecifiedData: loadSpecifiedData
2566
2627
  }),
2567
2628
  showType == 3 && /*#__PURE__*/ _jsx("div", {
2568
2629
  style: {
@@ -2587,7 +2648,7 @@ var CustomerService = function(props) {
2587
2648
  showType == 4 && /*#__PURE__*/ _jsxs(_Fragment, {
2588
2649
  children: [
2589
2650
  /*#__PURE__*/ _jsxs(Modal, {
2590
- title: "智能回答",
2651
+ title: "智能问答",
2591
2652
  open: true,
2592
2653
  onCancel: function() {
2593
2654
  onCancel();
@@ -2595,6 +2656,7 @@ var CustomerService = function(props) {
2595
2656
  },
2596
2657
  centered: true,
2597
2658
  width: window.innerWidth - 252 > 1214 ? window.innerWidth - 252 : 1214,
2659
+ // @ts-ignore
2598
2660
  height: window.innerHeight - 160,
2599
2661
  wrapClassName: "".concat(styles.ChatWindow_Modal),
2600
2662
  footer: false,
@@ -2663,8 +2725,7 @@ var CustomerService = function(props) {
2663
2725
  onClose: function() {
2664
2726
  setShowHistory(false);
2665
2727
  },
2666
- loadSpecifiedData: loadSpecifiedData,
2667
- roomList: roomList
2728
+ loadSpecifiedData: loadSpecifiedData
2668
2729
  })
2669
2730
  ]
2670
2731
  })
@@ -2688,7 +2749,7 @@ var CustomerService = function(props) {
2688
2749
  return e.roomId == roomId;
2689
2750
  })[0].name ? roomList.filter(function(e) {
2690
2751
  return e.roomId == roomId;
2691
- })[0].name : "智能回答"
2752
+ })[0].name : "智能问答"
2692
2753
  })
2693
2754
  }),
2694
2755
  /*#__PURE__*/ _jsxs("div", {