mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			281 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			281 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <li v-if="hasAttachments || data.content" :class="alignBubble">
 | 
						|
    <div :class="wrapClass">
 | 
						|
      <div v-tooltip.top-start="sentByMessage" :class="bubbleClass">
 | 
						|
        <bubble-text
 | 
						|
          v-if="data.content"
 | 
						|
          :message="message"
 | 
						|
          :is-email="isEmailContentType"
 | 
						|
          :readable-time="readableTime"
 | 
						|
        />
 | 
						|
        <span
 | 
						|
          v-if="isPending && hasAttachments"
 | 
						|
          class="chat-bubble has-attachment agent"
 | 
						|
        >
 | 
						|
          {{ $t('CONVERSATION.UPLOADING_ATTACHMENTS') }}
 | 
						|
        </span>
 | 
						|
        <div v-if="!isPending && hasAttachments">
 | 
						|
          <div v-for="attachment in data.attachments" :key="attachment.id">
 | 
						|
            <bubble-image
 | 
						|
              v-if="attachment.file_type === 'image'"
 | 
						|
              :url="attachment.data_url"
 | 
						|
              :readable-time="readableTime"
 | 
						|
            />
 | 
						|
            <audio v-else-if="attachment.file_type === 'audio'" controls>
 | 
						|
              <source :src="attachment.data_url" />
 | 
						|
            </audio>
 | 
						|
            <bubble-file
 | 
						|
              v-else
 | 
						|
              :url="attachment.data_url"
 | 
						|
              :readable-time="readableTime"
 | 
						|
            />
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <bubble-actions
 | 
						|
          :id="data.id"
 | 
						|
          :sender="data.sender"
 | 
						|
          :is-a-tweet="isATweet"
 | 
						|
          :is-email="isEmailContentType"
 | 
						|
          :is-private="data.private"
 | 
						|
          :message-type="data.message_type"
 | 
						|
          :readable-time="readableTime"
 | 
						|
          :source-id="data.source_id"
 | 
						|
        />
 | 
						|
      </div>
 | 
						|
      <spinner v-if="isPending" size="tiny" />
 | 
						|
 | 
						|
      <a
 | 
						|
        v-if="isATweet && isIncoming && sender"
 | 
						|
        class="sender--info"
 | 
						|
        :href="twitterProfileLink"
 | 
						|
        target="_blank"
 | 
						|
        rel="noopener noreferrer nofollow"
 | 
						|
      >
 | 
						|
        <woot-thumbnail
 | 
						|
          :src="sender.thumbnail"
 | 
						|
          :username="sender.name"
 | 
						|
          size="16px"
 | 
						|
        />
 | 
						|
        <div class="sender--available-name">
 | 
						|
          {{ sender.name }}
 | 
						|
        </div>
 | 
						|
      </a>
 | 
						|
    </div>
 | 
						|
  </li>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
import messageFormatterMixin from 'shared/mixins/messageFormatterMixin';
 | 
						|
import timeMixin from '../../../mixins/time';
 | 
						|
import BubbleText from './bubble/Text';
 | 
						|
import BubbleImage from './bubble/Image';
 | 
						|
import BubbleFile from './bubble/File';
 | 
						|
import Spinner from 'shared/components/Spinner';
 | 
						|
 | 
						|
import contentTypeMixin from 'shared/mixins/contentTypeMixin';
 | 
						|
import BubbleActions from './bubble/Actions';
 | 
						|
import { MESSAGE_TYPE, MESSAGE_STATUS } from 'shared/constants/messages';
 | 
						|
