index.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <div ref="conversationListInnerDomRef" class="tui-conversation-list">
  3. <ActionsMenu
  4. v-if="isShowOverlay"
  5. :selectedConversation="currentConversation"
  6. :actionsMenuPosition="actionsMenuPosition"
  7. :selectedConversationDomRect="currentConversationDomRect"
  8. @closeConversationActionMenu="closeConversationActionMenu"
  9. />
  10. <div
  11. v-for="(conversation, index) in conversationList"
  12. :id="`convlistitem-${index}`"
  13. :key="index"
  14. :class="[
  15. 'tui-conversation-content',
  16. isMobile && 'tui-conversation-content-h5 disable-select',
  17. ]"
  18. >
  19. <div
  20. :class="[
  21. isPC && 'isPC',
  22. 'tui-conversation-item',
  23. currentConversationID === conversation.conversationID &&
  24. 'tui-conversation-item-selected',
  25. conversation.isPinned && 'tui-conversation-item-pinned',
  26. ]"
  27. @click="enterConversationChat(conversation.conversationID, conversation)"
  28. @longpress="showConversationActionMenu($event, conversation, index)"
  29. @contextmenu="showConversationActionMenu($event, conversation, index, true)"
  30. >
  31. <aside class="left">
  32. <Avatar useSkeletonAnimation :url="conversation.getAvatar()" size="91rpx" />
  33. <div
  34. v-if="userOnlineStatusMap && isShowUserOnlineStatus(conversation)"
  35. :class="[
  36. 'online-status',
  37. Object.keys(userOnlineStatusMap).length > 0 &&
  38. Object.keys(userOnlineStatusMap).includes(
  39. conversation.userProfile.userID
  40. ) &&
  41. userOnlineStatusMap[conversation.userProfile.userID].statusType === 1
  42. ? 'online-status-online'
  43. : 'online-status-offline',
  44. ]"
  45. />
  46. <span v-if="conversation.unreadCount > 0 && !conversation.isMuted" class="num">
  47. {{ conversation.unreadCount > 99 ? "99+" : conversation.unreadCount }}
  48. </span>
  49. <span
  50. v-if="conversation.unreadCount > 0 && conversation.isMuted"
  51. class="num-notify"
  52. />
  53. </aside>
  54. <div class="content">
  55. <div class="content-header">
  56. <label class="content-header-label">
  57. <p class="name">{{ conversation.getShowName() }}</p>
  58. </label>
  59. <div class="middle-box">
  60. <span
  61. v-if="
  62. conversation.draftText &&
  63. conversation.conversationID !== currentConversationID
  64. "
  65. class="middle-box-draft"
  66. >{{ TUITranslateService.t("TUIChat.[草稿]") }}</span
  67. >
  68. <span
  69. v-else-if="
  70. conversation.type === 'GROUP' &&
  71. conversation.groupAtInfoList &&
  72. conversation.groupAtInfoList.length > 0
  73. "
  74. class="middle-box-at"
  75. >{{ conversation.getGroupAtInfo() }}</span
  76. >
  77. <div class="middle-box-content">
  78. {{ conversation.getLastMessage("text") }}
  79. </div>
  80. </div>
  81. </div>
  82. <div class="content-footer">
  83. <span class="time">{{ conversation.getLastMessage("time") }}</span>
  84. <Icon v-if="conversation.isMuted" :file="muteIcon" />
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. <div
  90. v-if="conversationList.length == 0"
  91. style="
  92. display: flex;
  93. flex-direction: column;
  94. align-items: center;
  95. height: 90vh;
  96. justify-content: center;
  97. "
  98. >
  99. <img src="./empaty.jpg" style="width: 200px; height: 150px" />
  100. <span style="margin-top: 20px"> 暂无会话~</span>
  101. </div>
  102. </div>
  103. </template>
  104. <script lang="ts" setup>
  105. interface IUserStatus {
  106. statusType: number;
  107. customStatus: string;
  108. }
  109. interface IUserStatusMap {
  110. [userID: string]: IUserStatus;
  111. }
  112. import { ref, onMounted, onUnmounted } from "../../../adapter-vue";
  113. import TUIChatEngine, {
  114. TUIStore,
  115. StoreName,
  116. TUIConversationService,
  117. TUITranslateService,
  118. IConversationModel,
  119. } from "@tencentcloud/chat-uikit-engine";
  120. import { TUIGlobal, isIOS, addLongPressListener } from "@tencentcloud/universal-api";
  121. import Icon from "../../common/Icon.vue";
  122. import Avatar from "../../common/Avatar/index.vue";
  123. import ActionsMenu from "../actions-menu/index.vue";
  124. import muteIcon from "../../../assets/icon/mute.svg";
  125. import { isPC, isH5, isUniFrameWork, isMobile } from "../../../utils/env";
  126. const emits = defineEmits(["handleSwitchConversation", "getPassingRef"]);
  127. const currentConversation = ref<IConversationModel>();
  128. const currentConversationID = ref<string>();
  129. const currentConversationDomRect = ref<DOMRect>();
  130. const isShowOverlay = ref<boolean>(false);
  131. const conversationList = ref<IConversationModel[]>([]);
  132. const conversationListDomRef = ref<HTMLElement | undefined>();
  133. const conversationListInnerDomRef = ref<HTMLElement | undefined>();
  134. const actionsMenuPosition = ref<{
  135. top: number;
  136. left: number | undefined;
  137. conversationHeight: number | undefined;
  138. }>({
  139. top: 0,
  140. left: undefined,
  141. conversationHeight: undefined,
  142. });
  143. const displayOnlineStatus = ref(false);
  144. const userOnlineStatusMap = ref<IUserStatusMap>();
  145. let lastestOpenActionsMenuTime: number | null = null;
  146. onMounted(() => {
  147. TUIStore.watch(StoreName.CONV, {
  148. currentConversationID: onCurrentConversationIDUpdated,
  149. conversationList: onConversationListUpdated,
  150. currentConversation: onCurrentConversationUpdated,
  151. });
  152. TUIStore.watch(StoreName.USER, {
  153. displayOnlineStatus: onDisplayOnlineStatusUpdated,
  154. userStatusList: onUserStatusListUpdated,
  155. });
  156. if (!isUniFrameWork && isIOS && !isPC) {
  157. addLongPressHandler();
  158. }
  159. });
  160. onUnmounted(() => {
  161. TUIStore.unwatch(StoreName.CONV, {
  162. currentConversationID: onCurrentConversationIDUpdated,
  163. conversationList: onConversationListUpdated,
  164. currentConversation: onCurrentConversationUpdated,
  165. });
  166. TUIStore.unwatch(StoreName.USER, {
  167. displayOnlineStatus: onDisplayOnlineStatusUpdated,
  168. userStatusList: onUserStatusListUpdated,
  169. });
  170. });
  171. const isShowUserOnlineStatus = (conversation: IConversationModel): boolean => {
  172. return displayOnlineStatus.value && conversation.type === TUIChatEngine.TYPES.CONV_C2C;
  173. };
  174. const showConversationActionMenu = (
  175. event: Event,
  176. conversation: IConversationModel,
  177. index: number,
  178. isContextMenuEvent?: boolean
  179. ) => {
  180. if (isContextMenuEvent) {
  181. event.preventDefault();
  182. if (isUniFrameWork) {
  183. return;
  184. }
  185. }
  186. currentConversation.value = conversation;
  187. lastestOpenActionsMenuTime = Date.now();
  188. getActionsMenuPosition(event, index);
  189. };
  190. const closeConversationActionMenu = () => {
  191. // Prevent continuous triggering of overlay tap events
  192. if (lastestOpenActionsMenuTime && Date.now() - lastestOpenActionsMenuTime > 300) {
  193. currentConversation.value = undefined;
  194. isShowOverlay.value = false;
  195. }
  196. };
  197. const getActionsMenuPosition = (event: Event, index: number) => {
  198. if (isUniFrameWork) {
  199. if (typeof conversationListDomRef.value === "undefined") {
  200. emits("getPassingRef", conversationListDomRef);
  201. }
  202. const query = TUIGlobal?.createSelectorQuery().in(conversationListDomRef.value);
  203. query
  204. .select(`#convlistitem-${index}`)
  205. .boundingClientRect((data) => {
  206. if (data) {
  207. actionsMenuPosition.value = {
  208. // The uni-page-head of uni-h5 is not considered a member of the viewport, so the height of the head is manually increased.
  209. top: data.bottom + (isH5 ? 44 : 0),
  210. // @ts-expect-error in uniapp event has touches property
  211. left: event.touches[0].pageX,
  212. conversationHeight: data.height,
  213. };
  214. isShowOverlay.value = true;
  215. }
  216. })
  217. .exec();
  218. } else {
  219. const rect =
  220. ((event.currentTarget || event.target) as HTMLElement)?.getBoundingClientRect() ||
  221. {};
  222. if (rect) {
  223. actionsMenuPosition.value = {
  224. top: rect.bottom,
  225. left: isPC ? (event as MouseEvent).clientX : undefined,
  226. conversationHeight: rect.height,
  227. };
  228. }
  229. isShowOverlay.value = true;
  230. }
  231. };
  232. const enterConversationChat = (conversationID: string, a) => {
  233. emits("handleSwitchConversation", conversationID);
  234. TUIConversationService.switchConversation(conversationID);
  235. };
  236. function addLongPressHandler() {
  237. if (!conversationListInnerDomRef.value) {
  238. return;
  239. }
  240. addLongPressListener({
  241. element: conversationListInnerDomRef.value,
  242. onLongPress: (event, target) => {
  243. const index = (Array.from(
  244. conversationListInnerDomRef.value!.children
  245. ) as HTMLElement[]).indexOf(target!);
  246. showConversationActionMenu(event, conversationList.value[index], index);
  247. },
  248. options: {
  249. eventDelegation: {
  250. subSelector: ".tui-conversation-content",
  251. },
  252. },
  253. });
  254. }
  255. function onCurrentConversationUpdated(conversation: IConversationModel) {
  256. currentConversation.value = conversation;
  257. }
  258. function onConversationListUpdated(list: IConversationModel[]) {
  259. console.log("222222", list);
  260. conversationList.value = list;
  261. console.log("1111", conversationList.value);
  262. }
  263. function onCurrentConversationIDUpdated(id: string) {
  264. currentConversationID.value = id;
  265. }
  266. function onDisplayOnlineStatusUpdated(status: boolean) {
  267. displayOnlineStatus.value = status;
  268. }
  269. function onUserStatusListUpdated(list: Map<string, IUserStatus>) {
  270. if (list.size !== 0) {
  271. userOnlineStatusMap.value = [...list.entries()].reduce((obj, [key, value]) => {
  272. obj[key] = value;
  273. return obj;
  274. }, {} as IUserStatusMap);
  275. }
  276. }
  277. // Expose to the parent component and close actionsMenu when a sliding event is detected
  278. defineExpose({ closeChildren: closeConversationActionMenu });
  279. </script>
  280. <style lang="scss" scoped src="./style/index.scss"></style>
  281. <style lang="scss" scoped>
  282. .disable-select {
  283. -webkit-touch-callout: none;
  284. -webkit-user-select: none;
  285. -khtml-user-select: none;
  286. -moz-user-select: none;
  287. -ms-user-select: none;
  288. user-select: none;
  289. }
  290. </style>