message-bubble.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. <template>
  2. <div :class="containerClassNameList">
  3. <!-- multiple select radio -->
  4. <RadioSelect
  5. v-if="props.isMultipleSelectMode"
  6. class="multiple-select-radio"
  7. :isSelected="isMultipleSelected"
  8. @onChange="toggleMultipleSelect"
  9. />
  10. <div
  11. :class="{
  12. 'control-reverse': message.flow === 'out',
  13. }"
  14. >
  15. <!-- message-bubble-container -->
  16. <div class="message-bubble-content">
  17. <div
  18. class="message-bubble-main-content"
  19. :class="[message.flow === 'in' ? '' : 'reverse']"
  20. >
  21. <Avatar
  22. useSkeletonAnimation
  23. :url="message.avatar || ''"
  24. :style="{ flex: '0 0 auto' }"
  25. />
  26. <main class="message-body" @click.stop>
  27. <div
  28. v-if="
  29. message.flow === 'in' && message.conversationType === 'GROUP'
  30. "
  31. class="message-body-nick-name"
  32. >
  33. {{ props.content.showName }}
  34. </div>
  35. <div
  36. :class="[
  37. 'message-body-main',
  38. message.flow === 'out' && 'message-body-main-reverse',
  39. ]"
  40. >
  41. <div
  42. :class="[
  43. 'blink',
  44. 'message-body-content',
  45. messageClass(message),
  46. message.hasRiskContent && 'content-has-risk',
  47. isNoPadding ? 'content-no-padding' : '',
  48. isNoPadding && isBlink ? 'blink-shadow' : '',
  49. !isNoPadding && isBlink ? 'blink-content' : '',
  50. ]"
  51. >
  52. <div class="content-main">
  53. <img
  54. v-if="
  55. (message.type === TYPES.MSG_IMAGE ||
  56. message.type === TYPES.MSG_VIDEO) &&
  57. message.hasRiskContent
  58. "
  59. :class="[
  60. 'message-risk-replace',
  61. !isPC && 'message-risk-replace-h5',
  62. ]"
  63. :src="riskImageReplaceUrl"
  64. />
  65. <template v-else>
  66. <slot />
  67. </template>
  68. </div>
  69. <!-- Risk Content Tips -->
  70. <div
  71. v-if="message.hasRiskContent"
  72. class="content-has-risk-tips"
  73. >
  74. {{ riskContentText }}
  75. </div>
  76. </div>
  77. <!-- audio unplay mark -->
  78. <div v-if="isDisplayUnplayMark" class="audio-unplay-mark" />
  79. <!-- Fail Icon -->
  80. <div
  81. v-if="message.status === 'fail' || message.hasRiskContent"
  82. class="message-label fail"
  83. @click="resendMessage()"
  84. >
  85. !
  86. </div>
  87. <!-- Loading Icon -->
  88. <Icon
  89. v-if="
  90. message.status === 'unSend' &&
  91. needLoadingIconMessageType.includes(message.type)
  92. "
  93. class="message-label loading-circle"
  94. :file="loadingIcon"
  95. :width="'15px'"
  96. :height="'15px'"
  97. />
  98. <!-- Read & Unread -->
  99. <ReadStatus
  100. class="message-label align-self-bottom"
  101. :message="shallowCopyMessage(message)"
  102. @openReadUserPanel="openReadUserPanel"
  103. />
  104. </div>
  105. </main>
  106. </div>
  107. <!-- message extra area -->
  108. <div class="message-bubble-extra-content">
  109. <!-- extra: message translation -->
  110. <MessageTranslate
  111. :class="message.flow === 'out' ? 'reverse' : 'flex-row'"
  112. :message="message"
  113. />
  114. <!-- extra: message convert voice to text -->
  115. <MessageConvert
  116. :class="message.flow === 'out' ? 'reverse' : 'flex-row'"
  117. :message="message"
  118. />
  119. <!-- extra: message quote -->
  120. <MessageQuote
  121. :class="message.flow === 'out' ? 'reverse' : 'flex-row'"
  122. :message="message"
  123. @blinkMessage="blinkMessage"
  124. @scrollTo="scrollTo"
  125. />
  126. </div>
  127. </div>
  128. </div>
  129. </div>
  130. </template>
  131. <script lang="ts" setup>
  132. import { computed, toRefs } from "../../../../adapter-vue";
  133. import TUIChatEngine, {
  134. TUITranslateService,
  135. IMessageModel,
  136. } from "@tencentcloud/chat-uikit-engine";
  137. import Icon from "../../../common/Icon.vue";
  138. import ReadStatus from "./read-status/index.vue";
  139. import MessageQuote from "./message-quote/index.vue";
  140. import Avatar from "../../../common/Avatar/index.vue";
  141. import MessageTranslate from "./message-translate/index.vue";
  142. import MessageConvert from "./message-convert/index.vue";
  143. import RadioSelect from "../../../common/RadioSelect/index.vue";
  144. import loadingIcon from "../../../../assets/icon/loading.png";
  145. import { shallowCopyMessage } from "../../utils/utils";
  146. import { isPC } from "../../../../utils/env";
  147. import { watchEffect, ref } from "../../../../adapter-vue";
  148. import { isUrl, JSONToObject } from "../../../../utils/index";
  149. import moment from "moment";
  150. interface IProps {
  151. messageItem: IMessageModel;
  152. content?: any;
  153. classNameList?: string[];
  154. blinkMessageIDList?: string[];
  155. isMultipleSelectMode?: boolean;
  156. isAudioPlayed?: boolean | undefined;
  157. multipleSelectedMessageIDList?: string[];
  158. }
  159. interface IEmits {
  160. (e: "resendMessage"): void;
  161. (e: "blinkMessage", messageID: string): void;
  162. (
  163. e: "setReadReceiptPanelVisible",
  164. visible: boolean,
  165. message?: IMessageModel
  166. ): void;
  167. (
  168. e: "changeSelectMessageIDList",
  169. options: { type: "add" | "remove" | "clearAll"; messageID: string }
  170. ): void;
  171. // Only for uni-app
  172. (e: "scrollTo", scrollHeight: number): void;
  173. }
  174. const emits = defineEmits<IEmits>();
  175. const isCustom = ref();
  176. watchEffect(() => {
  177. const { payload } = props.messageItem;
  178. isCustom.value = payload.data || "";
  179. isCustom.value = JSONToObject(payload.data);
  180. });
  181. function messageClass(message) {
  182. // 从消息负载数据中提取 businessId
  183. const businessId =
  184. message._message &&
  185. message._message.payload &&
  186. message._message.payload.data
  187. ? JSON.parse(message._message.payload.data).businessID
  188. : "";
  189. const msgtime =
  190. message._message &&
  191. message._message.payload &&
  192. message._message.payload.data
  193. ? JSON.parse(message._message.payload.data).expireTime
  194. : "";
  195. let expireTime = moment(msgtime).format("YYYY-MM-DD");
  196. let expired = false;
  197. const now = moment();
  198. if (expireTime && now.isAfter(expireTime)) {
  199. expired = true;
  200. } else if (expireTime) {
  201. expired = false;
  202. }
  203. console.log('11111111',message.flow);
  204. // 判断消息流向是 "out"
  205. if (message.flow === "out") {
  206. // 判断 businessId 是否为红包消息相关
  207. if (businessId === "red_envelope_message") {
  208. if (expired) {
  209. return "contentCustom-out-lq";
  210. } else {
  211. return "contentCustom-out";
  212. }
  213. } else if (businessId === "red_envelope_message_gq") {
  214. return "contentCustom-out-lq";
  215. } else {
  216. return "content-out";
  217. }
  218. }
  219. // 判断消息流向是 "in"
  220. else if (message.flow === "in") {
  221. // 判断 businessId 是否为红包消息相关
  222. if (businessId === "red_envelope_message") {
  223. if (expired) {
  224. return "contentCustom-in-lq";
  225. } else {
  226. return "contentCustom-in";
  227. }
  228. } else if (businessId === "red_envelope_message_gq") {
  229. return "contentCustom-in-lq";
  230. } else {
  231. return "content-in";
  232. }
  233. }
  234. // 如果消息流向不是 "in" 或 "out",返回空字符串
  235. return "";
  236. }
  237. const props = withDefaults(defineProps<IProps>(), {
  238. isAudioPlayed: false,
  239. messageItem: () => ({} as IMessageModel),
  240. content: () => ({}),
  241. blinkMessageIDList: () => [],
  242. classNameList: () => [],
  243. isMultipleSelectMode: false,
  244. multipleSelectedMessageIDList: () => [],
  245. });
  246. const TYPES = TUIChatEngine.TYPES;
  247. const riskImageReplaceUrl =
  248. "https://web.sdk.qcloud.com/component/TUIKit/assets/has_risk_default.png";
  249. const needLoadingIconMessageType = [
  250. TYPES.MSG_LOCATION,
  251. TYPES.MSG_TEXT,
  252. TYPES.MSG_CUSTOM,
  253. TYPES.MSG_MERGER,
  254. TYPES.MSG_FACE,
  255. ];
  256. const { blinkMessageIDList, messageItem: message } = toRefs(props);
  257. const isMultipleSelected = computed<boolean>(() => {
  258. return props.multipleSelectedMessageIDList.includes(message.value.ID);
  259. });
  260. const isDisplayUnplayMark = computed<boolean>(() => {
  261. return (
  262. message.value.flow === "in" &&
  263. message.value.status === "success" &&
  264. message.value.type === TYPES.MSG_AUDIO &&
  265. !props.isAudioPlayed
  266. );
  267. });
  268. const containerClassNameList = computed(() => {
  269. return [
  270. "message-bubble",
  271. isMultipleSelected.value ? "multiple-selected" : "",
  272. ...props.classNameList,
  273. ];
  274. });
  275. const isNoPadding = computed(() => {
  276. return [TYPES.MSG_IMAGE, TYPES.MSG_VIDEO, TYPES.MSG_MERGER].includes(
  277. message.value.type
  278. );
  279. });
  280. const riskContentText = computed<string>(() => {
  281. let content = TUITranslateService.t("TUIChat.涉及敏感内容") + ", ";
  282. if (message.value.flow === "out") {
  283. content += TUITranslateService.t("TUIChat.发送失败");
  284. } else {
  285. content += TUITranslateService.t(
  286. message.value.type === TYPES.MSG_AUDIO
  287. ? "TUIChat.无法收听"
  288. : "TUIChat.无法查看"
  289. );
  290. }
  291. return content;
  292. });
  293. const isBlink = computed(() => {
  294. if (message.value?.ID) {
  295. return blinkMessageIDList?.value?.includes(message.value.ID);
  296. }
  297. return false;
  298. });
  299. function toggleMultipleSelect(isSelected: boolean) {
  300. emits("changeSelectMessageIDList", {
  301. type: isSelected ? "add" : "remove",
  302. messageID: message.value.ID,
  303. });
  304. }
  305. function resendMessage() {
  306. if (!message.value?.hasRiskContent) {
  307. emits("resendMessage");
  308. }
  309. }
  310. function blinkMessage(messageID: string) {
  311. emits("blinkMessage", messageID);
  312. }
  313. function scrollTo(scrollHeight: number) {
  314. emits("scrollTo", scrollHeight);
  315. }
  316. function openReadUserPanel() {
  317. emits("setReadReceiptPanelVisible", true, message.value);
  318. }
  319. </script>
  320. <style lang="scss" scoped>
  321. .contentCustom-out{
  322. height: 100px;
  323. // background: linear-gradient(225deg, #f74d30 0%, #ff7633 100%);
  324. background: url("../../../../../static/img/fshb.png") no-repeat;
  325. background-size: 100% 100%;
  326. padding: 16px 20px !important;
  327. display: block !important;
  328. box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(226, 226, 226, 0.23);
  329. border-radius: 20px 0px 20px 20px;
  330. }
  331. .contentCustom-in {
  332. height: 100px;
  333. // background: linear-gradient(225deg, #f74d30 0%, #ff7633 100%);
  334. background: url("../../../../../static/img/hbbj.png") no-repeat;
  335. background-size: 100% 100%;
  336. padding: 16px 20px !important;
  337. display: block !important;
  338. box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(226, 226, 226, 0.23);
  339. border-radius: 0px 20px 20px 20px;
  340. }
  341. .contentCustom-in-lq {
  342. opacity: 0.5;
  343. height: 100px;
  344. // background: linear-gradient(225deg, #f74d30 0%, #ff7633 100%);
  345. background: url("../../../../../static/img/hbbj.png") no-repeat;
  346. background-size: 100% 100%;
  347. padding: 16px 20px !important;
  348. display: block !important;
  349. box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(226, 226, 226, 0.23);
  350. border-radius: 0px 20px 20px 20px;
  351. }
  352. .contentCustom-out-lq {
  353. opacity: 0.5;
  354. height: 100px;
  355. // background: linear-gradient(225deg, #f74d30 0%, #ff7633 100%);
  356. background: url("../../../../../static/img/fshb.png") no-repeat;
  357. background-size: 100% 100%;
  358. padding: 16px 20px !important;
  359. display: block !important;
  360. box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(226, 226, 226, 0.23);
  361. border-radius: 20px 0px 20px 20px;
  362. }
  363. :not(not) {
  364. display: flex;
  365. flex-direction: column;
  366. min-width: 0;
  367. box-sizing: border-box;
  368. }
  369. .flex-row {
  370. display: flex;
  371. }
  372. .reverse {
  373. display: flex;
  374. flex-direction: row-reverse;
  375. justify-content: flex-start;
  376. }
  377. .message-bubble {
  378. padding: 10px 15px;
  379. display: flex;
  380. flex-direction: row;
  381. user-select: none;
  382. -webkit-touch-callout: none;
  383. -webkit-user-select: none;
  384. -khtml-user-select: none;
  385. -moz-user-select: none;
  386. -ms-user-select: none;
  387. &.multiple-selected {
  388. background-color: #f0f0f0;
  389. }
  390. .multiple-select-radio {
  391. margin-right: 12px;
  392. flex: 0 0 auto;
  393. }
  394. .control-reverse {
  395. flex: 1 1 auto;
  396. flex-direction: row-reverse;
  397. }
  398. .message-bubble-main-content {
  399. display: flex;
  400. flex-direction: row;
  401. .message-avatar {
  402. display: block;
  403. width: 36px;
  404. height: 36px;
  405. border-radius: 5px;
  406. flex: 0 0 auto;
  407. }
  408. .message-body {
  409. display: flex;
  410. flex: 0 1 auto;
  411. flex-direction: column;
  412. align-items: flex-start;
  413. margin: 0 8px;
  414. .message-body-nick-name {
  415. display: block;
  416. margin-bottom: 4px;
  417. font-size: 12px;
  418. color: #999;
  419. max-width: 150px;
  420. overflow: hidden;
  421. text-overflow: ellipsis;
  422. white-space: nowrap;
  423. }
  424. .message-body-main {
  425. max-width: 100%;
  426. display: flex;
  427. flex-direction: row;
  428. min-width: 0;
  429. box-sizing: border-box;
  430. &-reverse {
  431. flex-direction: row-reverse;
  432. }
  433. .audio-unplay-mark {
  434. flex: 0 0 auto;
  435. width: 5px;
  436. height: 5px;
  437. border-radius: 50%;
  438. background-color: #f00;
  439. margin: 5px;
  440. }
  441. .message-body-content {
  442. display: flex;
  443. flex-direction: column;
  444. min-width: 0;
  445. box-sizing: border-box;
  446. padding: 12px;
  447. font-size: 14px;
  448. color: #000;
  449. letter-spacing: 0;
  450. word-wrap: break-word;
  451. word-break: break-all;
  452. position: relative;
  453. .content-main {
  454. box-sizing: border-box;
  455. display: flex;
  456. flex-direction: column;
  457. flex-shrink: 0;
  458. align-content: flex-start;
  459. border: 0 solid black;
  460. margin: 0;
  461. padding: 0;
  462. min-width: 0;
  463. .message-risk-replace {
  464. width: 130px;
  465. height: 130px;
  466. }
  467. }
  468. .content-has-risk-tips {
  469. font-size: 12px;
  470. color: #fa5151;
  471. font-family: PingFangSC-Regular;
  472. margin-top: 5px;
  473. border-top: 1px solid #e5c7c7;
  474. padding-top: 5px;
  475. }
  476. }
  477. .content-in {
  478. // background: #fbfbfb;
  479. background: linear-gradient(180deg, #d0fbdd 0%, #ffffff 100%);
  480. border-radius: 0 10px 10px;
  481. }
  482. .content-out {
  483. background: #00d36d;
  484. border-radius: 10px 0 10px 10px;
  485. color: white;
  486. }
  487. .content-no-padding {
  488. padding: 0;
  489. background: transparent;
  490. border-radius: 10px;
  491. overflow: hidden;
  492. }
  493. .content-no-padding.content-has-risk {
  494. padding: 12px;
  495. }
  496. .content-has-risk {
  497. background: rgba(250, 81, 81, 0.16);
  498. }
  499. .blink-shadow {
  500. @keyframes shadow-blink {
  501. 50% {
  502. box-shadow: rgba(255, 156, 25, 1) 0 0 10px 0;
  503. }
  504. }
  505. box-shadow: rgba(255, 156, 25, 0) 0 0 10px 0;
  506. animation: shadow-blink 1s linear 3;
  507. }
  508. .blink-content {
  509. @keyframes reference-blink {
  510. 50% {
  511. background-color: #ff9c19;
  512. }
  513. }
  514. animation: reference-blink 1s linear 3;
  515. }
  516. .message-label {
  517. align-self: flex-end;
  518. font-family: PingFangSC-Regular;
  519. font-size: 12px;
  520. color: #b6b8ba;
  521. word-break: keep-all;
  522. flex: 0 0 auto;
  523. margin: 0 8px;
  524. &.fail {
  525. width: 15px;
  526. height: 15px;
  527. border-radius: 15px;
  528. background: red;
  529. color: #fff;
  530. display: flex;
  531. justify-content: center;
  532. align-items: center;
  533. cursor: pointer;
  534. }
  535. &.loading-circle {
  536. opacity: 0;
  537. animation: circle-loading 2s linear 1s infinite;
  538. }
  539. @keyframes circle-loading {
  540. 0% {
  541. transform: rotate(0);
  542. opacity: 1;
  543. }
  544. 100% {
  545. opacity: 1;
  546. transform: rotate(360deg);
  547. }
  548. }
  549. }
  550. .align-self-bottom {
  551. align-self: flex-end;
  552. }
  553. }
  554. }
  555. }
  556. .reverse {
  557. display: flex;
  558. flex-direction: row-reverse;
  559. justify-content: flex-start;
  560. }
  561. .message-bubble-extra-content {
  562. display: flex;
  563. flex-direction: column;
  564. }
  565. }
  566. </style>