mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			184 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			184 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="message-text--metadata">
 | |
|     <span class="time">{{ readableTime }}</span>
 | |
|     <i
 | |
|       v-if="isEmail"
 | |
|       v-tooltip.top-start="$t('CHAT_LIST.RECEIVED_VIA_EMAIL')"
 | |
|       class="ion ion-android-mail"
 | |
|     />
 | |
|     <i
 | |
|       v-if="isPrivate"
 | |
|       v-tooltip.top-start="$t('CONVERSATION.VISIBLE_TO_AGENTS')"
 | |
|       class="icon ion-android-lock"
 | |
|       @mouseenter="isHovered = true"
 | |
|       @mouseleave="isHovered = false"
 | |
|     />
 | |
|     <i
 | |
|       v-if="isATweet && isIncoming"
 | |
|       v-tooltip.top-start="$t('CHAT_LIST.REPLY_TO_TWEET')"
 | |
|       class="icon ion-reply cursor-pointer"
 | |
|       @click="onTweetReply"
 | |
|     />
 | |
|     <a
 | |
|       v-if="isATweet && isIncoming"
 | |
|       :href="linkToTweet"
 | |
|       target="_blank"
 | |
|       rel="noopener noreferrer nofollow"
 | |
|     >
 | |
|       <i
 | |
|         v-tooltip.top-start="$t('CHAT_LIST.VIEW_TWEET_IN_TWITTER')"
 | |
|         class="icon ion-android-open cursor-pointer"
 | |
|       />
 | |
|     </a>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import { MESSAGE_TYPE } from 'shared/constants/messages';
 | |
| import { BUS_EVENTS } from 'shared/constants/busEvents';
 | |
| 
 | |
| export default {
 | |
|   props: {
 | |
|     sender: {
 | |
|       type: Object,
 | |
|       default: () => ({}),
 | |
|     },
 | |
|     readableTime: {
 | |
|       type: String,
 | |
|       default: '',
 | |
|     },
 | |
|     isEmail: {
 | |
|       type: Boolean,
 | |
|       default: true,
 | |
|     },
 | |
|     isPrivate: {
 | |
|       type: Boolean,
 | |
|       default: true,
 | |
|     },
 | |
|     isATweet: {
 | |
|       type: Boolean,
 | |
|       default: true,
 | |
|     },
 | |
|     messageType: {
 | |
|       type: Number,
 | |
|       default: 1,
 | |
|     },
 | |
|     sourceId: {
 | |
|       type: String,
 | |
|       default: '',
 | |
|     },
 | |
|     id: {
 | |
|       type: [String, Number],
 | |
|       default: '',
 | |
|     },
 | |
|   },
 | |
|   computed: {
 | |
|     isIncoming() {
 | |
|       return MESSAGE_TYPE.INCOMING === this.messageType;
 | |
|     },
 | |
|     screenName() {
 | |
|       const { additional_attributes: additionalAttributes = {} } =
 | |
|         this.sender || {};
 | |
|       return additionalAttributes?.screen_name || '';
 | |
|     },
 | |
|     linkToTweet() {
 | |
|       const { screenName, sourceId } = this;
 | |
|       return `https://twitter.com/${screenName}/status/${sourceId}`;
 | |
|     },
 | |
|   },
 | |
|   methods: {
 | |
|     onTweetReply() {
 | |
|       bus.$emit(BUS_EVENTS.SET_TWEET_REPLY, this.id);
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped>
 | |
| @import '~dashboard/assets/scss/woot';
 | |
| 
 | |
| .right {
 | |
|   .message-text--metadata {
 | |
|     .time {
 | |
|       color: var(--w-100);
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .left {
 | |
|   .message-text--metadata {
 | |
|     .time {
 | |
|       color: var(--s-400);
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .message-text--metadata {
 | |
|   align-items: flex-end;
 | |
|   display: flex;
 | |
| 
 | |
|   .time {
 | |
|     margin-right: var(--space-small);
 | |
|     display: block;
 | |
|     font-size: var(--font-size-micro);
 | |
|     line-height: 1.8;
 | |
|   }
 | |
| 
 | |
|   i {
 | |
|     line-height: 1.4;
 | |
|     padding-right: var(--space-small);
 | |
|     padding-left: var(--space-small);
 | |
|     color: var(--s-900);
 | |
|   }
 | |
| 
 | |
|   a {
 | |
|     color: var(--s-900);
 | |
|   }
 | |
| }
 | |
| 
 | |
| .activity-wrap {
 | |
|   .message-text--metadata {
 | |
|     .time {
 | |
|       color: var(--s-300);
 | |
|       display: flex;
 | |
|       text-align: center;
 | |
|       font-size: var(--font-size-micro);
 | |
|       margin-left: 0;
 | |
| 
 | |
|       @include breakpoint(xlarge up) {
 | |
|         margin-left: var(--space-small);
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .is-image {
 | |
|   .message-text--metadata {
 | |
|     .time {
 | |
|       bottom: var(--space-smaller);
 | |
|       color: var(--white);
 | |
|       position: absolute;
 | |
|       right: var(--space-small);
 | |
|       white-space: nowrap;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .is-private {
 | |
|   .message-text--metadata {
 | |
|     align-items: flex-end;
 | |
| 
 | |
|     .time {
 | |
|       color: var(--s-400);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   &.is-image {
 | |
|     .time {
 | |
|       position: inherit;
 | |
|       padding-left: var(--space-one);
 | |
|     }
 | |
|   }
 | |
| }
 | |
| </style>
 | 
