Chatwoot/app/javascript/dashboard/components/widgets/conversation/ConversationBox.vue

138 lines
2.9 KiB
Vue
Raw Normal View History

<template>
<div class="conversation-details-wrap">
<conversation-header
v-if="currentChat.id"
:chat="currentChat"
:is-contact-panel-open="isContactPanelOpen"
@contact-panel-toggle="onToggleContactPanel"
/>
<div class="messages-and-sidebar">
<messages-view
v-if="currentChat.id"
:inbox-id="inboxId"
:is-contact-panel-open="isContactPanelOpen"
@contact-panel-toggle="onToggleContactPanel"
/>
<empty-state v-else />
<div v-show="showContactPanel" class="conversation-sidebar-wrap">
<contact-panel
v-if="showContactPanel"
:conversation-id="currentChat.id"
:inbox-id="currentChat.inbox_id"
:on-toggle="onToggleContactPanel"
/>
</div>
</div>
</div>
</template>
<script>
import { mapGetters } from 'vuex';
import ContactPanel from 'dashboard/routes/dashboard/conversation/ContactPanel';
import ConversationHeader from './ConversationHeader';
import EmptyState from './EmptyState';
import MessagesView from './MessagesView';
export default {
components: {
EmptyState,
MessagesView,
ContactPanel,
ConversationHeader,
},
props: {
inboxId: {
type: [Number, String],
default: '',
required: false,
},
2019-11-14 08:16:43 +00:00
isContactPanelOpen: {
type: Boolean,
default: true,
2019-11-14 08:16:43 +00:00
},
},
computed: {
...mapGetters({ currentChat: 'getSelectedChat' }),
showContactPanel() {
return this.isContactPanelOpen && this.currentChat.id;
2019-11-14 08:16:43 +00:00
},
},
watch: {
'currentChat.inbox_id'(inboxId) {
if (inboxId) {
this.$store.dispatch('inboxAssignableAgents/fetch', { inboxId });
}
},
'currentChat.id'() {
this.fetchLabels();
},
},
mounted() {
this.fetchLabels();
},
methods: {
fetchLabels() {
if (!this.currentChat.id) {
return;
}
this.$store.dispatch('conversationLabels/get', this.currentChat.id);
},
2019-11-14 08:16:43 +00:00
onToggleContactPanel() {
this.$emit('contact-panel-toggle');
2019-11-14 08:16:43 +00:00
},
},
};
</script>
<style lang="scss" scoped>
2021-05-20 08:21:46 +00:00
@import '~dashboard/assets/scss/woot';
.conversation-details-wrap {
display: flex;
flex-direction: column;
min-width: 0;
width: 100%;
border-left: 1px solid var(--color-border);
2021-03-15 13:05:56 +00:00
background: var(--color-background-light);
}
.messages-and-sidebar {
display: flex;
background: var(--color-background-light);
margin: 0;
height: 100%;
min-height: 0;
}
.conversation-sidebar-wrap {
height: auto;
flex: 0 0;
overflow: hidden;
overflow: auto;
background: white;
flex-basis: 28rem;
@include breakpoint(large up) {
flex-basis: 30em;
}
@include breakpoint(xlarge up) {
flex-basis: 31em;
}
@include breakpoint(xxlarge up) {
flex-basis: 33rem;
}
@include breakpoint(xxxlarge up) {
flex-basis: 40rem;
}
&::v-deep .contact--panel {
width: 100%;
height: 100%;
max-width: 100%;
}
}
</style>