mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			140 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			140 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
<template>
 | 
						|
  <footer
 | 
						|
    v-if="!hideReplyBox"
 | 
						|
    class="shadow-sm bg-white mb-1 z-50 relative"
 | 
						|
    :class="{ 'rounded-lg': !isWidgetStyleFlat }"
 | 
						|
  >
 | 
						|
    <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';
 | 
						|
import routerMixin from 'widget/mixins/routerMixin';
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    ChatInputWrap,
 | 
						|
    CustomButton,
 | 
						|
  },
 | 
						|
  mixins: [routerMixin],
 | 
						|
  props: {
 | 
						|
    msg: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      conversationAttributes: 'conversationAttributes/getConversationParams',
 | 
						|
      widgetColor: 'appConfig/getWidgetColor',
 | 
						|
      conversationSize: 'conversation/getConversationSize',
 | 
						|
      currentUser: 'contacts/getCurrentUser',
 | 
						|
      isWidgetStyleFlat: 'appConfig/isWidgetStyleFlat',
 | 
						|
    }),
 | 
						|
    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) {
 | 
						|
      await this.sendMessage({
 | 
						|
        content,
 | 
						|
      });
 | 
						|
      // Update conversation attributes on new conversation
 | 
						|
      if (this.conversationSize === 0) {
 | 
						|
        this.getAttributes();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    handleSendAttachment(attachment) {
 | 
						|
      this.sendAttachment({ attachment });
 | 
						|
    },
 | 
						|
    startNewConversation() {
 | 
						|
      this.clearConversations();
 | 
						|
      this.clearConversationAttributes();
 | 
						|
      this.replaceRoute('prechat-form');
 | 
						|
    },
 | 
						|
    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>
 |