mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
364 lines
8.0 KiB
Vue
364 lines
8.0 KiB
Vue
<template>
|
|
<div class="message-text--metadata">
|
|
<span
|
|
class="time"
|
|
:class="{
|
|
'has-status-icon':
|
|
showSentIndicator || showDeliveredIndicator || showReadIndicator,
|
|
}"
|
|
>
|
|
{{ readableTime }}
|
|
</span>
|
|
<span v-if="externalError" class="read-indicator-wrap">
|
|
<fluent-icon
|
|
v-tooltip.top-start="externalError"
|
|
icon="error-circle"
|
|
class="action--icon"
|
|
size="14"
|
|
/>
|
|
</span>
|
|
<span v-if="showReadIndicator" class="read-indicator-wrap">
|
|
<fluent-icon
|
|
v-tooltip.top-start="$t('CHAT_LIST.MESSAGE_READ')"
|
|
icon="checkmark-double"
|
|
class="action--icon read-tick read-indicator"
|
|
size="14"
|
|
/>
|
|
</span>
|
|
<span v-else-if="showDeliveredIndicator" class="read-indicator-wrap">
|
|
<fluent-icon
|
|
v-tooltip.top-start="$t('CHAT_LIST.DELIVERED')"
|
|
icon="checkmark-double"
|
|
class="action--icon read-tick"
|
|
size="14"
|
|
/>
|
|
</span>
|
|
<span v-else-if="showSentIndicator" class="read-indicator-wrap">
|
|
<fluent-icon
|
|
v-tooltip.top-start="$t('CHAT_LIST.SENT')"
|
|
icon="checkmark"
|
|
class="action--icon read-tick"
|
|
size="14"
|
|
/>
|
|
</span>
|
|
<fluent-icon
|
|
v-if="isEmail"
|
|
v-tooltip.top-start="$t('CHAT_LIST.RECEIVED_VIA_EMAIL')"
|
|
icon="mail"
|
|
class="action--icon"
|
|
size="16"
|
|
/>
|
|
<fluent-icon
|
|
v-if="isPrivate"
|
|
v-tooltip.top-start="$t('CONVERSATION.VISIBLE_TO_AGENTS')"
|
|
icon="lock-closed"
|
|
class="action--icon lock--icon--private"
|
|
size="16"
|
|
@mouseenter="isHovered = true"
|
|
@mouseleave="isHovered = false"
|
|
/>
|
|
<a
|
|
v-if="isATweet && (isOutgoing || isIncoming) && linkToTweet"
|
|
:href="linkToTweet"
|
|
target="_blank"
|
|
rel="noopener noreferrer nofollow"
|
|
>
|
|
<fluent-icon
|
|
v-tooltip.top-start="$t('CHAT_LIST.VIEW_TWEET_IN_TWITTER')"
|
|
icon="open"
|
|
class="cursor-pointer action--icon"
|
|
size="16"
|
|
/>
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { MESSAGE_TYPE, MESSAGE_STATUS } from 'shared/constants/messages';
|
|
import inboxMixin from 'shared/mixins/inboxMixin';
|
|
import { mapGetters } from 'vuex';
|
|
import timeMixin from '../../../../mixins/time';
|
|
|
|
export default {
|
|
mixins: [inboxMixin, timeMixin],
|
|
props: {
|
|
sender: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
createdAt: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
storySender: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
externalError: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
storyId: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
isEmail: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
isPrivate: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
isATweet: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
messageType: {
|
|
type: Number,
|
|
default: 1,
|
|
},
|
|
messageStatus: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
sourceId: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
id: {
|
|
type: [String, Number],
|
|
default: '',
|
|
},
|
|
inboxId: {
|
|
type: [String, Number],
|
|
default: 0,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters({ currentChat: 'getSelectedChat' }),
|
|
inbox() {
|
|
return this.$store.getters['inboxes/getInbox'](this.inboxId);
|
|
},
|
|
isIncoming() {
|
|
return MESSAGE_TYPE.INCOMING === this.messageType;
|
|
},
|
|
isOutgoing() {
|
|
return MESSAGE_TYPE.OUTGOING === this.messageType;
|
|
},
|
|
isTemplate() {
|
|
return MESSAGE_TYPE.TEMPLATE === this.messageType;
|
|
},
|
|
isDelivered() {
|
|
return MESSAGE_STATUS.DELIVERED === this.messageStatus;
|
|
},
|
|
isRead() {
|
|
return MESSAGE_STATUS.READ === this.messageStatus;
|
|
},
|
|
isSent() {
|
|
return MESSAGE_STATUS.SENT === this.messageStatus;
|
|
},
|
|
readableTime() {
|
|
return this.messageTimestamp(this.createdAt, 'LLL d, h:mm a');
|
|
},
|
|
screenName() {
|
|
const { additional_attributes: additionalAttributes = {} } =
|
|
this.sender || {};
|
|
return additionalAttributes?.screen_name || '';
|
|
},
|
|
linkToTweet() {
|
|
if (!this.sourceId || !this.inbox.name) {
|
|
return '';
|
|
}
|
|
const { screenName, sourceId } = this;
|
|
return `https://twitter.com/${
|
|
screenName || this.inbox.name
|
|
}/status/${sourceId}`;
|
|
},
|
|
linkToStory() {
|
|
if (!this.storyId || !this.storySender) {
|
|
return '';
|
|
}
|
|
const { storySender, storyId } = this;
|
|
return `https://www.instagram.com/stories/direct/${storySender}_${storyId}`;
|
|
},
|
|
showStatusIndicators() {
|
|
if ((this.isOutgoing || this.isTemplate) && !this.isPrivate) {
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
showSentIndicator() {
|
|
if (!this.showStatusIndicators) {
|
|
return false;
|
|
}
|
|
// Messages will be marked as sent for the Email channel if they have a source ID.
|
|
if (this.isAnEmailChannel) {
|
|
return !!this.sourceId;
|
|
}
|
|
|
|
if (
|
|
this.isAWhatsAppChannel ||
|
|
this.isATwilioChannel ||
|
|
this.isAFacebookInbox ||
|
|
this.isASmsInbox ||
|
|
this.isATelegramChannel
|
|
) {
|
|
return this.sourceId && this.isSent;
|
|
}
|
|
// All messages will be mark as sent for the Line channel, as there is no source ID.
|
|
if (this.isALineChannel) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
},
|
|
showDeliveredIndicator() {
|
|
if (!this.showStatusIndicators) {
|
|
return false;
|
|
}
|
|
if (
|
|
this.isAWhatsAppChannel ||
|
|
this.isATwilioChannel ||
|
|
this.isASmsInbox ||
|
|
this.isAFacebookInbox
|
|
) {
|
|
return this.sourceId && this.isDelivered;
|
|
}
|
|
// All messages marked as delivered for the web widget inbox and API inbox once they are sent.
|
|
if (this.isAWebWidgetInbox || this.isAPIInbox) {
|
|
return this.isSent;
|
|
}
|
|
if (this.isALineChannel) {
|
|
return this.isDelivered;
|
|
}
|
|
|
|
return false;
|
|
},
|
|
showReadIndicator() {
|
|
if (!this.showStatusIndicators) {
|
|
return false;
|
|
}
|
|
if (
|
|
this.isAWhatsAppChannel ||
|
|
this.isATwilioChannel ||
|
|
this.isAFacebookInbox
|
|
) {
|
|
return this.sourceId && this.isRead;
|
|
}
|
|
|
|
if (this.isAWebWidgetInbox || this.isAPIInbox) {
|
|
return this.isRead;
|
|
}
|
|
|
|
return false;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.right {
|
|
.message-text--metadata {
|
|
@apply items-center;
|
|
.time {
|
|
@apply text-woot-100 dark:text-woot-100;
|
|
}
|
|
|
|
.action--icon {
|
|
@apply text-white dark:text-white;
|
|
|
|
&.read-tick {
|
|
@apply text-violet-100 dark:text-violet-100;
|
|
}
|
|
|
|
&.read-indicator {
|
|
@apply text-green-200 dark:text-green-200;
|
|
}
|
|
}
|
|
|
|
.lock--icon--private {
|
|
@apply text-slate-400 dark:text-slate-400;
|
|
}
|
|
}
|
|
}
|
|
|
|
.left {
|
|
.message-text--metadata {
|
|
.time {
|
|
@apply text-slate-400 dark:text-slate-200;
|
|
}
|
|
}
|
|
}
|
|
|
|
.message-text--metadata {
|
|
@apply items-start flex;
|
|
|
|
.time {
|
|
@apply mr-2 block text-xxs leading-[1.8];
|
|
}
|
|
|
|
.action--icon {
|
|
@apply mr-2 ml-2 text-slate-900 dark:text-slate-100;
|
|
}
|
|
|
|
a {
|
|
@apply text-slate-900 dark:text-slate-100;
|
|
}
|
|
}
|
|
|
|
.activity-wrap {
|
|
.message-text--metadata {
|
|
.time {
|
|
@apply ml-2 rtl:mr-2 rtl:ml-0 flex text-center text-xxs text-slate-300 dark:text-slate-200;
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-image,
|
|
.is-video {
|
|
.message-text--metadata {
|
|
.time {
|
|
@apply bottom-1 text-white dark:text-slate-50 absolute right-2 whitespace-nowrap;
|
|
|
|
&.has-status-icon {
|
|
@apply right-8 leading-loose;
|
|
}
|
|
}
|
|
.read-tick {
|
|
@apply absolute bottom-2 right-2;
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-private {
|
|
.message-text--metadata {
|
|
@apply items-center;
|
|
|
|
.time {
|
|
@apply text-slate-400 dark:text-slate-400;
|
|
}
|
|
|
|
.icon {
|
|
@apply text-slate-400 dark:text-slate-400;
|
|
}
|
|
}
|
|
|
|
&.is-image,
|
|
&.is-video {
|
|
.time {
|
|
position: inherit;
|
|
@apply pl-2.5;
|
|
}
|
|
}
|
|
}
|
|
|
|
.delivered-icon {
|
|
@apply ml-4;
|
|
}
|
|
|
|
.read-indicator-wrap {
|
|
@apply leading-none flex items-center;
|
|
}
|
|
</style>
|