40 lines
881 B
Vue
40 lines
881 B
Vue
<script>
|
|
import DyteVideoCall from './integrations/Dyte.vue';
|
|
import inboxMixin from 'shared/mixins/inboxMixin';
|
|
|
|
export default {
|
|
components: { DyteVideoCall },
|
|
mixins: [inboxMixin],
|
|
props: {
|
|
messageId: {
|
|
type: [String, Number],
|
|
default: 0,
|
|
},
|
|
contentAttributes: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
inboxId: {
|
|
type: [String, Number],
|
|
default: 0,
|
|
},
|
|
},
|
|
computed: {
|
|
showDyteIntegration() {
|
|
const isEnabledOnTheInbox = this.isAPIInbox || this.isAWebWidgetInbox;
|
|
return isEnabledOnTheInbox && this.contentAttributes.type === 'dyte';
|
|
},
|
|
inbox() {
|
|
return this.$store.getters['inboxes/getInbox'](this.inboxId);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<DyteVideoCall
|
|
v-if="showDyteIntegration"
|
|
:message-id="messageId"
|
|
:meeting-data="contentAttributes.data"
|
|
/>
|
|
</template>
|