message-bubble.vue 14 KB

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