mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			172 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div
 | 
						|
    class="conversation-details-wrap bg-slate-25 dark:bg-slate-800"
 | 
						|
    :class="{ 'with-border-right': !isOnExpandedLayout }"
 | 
						|
  >
 | 
						|
    <conversation-header
 | 
						|
      v-if="currentChat.id"
 | 
						|
      :chat="currentChat"
 | 
						|
      :is-contact-panel-open="isContactPanelOpen"
 | 
						|
      :show-back-button="isOnExpandedLayout"
 | 
						|
      @contact-panel-toggle="onToggleContactPanel"
 | 
						|
    />
 | 
						|
    <woot-tabs
 | 
						|
      v-if="dashboardApps.length && currentChat.id"
 | 
						|
      :index="activeIndex"
 | 
						|
      class="dashboard-app--tabs bg-white dark:bg-slate-900 -mt-px"
 | 
						|
      @change="onDashboardAppTabChange"
 | 
						|
    >
 | 
						|
      <woot-tabs-item
 | 
						|
        v-for="tab in dashboardAppTabs"
 | 
						|
        :key="tab.key"
 | 
						|
        :name="tab.name"
 | 
						|
        :show-badge="false"
 | 
						|
      />
 | 
						|
    </woot-tabs>
 | 
						|
    <div
 | 
						|
      v-show="!activeIndex"
 | 
						|
      class="flex bg-slate-25 dark:bg-slate-800 m-0 h-full min-h-0"
 | 
						|
    >
 | 
						|
      <messages-view
 | 
						|
        v-if="currentChat.id"
 | 
						|
        :inbox-id="inboxId"
 | 
						|
        :is-contact-panel-open="isContactPanelOpen"
 | 
						|
        @contact-panel-toggle="onToggleContactPanel"
 | 
						|
      />
 | 
						|
      <empty-state v-else :is-on-expanded-layout="isOnExpandedLayout" />
 | 
						|
      <div
 | 
						|
        v-show="showContactPanel"
 | 
						|
        class="conversation-sidebar-wrap basis-full sm:basis-[17.5rem] md:basis-[18.75rem] lg:basis-[19.375rem] xl:basis-[20.625rem] 2xl:basis-[25rem] rtl:border-r border-slate-50 dark:border-slate-700 h-auto overflow-auto z-10 flex-shrink-0 flex-grow-0"
 | 
						|
      >
 | 
						|
        <contact-panel
 | 
						|
          v-if="showContactPanel"
 | 
						|
          :conversation-id="currentChat.id"
 | 
						|
          :inbox-id="currentChat.inbox_id"
 | 
						|
          :on-toggle="onToggleContactPanel"
 | 
						|
        />
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
    <dashboard-app-frame
 | 
						|
      v-for="(dashboardApp, index) in dashboardApps"
 | 
						|
      v-show="activeIndex - 1 === index"
 | 
						|
      :key="currentChat.id + '-' + dashboardApp.id"
 | 
						|
      :is-visible="activeIndex - 1 === index"
 | 
						|
      :config="dashboardApps[index].content"
 | 
						|
      :position="index"
 | 
						|
      :current-chat="currentChat"
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
import ContactPanel from 'dashboard/routes/dashboard/conversation/ContactPanel.vue';
 | 
						|
import ConversationHeader from './ConversationHeader.vue';
 | 
						|
import DashboardAppFrame from '../DashboardApp/Frame.vue';
 | 
						|
import EmptyState from './EmptyState/EmptyState.vue';
 | 
						|
import MessagesView from './MessagesView.vue';
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    ContactPanel,
 | 
						|
    ConversationHeader,
 | 
						|
    DashboardAppFrame,
 | 
						|
    EmptyState,
 | 
						|
    MessagesView,
 | 
						|
  },
 | 
						|
 | 
						|
  props: {
 | 
						|
    inboxId: {
 | 
						|
      type: [Number, String],
 | 
						|
      default: '',
 | 
						|
      required: false,
 | 
						|
    },
 | 
						|
    isContactPanelOpen: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
    isOnExpandedLayout: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return { activeIndex: 0 };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      currentChat: 'getSelectedChat',
 | 
						|
      dashboardApps: 'dashboardApps/getRecords',
 | 
						|
    }),
 | 
						|
    dashboardAppTabs() {
 | 
						|
      return [
 | 
						|
        {
 | 
						|
          key: 'messages',
 | 
						|
          name: this.$t('CONVERSATION.DASHBOARD_APP_TAB_MESSAGES'),
 | 
						|
        },
 | 
						|
        ...this.dashboardApps.map(dashboardApp => ({
 | 
						|
          key: `dashboard-${dashboardApp.id}`,
 | 
						|
          name: dashboardApp.title,
 | 
						|
        })),
 | 
						|
      ];
 | 
						|
    },
 | 
						|
    showContactPanel() {
 | 
						|
      return this.isContactPanelOpen && this.currentChat.id;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  watch: {
 | 
						|
    'currentChat.inbox_id'(inboxId) {
 | 
						|
      if (inboxId) {
 | 
						|
        this.$store.dispatch('inboxAssignableAgents/fetch', [inboxId]);
 | 
						|
      }
 | 
						|
    },
 | 
						|
    'currentChat.id'() {
 | 
						|
      this.fetchLabels();
 | 
						|
      this.activeIndex = 0;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    this.fetchLabels();
 | 
						|
    this.$store.dispatch('dashboardApps/get');
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    fetchLabels() {
 | 
						|
      if (!this.currentChat.id) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      this.$store.dispatch('conversationLabels/get', this.currentChat.id);
 | 
						|
    },
 | 
						|
    onToggleContactPanel() {
 | 
						|
      this.$emit('contact-panel-toggle');
 | 
						|
    },
 | 
						|
    onDashboardAppTabChange(index) {
 | 
						|
      this.activeIndex = index;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
.conversation-details-wrap {
 | 
						|
  @apply flex flex-col min-w-0 w-full;
 | 
						|
 | 
						|
  &.with-border-right {
 | 
						|
    @apply border-r border-slate-50 dark:border-slate-700;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.dashboard-app--tabs {
 | 
						|
  ::v-deep {
 | 
						|
    .tabs-title {
 | 
						|
      a {
 | 
						|
        @apply pb-2 pt-1;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.conversation-sidebar-wrap {
 | 
						|
  &::v-deep .contact--panel {
 | 
						|
    @apply w-full h-full max-w-full;
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |