mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	* feat: Add vue-router to widget Co-authored-by: Pranav <pranav@chatwoot.com> * Move to dynamic imports * Move to routerMixin * Fix popup button display * Remove unnecessary import * router -> route * Fix open state * Fix issues * Remove used CSS * Fix specs * Fix specs * Fix widgetColor specs * Fix mutation specs * Fixes broken lint errors * Fixes issues with widget flow Co-authored-by: Nithin <nithin@chatwoot.com> Co-authored-by: Nithin David <1277421+nithindavid@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			138 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
<template>
 | 
						|
  <footer
 | 
						|
    v-if="!hideReplyBox"
 | 
						|
    class="shadow-sm rounded-lg bg-white mb-1 z-50 relative"
 | 
						|
  >
 | 
						|
    <chat-input-wrap
 | 
						|
      :on-send-message="handleSendMessage"
 | 
						|
      :on-send-attachment="handleSendAttachment"
 | 
						|
    />
 | 
						|
  </footer>
 | 
						|
  <div v-else>
 | 
						|
    <custom-button
 | 
						|
      class="font-medium"
 | 
						|
      block
 | 
						|
      :bg-color="widgetColor"
 | 
						|
      :text-color="textColor"
 | 
						|
      @click="startNewConversation"
 | 
						|
    >
 | 
						|
      {{ $t('START_NEW_CONVERSATION') }}
 | 
						|
    </custom-button>
 | 
						|
    <custom-button
 | 
						|
      v-if="showEmailTranscriptButton"
 | 
						|
      type="clear"
 | 
						|
      class="font-normal"
 | 
						|
      @click="sendTranscript"
 | 
						|
    >
 | 
						|
      {{ $t('EMAIL_TRANSCRIPT.BUTTON_TEXT') }}
 | 
						|
    </custom-button>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapActions, mapGetters } from 'vuex';
 | 
						|
import { getContrastingTextColor } from '@chatwoot/utils';
 | 
						|
import CustomButton from 'shared/components/Button';
 | 
						|
import ChatInputWrap from 'widget/components/ChatInputWrap.vue';
 | 
						|
import { BUS_EVENTS } from 'shared/constants/busEvents';
 | 
						|
import { sendEmailTranscript } from 'widget/api/conversation';
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    ChatInputWrap,
 | 
						|
    CustomButton,
 | 
						|
  },
 | 
						|
  props: {
 | 
						|
    msg: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      conversationAttributes: 'conversationAttributes/getConversationParams',
 | 
						|
      widgetColor: 'appConfig/getWidgetColor',
 | 
						|
      getConversationSize: 'conversation/getConversationSize',
 | 
						|
      currentUser: 'contacts/getCurrentUser',
 | 
						|
    }),
 | 
						|
    textColor() {
 | 
						|
      return getContrastingTextColor(this.widgetColor);
 | 
						|
    },
 | 
						|
    hideReplyBox() {
 | 
						|
      const { allowMessagesAfterResolved } = window.chatwootWebChannel;
 | 
						|
      const { status } = this.conversationAttributes;
 | 
						|
      return !allowMessagesAfterResolved && status === 'resolved';
 | 
						|
    },
 | 
						|
    showEmailTranscriptButton() {
 | 
						|
      return this.currentUser && this.currentUser.email;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    ...mapActions('conversation', [
 | 
						|
      'sendMessage',
 | 
						|
      'sendAttachment',
 | 
						|
      'clearConversations',
 | 
						|
    ]),
 | 
						|
    ...mapActions('conversationAttributes', [
 | 
						|
      'getAttributes',
 | 
						|
      'clearConversationAttributes',
 | 
						|
    ]),
 | 
						|
    async handleSendMessage(content) {
 | 
						|
      const conversationSize = this.getConversationSize;
 | 
						|
      await this.sendMessage({
 | 
						|
        content,
 | 
						|
      });
 | 
						|
      // Update conversation attributes on new conversation
 | 
						|
      if (conversationSize === 0) {
 | 
						|
        this.getAttributes();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    handleSendAttachment(attachment) {
 | 
						|
      this.sendAttachment({ attachment });
 | 
						|
    },
 | 
						|
    startNewConversation() {
 | 
						|
      this.clearConversations();
 | 
						|
      this.clearConversationAttributes();
 | 
						|
      window.bus.$emit(BUS_EVENTS.START_NEW_CONVERSATION);
 | 
						|
    },
 | 
						|
    async sendTranscript() {
 | 
						|
      const { email } = this.currentUser;
 | 
						|
      if (email) {
 | 
						|
        try {
 | 
						|
          await sendEmailTranscript({
 | 
						|
            email,
 | 
						|
          });
 | 
						|
          window.bus.$emit(BUS_EVENTS.SHOW_ALERT, {
 | 
						|
            message: this.$t('EMAIL_TRANSCRIPT.SEND_EMAIL_SUCCESS'),
 | 
						|
            type: 'success',
 | 
						|
          });
 | 
						|
        } catch (error) {
 | 
						|
          window.bus.$emit(BUS_EVENTS.SHOW_ALERT, {
 | 
						|
            message: this.$t('EMAIL_TRANSCRIPT.SEND_EMAIL_ERROR'),
 | 
						|
          });
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<style scoped lang="scss">
 | 
						|
@import '~widget/assets/scss/variables.scss';
 | 
						|
 | 
						|
.branding {
 | 
						|
  align-items: center;
 | 
						|
  color: $color-body;
 | 
						|
  display: flex;
 | 
						|
  font-size: $font-size-default;
 | 
						|
  justify-content: center;
 | 
						|
  padding: $space-one;
 | 
						|
  text-align: center;
 | 
						|
  text-decoration: none;
 | 
						|
 | 
						|
  img {
 | 
						|
    margin-right: $space-small;
 | 
						|
    max-width: $space-two;
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |