index.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <SelectFriend v-if="isShowSelectFriend" />
  3. <div v-else-if="isShowContactList" :class="['tui-contact', !isPC && 'tui-contact-h5']">
  4. <div :class="['tui-contact-left', !isPC && 'tui-contact-h5-left']">
  5. <!-- <ContactSearch /> -->
  6. <ContactList v-if="contact"
  7. :class="['tui-contact-left-list', !isPC && 'tui-contact-h5-left-list']"
  8. />
  9. </div>
  10. <div
  11. v-if="isShowContactInfo"
  12. :class="['tui-contact-right', !isPC && 'tui-contact-h5-right']"
  13. >
  14. <ContactInfo @switchConversation="switchConversation" />
  15. </div>
  16. </div>
  17. </template>
  18. <script lang="ts" setup>
  19. import { TUIStore, StoreName } from "@tencentcloud/chat-uikit-engine";
  20. import { TUIGlobal } from "@tencentcloud/universal-api";
  21. import { ref, watchEffect } from "../../adapter-vue";
  22. import { isPC, isUniFrameWork } from "../../utils/env";
  23. import addSVG from "../../assets/icon/add.svg";
  24. import Icon from "../common/Icon.vue";
  25. import SelectFriend from "./select-friend/index.vue";
  26. import ContactSearch from "./contact-search/index.vue";
  27. import ContactList from "./contact-list/index.vue";
  28. import ContactInfo from "./contact-info/index.vue";
  29. import { onLoad, onShow, onPullDownRefresh } from "@dcloudio/uni-app";
  30. const emits = defineEmits(["switchConversation"]);
  31. const contact=ref(true)
  32. const props = defineProps({
  33. // web/h5 single page application display format, uniapp please ignore
  34. displayType: {
  35. type: String,
  36. default: "contactList", // "contactList" / "selectFriend"
  37. require: false,
  38. },
  39. });
  40. const displayTypeRef = ref<string>(props.displayType || "contactList");
  41. const isShowSelectFriend = ref(false);
  42. const isShowContactList = ref(true);
  43. const isShowContactInfo = ref(true);
  44. watchEffect(() => {
  45. isShowContactList.value = props?.displayType !== "selectFriend";
  46. });
  47. onPullDownRefresh(() => {
  48. contact.value=false
  49. setTimeout(() => {
  50. contact.value=true
  51. uni.stopPullDownRefresh();
  52. }, 200);
  53. });
  54. TUIStore.watch(StoreName.CUSTOM, {
  55. isShowSelectFriendComponent: (data: any) => {
  56. if (!isUniFrameWork && props?.displayType === "selectFriend") {
  57. isShowSelectFriend.value = data;
  58. isShowContactList.value = false;
  59. return;
  60. }
  61. if (data) {
  62. isShowSelectFriend.value = true;
  63. if (isUniFrameWork) {
  64. displayTypeRef.value = "selectFriend";
  65. TUIGlobal?.hideTabBar();
  66. }
  67. } else {
  68. isShowSelectFriend.value = false;
  69. if (isUniFrameWork) {
  70. displayTypeRef.value = props.displayType;
  71. TUIGlobal?.showTabBar()?.catch(() => {
  72. /* ignore */
  73. });
  74. }
  75. }
  76. },
  77. currentContactInfo: (contactInfo: any) => {
  78. isShowContactInfo.value =
  79. isPC ||
  80. (contactInfo &&
  81. typeof contactInfo === "object" &&
  82. Object.keys(contactInfo)?.length > 0);
  83. },
  84. });
  85. const switchConversation = (data: any) => {
  86. isUniFrameWork &&
  87. TUIGlobal?.navigateTo({
  88. url: "/TUIKit/components/TUIChat/index",
  89. });
  90. emits("switchConversation", data);
  91. };
  92. </script>
  93. <style lang="scss" scoped>
  94. @import "../../assets/styles/common";
  95. .tui-contact {
  96. width: 100%;
  97. height: 100%;
  98. box-sizing: border-box;
  99. display: flex;
  100. overflow: hidden;
  101. &-left {
  102. min-width: 285px;
  103. flex: 0 0 24%;
  104. overflow: hidden;
  105. display: flex;
  106. flex-direction: column;
  107. }
  108. &-right {
  109. border-left: 1px solid #f4f5f9;
  110. flex: 1;
  111. overflow: hidden;
  112. }
  113. }
  114. .tui-contact-h5 {
  115. position: relative;
  116. &-left,
  117. &-right {
  118. width: 100%;
  119. height: 100%;
  120. flex: 1;
  121. }
  122. &-right {
  123. position: absolute;
  124. z-index: 100;
  125. }
  126. &-left {
  127. &-list {
  128. overflow-y: auto;
  129. }
  130. }
  131. }
  132. </style>