mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	 24cf7af30b
			
		
	
	24cf7af30b
	
	
	
		
			
			Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <woot-button
 | |
|     v-if="isVideoIntegrationEnabled"
 | |
|     v-tooltip.top-end="
 | |
|       $t('INTEGRATION_SETTINGS.DYTE.START_VIDEO_CALL_HELP_TEXT')
 | |
|     "
 | |
|     icon="video"
 | |
|     :is-loading="isLoading"
 | |
|     color-scheme="secondary"
 | |
|     variant="smooth"
 | |
|     size="small"
 | |
|     @click="onClick"
 | |
|   />
 | |
| </template>
 | |
| <script>
 | |
| import { mapGetters } from 'vuex';
 | |
| import DyteAPI from 'dashboard/api/integrations/dyte';
 | |
| import alertMixin from 'shared/mixins/alertMixin';
 | |
| 
 | |
| export default {
 | |
|   mixins: [alertMixin],
 | |
|   props: {
 | |
|     conversationId: {
 | |
|       type: Number,
 | |
|       default: 0,
 | |
|     },
 | |
|   },
 | |
|   data() {
 | |
|     return { isLoading: false };
 | |
|   },
 | |
|   computed: {
 | |
|     ...mapGetters({ appIntegrations: 'integrations/getAppIntegrations' }),
 | |
|     isVideoIntegrationEnabled() {
 | |
|       return this.appIntegrations.find(
 | |
|         integration => integration.id === 'dyte' && !!integration.hooks.length
 | |
|       );
 | |
|     },
 | |
|   },
 | |
|   mounted() {
 | |
|     if (!this.appIntegrations.length) {
 | |
|       this.$store.dispatch('integrations/get');
 | |
|     }
 | |
|   },
 | |
|   methods: {
 | |
|     async onClick() {
 | |
|       this.isLoading = true;
 | |
|       try {
 | |
|         await DyteAPI.createAMeeting(this.conversationId);
 | |
|       } catch (error) {
 | |
|         this.showAlert(this.$t('INTEGRATION_SETTINGS.DYTE.CREATE_ERROR'));
 | |
|       } finally {
 | |
|         this.isLoading = false;
 | |
|       }
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 |