mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
# Pull Request Template ## Description This PR adds new eslint rules to the code base. **Error rules** | Rule name | Type | Files updated | | ----------------- | --- | - | | `vue/block-order` | error | ✅ | | `vue/component-name-in-template-casing` | error | ✅ | | `vue/component-options-name-casing` | error | ✅ | | `vue/custom-event-name-casing` | error | ✅ | | `vue/define-emits-declaration` | error | ✅ | | `vue/no-unused-properties` | error | ✅ | | `vue/define-macros-order` | error | ✅ | | `vue/define-props-declaration` | error | ✅ | | `vue/match-component-import-name` | error | ✅ | | `vue/next-tick-style` | error | ✅ | | `vue/no-bare-strings-in-template` | error | ✅ | | `vue/no-empty-component-block` | error | ✅ | | `vue/no-multiple-objects-in-class` | error | ✅ | | `vue/no-required-prop-with-default` | error | ✅ | | `vue/no-static-inline-styles` | error | ✅ | | `vue/no-template-target-blank` | error | ✅ | | `vue/no-this-in-before-route-enter` | error | ✅ | | `vue/no-undef-components` | error | ✅ | | `vue/no-unused-emit-declarations` | error | ✅ | | `vue/no-unused-refs` | error | ✅ | | `vue/no-use-v-else-with-v-for` | error | ✅ | | `vue/no-useless-v-bind` | error | ✅ | | `vue/no-v-text` | error | ✅ | | `vue/padding-line-between-blocks` | error | ✅ | | ~`vue/prefer-prop-type-boolean-first`~ | ~error~ | ❌ (removed this rule, cause a bug in displaying custom attributes) | | `vue/prefer-separate-static-class` | error | ✅ | | `vue/prefer-true-attribute-shorthand` | error | ✅ | | `vue/require-explicit-slots` | error | ✅ | | `vue/require-macro-variable-name` | error | ✅ | **Warn rules** | Rule name | Type | Files updated | | ---- | ------------- | ------------- | | `vue/no-root-v-if` | warn | ❎ | Fixes https://linear.app/chatwoot/issue/CW-3492/vue-eslint-rules ## Type of change - [x] New feature (non-breaking change which adds functionality) ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Fayaz Ahmed <fayazara@gmail.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com> Co-authored-by: Pranav <pranav@chatwoot.com>
358 lines
7.8 KiB
Vue
358 lines
7.8 KiB
Vue
<script>
|
|
import { MESSAGE_TYPE, MESSAGE_STATUS } from 'shared/constants/messages';
|
|
import inboxMixin from 'shared/mixins/inboxMixin';
|
|
import { messageTimestamp } from 'shared/helpers/timeHelper';
|
|
|
|
export default {
|
|
mixins: [inboxMixin],
|
|
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: '',
|
|
},
|
|
inboxId: {
|
|
type: [String, Number],
|
|
default: 0,
|
|
},
|
|
},
|
|
computed: {
|
|
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 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>
|
|
|
|
<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>
|
|
|
|
<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>
|