import { generateBotMessageContent } from './helpers/botMessageContentHelper';
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    BubbleActions,
 | 
						|
    BubbleText,
 | 
						|
    BubbleImage,
 | 
						|
    BubbleFile,
 | 
						|
    Spinner,
 | 
						|
  },
 | 
						|
  mixins: [timeMixin, messageFormatterMixin, contentTypeMixin],
 | 
						|
  props: {
 | 
						|
    data: {
 | 
						|
      type: Object,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    isATweet: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      isHovered: false,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    message() {
 | 
						|
      const botMessageContent = generateBotMessageContent(
 | 
						|
        this.contentType,
 | 
						|
        this.contentAttributes,
 | 
						|
        this.$t('CONVERSATION.NO_RESPONSE')
 | 
						|
      );
 | 
						|
 | 
						|
      const {
 | 
						|
        email: { html_content: { full: fullHTMLContent } = {} } = {},
 | 
						|
      } = this.contentAttributes;
 | 
						|
 | 
						|
      if (fullHTMLContent && this.isIncoming) {
 | 
						|
        let parsedContent = new DOMParser().parseFromString(
 | 
						|
          fullHTMLContent || '',
 | 
						|
          'text/html'
 | 
						|
        );
 | 
						|
        if (!parsedContent.getElementsByTagName('parsererror').length) {
 | 
						|
          return parsedContent.body.innerHTML;
 | 
						|
        }
 | 
						|
      }
 | 
						|
      return (
 | 
						|
        this.formatMessage(this.data.content, this.isATweet) + botMessageContent
 | 
						|
      );
 | 
						|
    },
 | 
						|
    contentAttributes() {
 | 
						|
      return this.data.content_attributes || {};
 | 
						|
    },
 | 
						|
    sender() {
 | 
						|
      return this.data.sender || {};
 | 
						|
    },
 | 
						|
    contentType() {
 | 
						|
      const {
 | 
						|
        data: { content_type: contentType },
 | 
						|
      } = this;
 | 
						|
      return contentType;
 | 
						|
    },
 | 
						|
    twitterProfileLink() {
 | 
						|
      const additionalAttributes = this.sender.additional_attributes || {};
 | 
						|
      const { screen_name: screenName } = additionalAttributes;
 | 
						|
      return `https://twitter.com/${screenName}`;
 | 
						|
    },
 | 
						|
    alignBubble() {
 | 
						|
      const { message_type: messageType } = this.data;
 | 
						|
      if (messageType === MESSAGE_TYPE.ACTIVITY) {
 | 
						|
        return 'center';
 | 
						|
      }
 | 
						|
      return !messageType ? 'left' : 'right';
 | 
						|
    },
 | 
						|
    readableTime() {
 | 
						|
      return this.messageStamp(this.data.created_at, 'LLL d, h:mm a');
 | 
						|
    },
 | 
						|
    isBubble() {
 | 
						|
      return [0, 1, 3].includes(this.data.message_type);
 | 
						|
    },
 | 
						|
    isIncoming() {
 | 
						|
      return this.data.message_type === MESSAGE_TYPE.INCOMING;
 | 
						|
    },
 | 
						|
    hasAttachments() {
 | 
						|
      return !!(this.data.attachments && this.data.attachments.length > 0);
 | 
						|
    },
 | 
						|
    hasImageAttachment() {
 | 
						|
      if (this.hasAttachments && this.data.attachments.length > 0) {
 | 
						|
        const { attachments = [{}] } = this.data;
 | 
						|
        const { file_type: fileType } = attachments[0];
 | 
						|
        return fileType === 'image';
 | 
						|
      }
 | 
						|
      return false;
 | 
						|
    },
 | 
						|
    hasText() {
 | 
						|
      return !!this.data.content;
 | 
						|
    },
 | 
						|
    sentByMessage() {
 | 
						|
      const { sender } = this;
 | 
						|
 | 
						|
      return this.data.message_type === 1 && !this.isHovered && sender
 | 
						|
        ? {
 | 
						|
            content: `${this.$t('CONVERSATION.SENT_BY')} ${sender.name}`,
 | 
						|
            classes: 'top',
 | 
						|
          }
 | 
						|
        : false;
 | 
						|
    },
 | 
						|
    wrapClass() {
 | 
						|
      return {
 | 
						|
        wrap: this.isBubble,
 | 
						|
        'activity-wrap': !this.isBubble,
 | 
						|
        'is-pending': this.isPending,
 | 
						|
      };
 | 
						|
    },
 | 
						|
    bubbleClass() {
 | 
						|
      return {
 | 
						|
        bubble: this.isBubble,
 | 
						|
        'is-private': this.data.private,
 | 
						|
        'is-image': this.hasImageAttachment,
 | 
						|
        'is-text': this.hasText,
 | 
						|
      };
 | 
						|
    },
 | 
						|
    isPending() {
 | 
						|
      return this.data.status === MESSAGE_STATUS.PROGRESS;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<style lang="scss">
 | 
						|
.wrap {
 | 
						|
  > .bubble {
 | 
						|
    &.is-image {
 | 
						|
      padding: 0;
 | 
						|
      overflow: hidden;
 | 
						|
 | 
						|
      .image {
 | 
						|
        max-width: 32rem;
 | 
						|
        padding: var(--space-micro);
 | 
						|
 | 
						|
        > img {
 | 
						|
          border-radius: var(--border-radius-medium);
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    &.is-image.is-text > .message-text__wrap {
 | 
						|
      max-width: 32rem;
 | 
						|
      padding: var(--space-small) var(--space-normal);
 | 
						|
    }
 | 
						|
 | 
						|
    &.is-private .file.message-text__wrap {
 | 
						|
      .ion-document-text {
 | 
						|
        color: var(--w-400);
 | 
						|
      }
 | 
						|
      .text-block-title {
 | 
						|
        color: #3c4858;
 | 
						|
      }
 | 
						|
      .download.button {
 | 
						|
        color: var(--w-400);
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    &.is-private.is-text > .message-text__wrap .link {
 | 
						|
      color: var(--w-700);
 | 
						|
    }
 | 
						|
    &.is-private.is-text > .message-text__wrap .prosemirror-mention-node {
 | 
						|
      font-weight: var(--font-weight-black);
 | 
						|
      background: none;
 | 
						|
      border-radius: var(--border-radius-small);
 | 
						|
      padding: 0;
 | 
						|
      color: var(--color-body);
 | 
						|
      text-decoration: underline;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  &.is-pending {
 | 
						|
    position: relative;
 | 
						|
    opacity: 0.8;
 | 
						|
 | 
						|
    .spinner {
 | 
						|
      position: absolute;
 | 
						|
      bottom: var(--space-smaller);
 | 
						|
      right: var(--space-smaller);
 | 
						|
    }
 | 
						|
 | 
						|
    > .is-image.is-text.bubble > .message-text__wrap {
 | 
						|
      padding: 0;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.sender--info {
 | 
						|
  align-items: center;
 | 
						|
  color: var(--b-700);
 | 
						|
  display: inline-flex;
 | 
						|
  padding: var(--space-smaller) 0;
 | 
						|
 | 
						|
  .sender--available-name {
 | 
						|
    font-size: var(--font-size-mini);
 | 
						|
    margin-left: var(--space-smaller);
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |