mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	# Pull Request Template ## Description This PR will update the reply message editor’s design. **Screen recording** https://github.com/user-attachments/assets/40f61903-6bf7-4031-9a36-9027dffc46aa --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
import DyteAPI from 'dashboard/api/integrations/dyte';
 | 
						|
import { useAlert } from 'dashboard/composables';
 | 
						|
import NextButton from 'dashboard/components-next/button/Button.vue';
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    NextButton,
 | 
						|
  },
 | 
						|
  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) {
 | 
						|
        useAlert(this.$t('INTEGRATION_SETTINGS.DYTE.CREATE_ERROR'));
 | 
						|
      } finally {
 | 
						|
        this.isLoading = false;
 | 
						|
      }
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<!-- eslint-disable-next-line vue/no-root-v-if -->
 | 
						|
<template>
 | 
						|
  <NextButton
 | 
						|
    v-if="isVideoIntegrationEnabled"
 | 
						|
    v-tooltip.top-end="
 | 
						|
      $t('INTEGRATION_SETTINGS.DYTE.START_VIDEO_CALL_HELP_TEXT')
 | 
						|
    "
 | 
						|
    icon="i-ph-video-camera"
 | 
						|
    slate
 | 
						|
    faded
 | 
						|
    sm
 | 
						|
    @click="onClick"
 | 
						|
  />
 | 
						|
</template>
 |