mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			177 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="conversations-sidebar  medium-4 columns">
 | 
						|
    <!-- <SearchBox></SearchBox> -->
 | 
						|
 | 
						|
    <div class="chat-list__top">
 | 
						|
      <h1 class="page-title">
 | 
						|
        {{ getInboxName }}
 | 
						|
      </h1>
 | 
						|
      <chat-filter @statusFilterChange="getDataForStatusTab"></chat-filter>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <chat-type-tabs
 | 
						|
      :items="assigneeTabItems"
 | 
						|
      :active-tab-index="activeAssigneeTab"
 | 
						|
      class="tab--chat-type"
 | 
						|
      @chatTabChange="getDataForTab"
 | 
						|
    ></chat-type-tabs>
 | 
						|
 | 
						|
    <p
 | 
						|
      v-if="!chatListLoading && !getChatsForTab(activeStatusTab).length"
 | 
						|
      class="content-box"
 | 
						|
    >
 | 
						|
      {{ $t('CHAT_LIST.LIST.404') }}
 | 
						|
    </p>
 | 
						|
 | 
						|
    <div v-if="chatListLoading" class="text-center">
 | 
						|
      <span class="spinner message"></span>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <transition-group
 | 
						|
      name="conversations-list"
 | 
						|
      tag="div"
 | 
						|
      class="conversations-list"
 | 
						|
    >
 | 
						|
      <conversation-card
 | 
						|
        v-for="chat in getChatsForTab(activeStatusTab)"
 | 
						|
        :key="chat.id"
 | 
						|
        :chat="chat"
 | 
						|
      />
 | 
						|
    </transition-group>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
/* eslint-env browser */
 | 
						|
/* eslint no-console: 0 */
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
 | 
						|
import ChatFilter from './widgets/conversation/ChatFilter';
 | 
						|
import ChatTypeTabs from './widgets/ChatTypeTabs';
 | 
						|
import ConversationCard from './widgets/conversation/ConversationCard';
 | 
						|
import timeMixin from '../mixins/time';
 | 
						|
import conversationMixin from '../mixins/conversations';
 | 
						|
import wootConstants from '../constants';
 | 
						|
 | 
						|
export default {
 | 
						|
  mixins: [timeMixin, conversationMixin],
 | 
						|
  props: ['conversationInbox', 'pageTitle'],
 | 
						|
  data: () => ({
 | 
						|
    chats: null,
 | 
						|
    activeStatusTab: 0,
 | 
						|
    activeAssigneeTab: 0,
 | 
						|
    toggleType: true,
 | 
						|
    allMessageType: 2,
 | 
						|
  }),
 | 
						|
  mounted() {
 | 
						|
    this.$watch('$store.state.route', () => {
 | 
						|
      if (this.$store.state.route.name !== 'inbox_conversation') {
 | 
						|
        this.$store.dispatch('emptyAllConversations');
 | 
						|
        this.fetchData();
 | 
						|
      }
 | 
						|
    });
 | 
						|
 | 
						|
    this.$store.dispatch('emptyAllConversations');
 | 
						|
    this.fetchData();
 | 
						|
    this.$store.dispatch('fetchAgents');
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      chatLists: 'getAllConversations',
 | 
						|
      mineChatsList: 'getMineChats',
 | 
						|
      allChatList: 'getAllStatusChats',
 | 
						|
      unAssignedChatsList: 'getUnAssignedChats',
 | 
						|
      inboxesList: 'getInboxesList',
 | 
						|
      chatListLoading: 'getChatListLoadingStatus',
 | 
						|
      currentUserID: 'getCurrentUserID',
 | 
						|
      activeInbox: 'getSelectedInbox',
 | 
						|
    }),
 | 
						|
    convStats() {
 | 
						|
      const mineCount = this.mineChatsList.length;
 | 
						|
      const unAssignedCount = this.unAssignedChatsList.length;
 | 
						|
      const allCount = this.allChatList.length;
 | 
						|
      return {
 | 
						|
        mineCount,
 | 
						|
        unAssignedCount,
 | 
						|
        allCount,
 | 
						|
      };
 | 
						|
    },
 | 
						|
    assigneeTabItems() {
 | 
						|
      return this.$t('CHAT_LIST.ASSIGNEE_TYPE_TABS').map((item, index) => ({
 | 
						|
        id: index,
 | 
						|
        name: item.NAME,
 | 
						|
        count: this.convStats[item.KEY] || 0,
 | 
						|
      }));
 | 
						|
    },
 | 
						|
    getInboxName() {
 | 
						|
      const inboxId = Number(this.activeInbox);
 | 
						|
      const [stateInbox] = this.inboxesList.filter(
 | 
						|
        inbox => inbox.channel_id === inboxId
 | 
						|
      );
 | 
						|
      return !stateInbox ? this.pageTitle : stateInbox.label;
 | 
						|
    },
 | 
						|
    getToggleStatus() {
 | 
						|
      if (this.toggleType) {
 | 
						|
        return 'Open';
 | 
						|
      }
 | 
						|
      return 'Resolved';
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    fetchData() {
 | 
						|
      if (this.chatLists.length === 0) {
 | 
						|
        this.$store.dispatch('fetchAllConversations', {
 | 
						|
          inboxId: this.conversationInbox ? this.conversationInbox : undefined,
 | 
						|
          assigneeStatus: this.allMessageType,
 | 
						|
          convStatus: this.activeStatusTab,
 | 
						|
        });
 | 
						|
      }
 | 
						|
    },
 | 
						|
    getDataForTab(index) {
 | 
						|
      this.activeAssigneeTab = index;
 | 
						|
      if (!(index in this.chatLists)) {
 | 
						|
        // this.$store.dispatch('fetchList', {
 | 
						|
        //   inbox: this.conversationInbox,
 | 
						|
        //   type: index,
 | 
						|
        // });
 | 
						|
      }
 | 
						|
    },
 | 
						|
    getDataForStatusTab(index) {
 | 
						|
      this.activeStatusTab = index;
 | 
						|
    },
 | 
						|
    getChatsForTab() {
 | 
						|
      let copyList = [];
 | 
						|
      if (this.activeAssigneeTab === wootConstants.ASSIGNEE_TYPE_SLUG.MINE) {
 | 
						|
        copyList = this.mineChatsList.slice();
 | 
						|
      } else if (
 | 
						|
        this.activeAssigneeTab === wootConstants.ASSIGNEE_TYPE_SLUG.UNASSIGNED
 | 
						|
      ) {
 | 
						|
        copyList = this.unAssignedChatsList.slice();
 | 
						|
      } else {
 | 
						|
        copyList = this.allChatList.slice();
 | 
						|
      }
 | 
						|
      const sorted = copyList.sort(
 | 
						|
        (a, b) =>
 | 
						|
          this.lastMessage(b).created_at - this.lastMessage(a).created_at
 | 
						|
      );
 | 
						|
 | 
						|
      return sorted;
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  components: {
 | 
						|
    ChatTypeTabs,
 | 
						|
    ConversationCard,
 | 
						|
    ChatFilter,
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped lang="scss">
 | 
						|
@import '~dashboard/assets/scss/variables';
 | 
						|
.spinner {
 | 
						|
  margin-top: $space-normal;
 | 
						|
  margin-bottom: $space-normal;
 | 
						|
}
 | 
						|
</style>
 |