message-bubble.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  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).redEnvelopeExpireTime
  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. // 判断消息流向是 "out"
  204. if (message.flow === "out") {
  205. // 判断 businessId 是否为红包消息相关
  206. if (businessId === "red_envelope_message") {
  207. if (expired) {
  208. return "contentCustom-in-lq";
  209. } else {
  210. return "contentCustom-in";
  211. }
  212. } else if (businessId === "red_envelope_message_gq") {
  213. return "contentCustom-in-lq";
  214. } else {
  215. return "content-out";
  216. }
  217. }
  218. // 判断消息流向是 "in"
  219. else if (message.flow === "in") {
  220. // 判断 businessId 是否为红包消息相关
  221. if (businessId === "red_envelope_message") {
  222. if (expired) {
  223. return "contentCustom-in-lq";
  224. } else {
  225. return "contentCustom-in";
  226. }
  227. } else if (businessId === "red_envelope_message_gq") {
  228. return "contentCustom-in-lq";
  229. } else {
  230. return "content-in";
  231. }
  232. }
  233. // 如果消息流向不是 "in" 或 "out",返回空字符串
  234. return "";
  235. }
  236. const props = withDefaults(defineProps<IProps>(), {
  237. isAudioPlayed: false,
  238. messageItem: () => ({} as IMessageModel),
  239. content: () => ({}),
  240. blinkMessageIDList: () => [],
  241. classNameList: () => [],
  242. isMultipleSelectMode: false,
  243. multipleSelectedMessageIDList: () => [],
  244. });
  245. const TYPES = TUIChatEngine.TYPES;
  246. const riskImageReplaceUrl =
  247. "https://web.sdk.qcloud.com/component/TUIKit/assets/has_risk_default.png";
  248. const needLoadingIconMessageType = [
  249. TYPES.MSG_LOCATION,
  250. TYPES.MSG_TEXT,
  251. TYPES.MSG_CUSTOM,
  252. TYPES.MSG_MERGER,
  253. TYPES.MSG_FACE,
  254. ];
  255. const { blinkMessageIDList, messageItem: message } = toRefs(props);
  256. const isMultipleSelected = computed<boolean>(() => {
  257. return props.multipleSelectedMessageIDList.includes(message.value.ID);
  258. });
  259. const isDisplayUnplayMark = computed<boolean>(() => {
  260. return (
  261. message.value.flow === "in" &&
  262. message.value.status === "success" &&
  263. message.value.type === TYPES.MSG_AUDIO &&
  264. !props.isAudioPlayed
  265. );
  266. });
  267. const containerClassNameList = computed(() => {
  268. return [
  269. "message-bubble",
  270. isMultipleSelected.value ? "multiple-selected" : "",
  271. ...props.classNameList,
  272. ];
  273. });
  274. const isNoPadding = computed(() => {
  275. return [TYPES.MSG_IMAGE, TYPES.MSG_VIDEO, TYPES.MSG_MERGER].includes(
  276. message.value.type
  277. );
  278. });
  279. const riskContentText = computed<string>(() => {
  280. let content = TUITranslateService.t("TUIChat.涉及敏感内容") + ", ";
  281. if (message.value.flow === "out") {
  282. content += TUITranslateService.t("TUIChat.发送失败");
  283. } else {
  284. content += TUITranslateService.t(
  285. message.value.type === TYPES.MSG_AUDIO
  286. ? "TUIChat.无法收听"
  287. : "TUIChat.无法查看"
  288. );
  289. }
  290. return content;
  291. });
  292. const isBlink = computed(() => {
  293. if (message.value?.ID) {
  294. return blinkMessageIDList?.value?.includes(message.value.ID);
  295. }
  296. return false;
  297. });
  298. function toggleMultipleSelect(isSelected: boolean) {
  299. emits("changeSelectMessageIDList", {
  300. type: isSelected ? "add" : "remove",
  301. messageID: message.value.ID,
  302. });
  303. }
  304. function resendMessage() {
  305. if (!message.value?.hasRiskContent) {
  306. emits("resendMessage");
  307. }
  308. }
  309. function blinkMessage(messageID: string) {
  310. emits("blinkMessage", messageID);
  311. }
  312. function scrollTo(scrollHeight: number) {
  313. emits("scrollTo", scrollHeight);
  314. }
  315. function openReadUserPanel() {
  316. emits("setReadReceiptPanelVisible", true, message.value);
  317. }
  318. </script>
  319. <style lang="scss" scoped>
  320. .contentCustom-in {
  321. height: 100px;
  322. // background: linear-gradient(225deg, #f74d30 0%, #ff7633 100%);
  323. background: url("../../../../../static/img/hbbj.png") no-repeat;
  324. background-size: 100% 100%;
  325. padding: 16px 20px !important;
  326. display: block !important;
  327. box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(226, 226, 226, 0.23);
  328. border-radius: 0px 20px 20px 20px;
  329. }
  330. .contentCustom-in-lq {
  331. opacity: 0.5;
  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. :not(not) {
  342. display: flex;
  343. flex-direction: column;
  344. min-width: 0;
  345. box-sizing: border-box;
  346. }
  347. .flex-row {
  348. display: flex;
  349. }
  350. .reverse {
  351. display: flex;
  352. flex-direction: row-reverse;
  353. justify-content: flex-start;
  354. }
  355. .message-bubble {
  356. padding: 10px 15px;
  357. display: flex;
  358. flex-direction: row;
  359. user-select: none;
  360. -webkit-touch-callout: none;
  361. -webkit-user-select: none;
  362. -khtml-user-select: none;
  363. -moz-user-select: none;
  364. -ms-user-select: none;
  365. &.multiple-selected {
  366. background-color: #f0f0f0;
  367. }
  368. .multiple-select-radio {
  369. margin-right: 12px;
  370. flex: 0 0 auto;
  371. }
  372. .control-reverse {
  373. flex: 1 1 auto;
  374. flex-direction: row-reverse;
  375. }
  376. .message-bubble-main-content {
  377. display: flex;
  378. flex-direction: row;
  379. .message-avatar {
  380. display: block;
  381. width: 36px;
  382. height: 36px;
  383. border-radius: 5px;
  384. flex: 0 0 auto;
  385. }
  386. .message-body {
  387. display: flex;
  388. flex: 0 1 auto;
  389. flex-direction: column;
  390. align-items: flex-start;
  391. margin: 0 8px;
  392. .message-body-nick-name {
  393. display: block;
  394. margin-bottom: 4px;
  395. font-size: 12px;
  396. color: #999;
  397. max-width: 150px;
  398. overflow: hidden;
  399. text-overflow: ellipsis;
  400. white-space: nowrap;
  401. }
  402. .message-body-main {
  403. max-width: 100%;
  404. display: flex;
  405. flex-direction: row;
  406. min-width: 0;
  407. box-sizing: border-box;
  408. &-reverse {
  409. flex-direction: row-reverse;
  410. }
  411. .audio-unplay-mark {
  412. flex: 0 0 auto;
  413. width: 5px;
  414. height: 5px;
  415. border-radius: 50%;
  416. background-color: #f00;
  417. margin: 5px;
  418. }
  419. .message-body-content {
  420. display: flex;
  421. flex-direction: column;
  422. min-width: 0;
  423. box-sizing: border-box;
  424. padding: 12px;
  425. font-size: 14px;
  426. color: #000;
  427. letter-spacing: 0;
  428. word-wrap: break-word;
  429. word-break: break-all;
  430. position: relative;
  431. .content-main {
  432. box-sizing: border-box;
  433. display: flex;
  434. flex-direction: column;
  435. flex-shrink: 0;
  436. align-content: flex-start;
  437. border: 0 solid black;
  438. margin: 0;
  439. padding: 0;
  440. min-width: 0;
  441. .message-risk-replace {
  442. width: 130px;
  443. height: 130px;
  444. }
  445. }
  446. .content-has-risk-tips {
  447. font-size: 12px;
  448. color: #fa5151;
  449. font-family: PingFangSC-Regular;
  450. margin-top: 5px;
  451. border-top: 1px solid #e5c7c7;
  452. padding-top: 5px;
  453. }
  454. }
  455. .content-in {
  456. // background: #fbfbfb;
  457. background: linear-gradient(180deg, #d0fbdd 0%, #ffffff 100%);
  458. border-radius: 0 10px 10px;
  459. }
  460. .content-out {
  461. background: #00d36d;
  462. border-radius: 10px 0 10px 10px;
  463. color: white;
  464. }
  465. .content-no-padding {
  466. padding: 0;
  467. background: transparent;
  468. border-radius: 10px;
  469. overflow: hidden;
  470. }
  471. .content-no-padding.content-has-risk {
  472. padding: 12px;
  473. }
  474. .content-has-risk {
  475. background: rgba(250, 81, 81, 0.16);
  476. }
  477. .blink-shadow {
  478. @keyframes shadow-blink {
  479. 50% {
  480. box-shadow: rgba(255, 156, 25, 1) 0 0 10px 0;
  481. }
  482. }
  483. box-shadow: rgba(255, 156, 25, 0) 0 0 10px 0;
  484. animation: shadow-blink 1s linear 3;
  485. }
  486. .blink-content {
  487. @keyframes reference-blink {
  488. 50% {
  489. background-color: #ff9c19;
  490. }
  491. }
  492. animation: reference-blink 1s linear 3;
  493. }
  494. .message-label {
  495. align-self: flex-end;
  496. font-family: PingFangSC-Regular;
  497. font-size: 12px;
  498. color: #b6b8ba;
  499. word-break: keep-all;
  500. flex: 0 0 auto;
  501. margin: 0 8px;
  502. &.fail {
  503. width: 15px;
  504. height: 15px;
  505. border-radius: 15px;
  506. background: red;
  507. color: #fff;
  508. display: flex;
  509. justify-content: center;
  510. align-items: center;
  511. cursor: pointer;
  512. }
  513. &.loading-circle {
  514. opacity: 0;
  515. animation: circle-loading 2s linear 1s infinite;
  516. }
  517. @keyframes circle-loading {
  518. 0% {
  519. transform: rotate(0);
  520. opacity: 1;
  521. }
  522. 100% {
  523. opacity: 1;
  524. transform: rotate(360deg);
  525. }
  526. }
  527. }
  528. .align-self-bottom {
  529. align-self: flex-end;
  530. }
  531. }
  532. }
  533. }
  534. .reverse {
  535. display: flex;
  536. flex-direction: row-reverse;
  537. justify-content: flex-start;
  538. }
  539. .message-bubble-extra-content {
  540. display: flex;
  541. flex-direction: column;
  542. }
  543. }
  544. </style>