| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <view class="tab-page">
- <view v-if="loading" class="chat-loading">
- <loading :size="50" :mask="false">
- <view>消息接收中...</view>
- </loading>
- </view>
- <view class="nav-bar">
- <view class="nav-search">
- <uni-search-bar radius="100" v-model="searchText" cancelButton="none" placeholder="搜索"></uni-search-bar>
- </view>
- </view>
- <view class="chat-tip" v-if="!loading && chatStore.chats.length==0">
- 温馨提示:您现在还没有任何聊天消息,快跟您的好友发起聊天吧~
- </view>
- <scroll-view class="scroll-bar" v-else scroll-with-animation="true" scroll-y="true">
- <view v-for="(chat,index) in chatStore.chats" :key="index">
- <pop-menu v-if="isShowChat(chat)" :items="menu.items"
- @select="onSelectMenu($event,index)">
- <chat-item :chat="chat" :index="index"
- :active="menu.chatIdx==index"></chat-item>
- </pop-menu>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- import useChatStore from '@/store/chatStore.js'
-
- export default {
- data() {
- return {
- searchText: "",
- menu: {
- show: false,
- style: "",
- chatIdx: -1,
- isTouchMove: false,
- items: [{
- key: 'DELETE',
- name: '删除该聊天',
- icon: 'trash',
- color: '#e64e4e'
- },
- {
- key: 'TOP',
- name: '置顶该聊天',
- icon: 'arrow-up'
- }
- ]
- }
- }
- },
- methods: {
- onSelectMenu(item,chatIdx) {
- switch (item.key) {
- case 'DELETE':
- this.removeChat(chatIdx);
- break;
- case 'TOP':
- this.moveToTop(chatIdx);
- break;
- default:
- break;
- }
- this.menu.show = false;
- },
- removeChat(chatIdx) {
- this.chatStore.removeChat(chatIdx);
- },
- moveToTop(chatIdx) {
- this.chatStore.moveTop(chatIdx);
- },
- isShowChat(chat){
- if(chat.delete){
- return false;
- }
- return !this.searchText || chat.showName.includes(this.searchText)
- },
- refreshUnreadBadge() {
- if (this.unreadCount > 0) {
- uni.setTabBarBadge({
- index: 0,
- text: this.unreadCount + ""
- })
- } else {
- uni.removeTabBarBadge({
- index: 0,
- complete: () => {}
- })
- }
- }
- },
- computed: {
- unreadCount() {
- let count = 0;
- this.chatStore.chats.forEach(chat => {
- if (!chat.delete) {
- count += chat.unreadCount;
- }
- })
- return count;
- },
- loading() {
- return this.chatStore.loadingGroupMsg || this.chatStore.loadingPrivateMsg
- }
- },
- watch: {
- unreadCount(newCount, oldCount) {
- this.refreshUnreadBadge();
- }
- },
- onShow() {
- this.refreshUnreadBadge();
- }
- }
- </script>
- <style scoped lang="scss">
- .tab-page {
- position: relative;
- border: #dddddd solid 1px;
- display: flex;
- flex-direction: column;
-
- .nav-bar {
- padding: 2rpx 20rpx;
- display: flex;
- align-items: center;
- background-color: white;
- border-bottom: 1px solid #ddd;
- height: 110rpx;
- .nav-search {
- flex: 1;
- height: 110rpx;
- }
-
-
- }
-
- .chat-tip {
- position: absolute;
- top: 400rpx;
- padding: 50rpx;
- line-height: 50rpx;
- text-align: left;
- color: darkblue;
- font-size: 30rpx;
- }
- .chat-loading {
- display: block;
- width: 100%;
- height: 120rpx;
- background: white;
- position: fixed;
- top: 0;
- z-index: 999;
- color: blue;
- .loading-box {
- position: relative;
- }
- }
- .scroll-bar {
- flex: 1;
- height: 100%;
- }
- }
- </style>
|