mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			1032 lines
		
	
	
		
			30 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			1032 lines
		
	
	
		
			30 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="reply-box" :class="replyBoxClass">
 | 
						|
    <banner
 | 
						|
      v-if="showSelfAssignBanner"
 | 
						|
      color-scheme="secondary"
 | 
						|
      :banner-message="$t('CONVERSATION.NOT_ASSIGNED_TO_YOU')"
 | 
						|
      :has-action-button="true"
 | 
						|
      :action-button-label="$t('CONVERSATION.ASSIGN_TO_ME')"
 | 
						|
      @click="onClickSelfAssign"
 | 
						|
    />
 | 
						|
    <reply-top-panel
 | 
						|
      :mode="replyType"
 | 
						|
      :set-reply-mode="setReplyMode"
 | 
						|
      :is-message-length-reaching-threshold="isMessageLengthReachingThreshold"
 | 
						|
      :characters-remaining="charactersRemaining"
 | 
						|
      :popout-reply-box="popoutReplyBox"
 | 
						|
      @click="$emit('click')"
 | 
						|
    />
 | 
						|
    <div class="reply-box__top">
 | 
						|
      <canned-response
 | 
						|
        v-if="showMentions && hasSlashCommand"
 | 
						|
        v-on-clickaway="hideMentions"
 | 
						|
        :search-key="mentionSearchKey"
 | 
						|
        @click="replaceText"
 | 
						|
      />
 | 
						|
      <emoji-input
 | 
						|
        v-if="showEmojiPicker"
 | 
						|
        v-on-clickaway="hideEmojiPicker"
 | 
						|
        :class="emojiDialogClassOnExpanedLayout"
 | 
						|
        :on-click="emojiOnClick"
 | 
						|
      />
 | 
						|
      <reply-email-head
 | 
						|
        v-if="showReplyHead"
 | 
						|
        :cc-emails.sync="ccEmails"
 | 
						|
        :bcc-emails.sync="bccEmails"
 | 
						|
      />
 | 
						|
      <woot-audio-recorder
 | 
						|
        v-if="showAudioRecorderEditor"
 | 
						|
        ref="audioRecorderInput"
 | 
						|
        :audio-record-format="audioRecordFormat"
 | 
						|
        @state-recorder-progress-changed="onStateProgressRecorderChanged"
 | 
						|
        @state-recorder-changed="onStateRecorderChanged"
 | 
						|
        @finish-record="onFinishRecorder"
 | 
						|
      />
 | 
						|
      <resizable-text-area
 | 
						|
        v-else-if="!showRichContentEditor"
 | 
						|
        ref="messageInput"
 | 
						|
        v-model="message"
 | 
						|
        class="input"
 | 
						|
        :placeholder="messagePlaceHolder"
 | 
						|
        :min-height="4"
 | 
						|
        @typing-off="onTypingOff"
 | 
						|
        @typing-on="onTypingOn"
 | 
						|
        @focus="onFocus"
 | 
						|
        @blur="onBlur"
 | 
						|
      />
 | 
						|
      <woot-message-editor
 | 
						|
        v-else
 | 
						|
        v-model="message"
 | 
						|
        :editor-id="editorStateId"
 | 
						|
        class="input"
 | 
						|
        :is-private="isOnPrivateNote"
 | 
						|
        :placeholder="messagePlaceHolder"
 | 
						|
        :update-selection-with="updateEditorSelectionWith"
 | 
						|
        :min-height="4"
 | 
						|
        @typing-off="onTypingOff"
 | 
						|
        @typing-on="onTypingOn"
 | 
						|
        @focus="onFocus"
 | 
						|
        @blur="onBlur"
 | 
						|
        @toggle-user-mention="toggleUserMention"
 | 
						|
        @toggle-canned-menu="toggleCannedMenu"
 | 
						|
        @clear-selection="clearEditorSelection"
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
    <div v-if="hasAttachments" class="attachment-preview-box" @paste="onPaste">
 | 
						|
      <attachment-preview
 | 
						|
        :attachments="attachedFiles"
 | 
						|
        :remove-attachment="removeAttachment"
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
    <div
 | 
						|
      v-if="isSignatureEnabledForInbox"
 | 
						|
      v-tooltip="$t('CONVERSATION.FOOTER.MESSAGE_SIGN_TOOLTIP')"
 | 
						|
      class="message-signature-wrap"
 | 
						|
    >
 | 
						|
      <p
 | 
						|
        v-if="isSignatureAvailable"
 | 
						|
        v-dompurify-html="formatMessage(messageSignature)"
 | 
						|
        class="message-signature"
 | 
						|
      />
 | 
						|
      <p v-else class="message-signature">
 | 
						|
        {{ $t('CONVERSATION.FOOTER.MESSAGE_SIGNATURE_NOT_CONFIGURED') }}
 | 
						|
        <router-link :to="profilePath">
 | 
						|
          {{ $t('CONVERSATION.FOOTER.CLICK_HERE') }}
 | 
						|
        </router-link>
 | 
						|
      </p>
 | 
						|
    </div>
 | 
						|
    <reply-bottom-panel
 | 
						|
      :mode="replyType"
 | 
						|
      :inbox="inbox"
 | 
						|
      :send-button-text="replyButtonLabel"
 | 
						|
      :on-file-upload="onFileUpload"
 | 
						|
      :show-file-upload="showFileUpload"
 | 
						|
      :show-audio-recorder="showAudioRecorder"
 | 
						|
      :toggle-emoji-picker="toggleEmojiPicker"
 | 
						|
      :toggle-audio-recorder="toggleAudioRecorder"
 | 
						|
      :toggle-audio-recorder-play-pause="toggleAudioRecorderPlayPause"
 | 
						|
      :show-emoji-picker="showEmojiPicker"
 | 
						|
      :on-send="onSendReply"
 | 
						|
      :is-send-disabled="isReplyButtonDisabled"
 | 
						|
      :recording-audio-duration-text="recordingAudioDurationText"
 | 
						|
      :recording-audio-state="recordingAudioState"
 | 
						|
      :is-recording-audio="isRecordingAudio"
 | 
						|
      :is-on-private-note="isOnPrivateNote"
 | 
						|
      :show-editor-toggle="isAPIInbox && !isOnPrivateNote"
 | 
						|
      :enable-multiple-file-upload="enableMultipleFileUpload"
 | 
						|
      :has-whatsapp-templates="hasWhatsappTemplates"
 | 
						|
      @selectWhatsappTemplate="openWhatsappTemplateModal"
 | 
						|
      @toggle-editor="toggleRichContentEditor"
 | 
						|
    />
 | 
						|
    <whatsapp-templates
 | 
						|
      :inbox-id="inbox.id"
 | 
						|
      :show="showWhatsAppTemplatesModal"
 | 
						|
      @close="hideWhatsappTemplatesModal"
 | 
						|
      @on-send="onSendWhatsAppReply"
 | 
						|
      @cancel="hideWhatsappTemplatesModal"
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
import { mixin as clickaway } from 'vue-clickaway';
 | 
						|
import alertMixin from 'shared/mixins/alertMixin';
 | 
						|
 | 
						|
import CannedResponse from './CannedResponse';
 | 
						|
import ResizableTextArea from 'shared/components/ResizableTextArea';
 | 
						|
import AttachmentPreview from 'dashboard/components/widgets/AttachmentsPreview';
 | 
						|
import ReplyTopPanel from 'dashboard/components/widgets/WootWriter/ReplyTopPanel';
 | 
						|
import ReplyEmailHead from './ReplyEmailHead';
 | 
						|
import ReplyBottomPanel from 'dashboard/components/widgets/WootWriter/ReplyBottomPanel';
 | 
						|
import Banner from 'dashboard/components/ui/Banner.vue';
 | 
						|
import { REPLY_EDITOR_MODES } from 'dashboard/components/widgets/WootWriter/constants';
 | 
						|
import WootMessageEditor from 'dashboard/components/widgets/WootWriter/Editor';
 | 
						|
import WootAudioRecorder from 'dashboard/components/widgets/WootWriter/AudioRecorder';
 | 
						|
import messageFormatterMixin from 'shared/mixins/messageFormatterMixin';
 | 
						|
import { checkFileSizeLimit } from 'shared/helpers/FileHelper';
 | 
						|
import {
 | 
						|
  MAXIMUM_FILE_UPLOAD_SIZE,
 | 
						|
  MAXIMUM_FILE_UPLOAD_SIZE_TWILIO_SMS_CHANNEL,
 | 
						|
  AUDIO_FORMATS,
 | 
						|
} from 'shared/constants/messages';
 | 
						|
import { BUS_EVENTS } from 'shared/constants/busEvents';
 | 
						|
 | 
						|
import WhatsappTemplates from './WhatsappTemplates/Modal.vue';
 | 
						|
import { buildHotKeys } from 'shared/helpers/KeyboardHelpers';
 | 
						|
import { MESSAGE_MAX_LENGTH } from 'shared/helpers/MessageTypeHelper';
 | 
						|
import inboxMixin from 'shared/mixins/inboxMixin';
 | 
						|
import uiSettingsMixin from 'dashboard/mixins/uiSettings';
 | 
						|
import { DirectUpload } from 'activestorage';
 | 
						|
import { frontendURL } from '../../../helper/URLHelper';
 | 
						|
import { LocalStorage, LOCAL_STORAGE_KEYS } from '../../../helper/localStorage';
 | 
						|
import { trimContent, debounce } from '@chatwoot/utils';
 | 
						|
import wootConstants from 'dashboard/constants';
 | 
						|
import { isEditorHotKeyEnabled } from 'dashboard/mixins/uiSettings';
 | 
						|
import AnalyticsHelper, {
 | 
						|
  ANALYTICS_EVENTS,
 | 
						|
} from '../../../helper/AnalyticsHelper';
 | 
						|
 | 
						|
const EmojiInput = () => import('shared/components/emoji/EmojiInput');
 | 
						|
 | 
						|
export default {
 | 
						|
  components: {
 | 
						|
    EmojiInput,
 | 
						|
    CannedResponse,
 | 
						|
    ResizableTextArea,
 | 
						|
    AttachmentPreview,
 | 
						|
    ReplyTopPanel,
 | 
						|
    ReplyEmailHead,
 | 
						|
    ReplyBottomPanel,
 | 
						|
    WootMessageEditor,
 | 
						|
    WootAudioRecorder,
 | 
						|
    Banner,
 | 
						|
    WhatsappTemplates,
 | 
						|
  },
 | 
						|
  mixins: [
 | 
						|
    clickaway,
 | 
						|
    inboxMixin,
 | 
						|
    uiSettingsMixin,
 | 
						|
    alertMixin,
 | 
						|
    messageFormatterMixin,
 | 
						|
  ],
 | 
						|
  props: {
 | 
						|
    selectedTweet: {
 | 
						|
      type: [Object, String],
 | 
						|
      default: () => ({}),
 | 
						|
    },
 | 
						|
    isATweet: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    popoutReplyBox: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      message: '',
 | 
						|
      isFocused: false,
 | 
						|
      showEmojiPicker: false,
 | 
						|
      showMentions: false,
 | 
						|
      attachedFiles: [],
 | 
						|
      isRecordingAudio: false,
 | 
						|
      recordingAudioState: '',
 | 
						|
      recordingAudioDurationText: '',
 | 
						|
      isUploading: false,
 | 
						|
      replyType: REPLY_EDITOR_MODES.REPLY,
 | 
						|
      mentionSearchKey: '',
 | 
						|
      hasUserMention: false,
 | 
						|
      hasSlashCommand: false,
 | 
						|
      bccEmails: '',
 | 
						|
      ccEmails: '',
 | 
						|
      doAutoSaveDraft: () => {},
 | 
						|
      showWhatsAppTemplatesModal: false,
 | 
						|
      updateEditorSelectionWith: '',
 | 
						|
    };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      currentChat: 'getSelectedChat',
 | 
						|
      messageSignature: 'getMessageSignature',
 | 
						|
      currentUser: 'getCurrentUser',
 | 
						|
      lastEmail: 'getLastEmailInSelectedChat',
 | 
						|
      globalConfig: 'globalConfig/get',
 | 
						|
      accountId: 'getCurrentAccountId',
 | 
						|
    }),
 | 
						|
    showRichContentEditor() {
 | 
						|
      if (this.isOnPrivateNote || this.isRichEditorEnabled) {
 | 
						|
        return true;
 | 
						|
      }
 | 
						|
 | 
						|
      if (this.isAPIInbox) {
 | 
						|
        const {
 | 
						|
          display_rich_content_editor: displayRichContentEditor = false,
 | 
						|
        } = this.uiSettings;
 | 
						|
        return displayRichContentEditor;
 | 
						|
      }
 | 
						|
 | 
						|
      return false;
 | 
						|
    },
 | 
						|
    assignedAgent: {
 | 
						|
      get() {
 | 
						|
        return this.currentChat.meta.assignee;
 | 
						|
      },
 | 
						|
      set(agent) {
 | 
						|
        const agentId = agent ? agent.id : 0;
 | 
						|
        this.$store.dispatch('setCurrentChatAssignee', agent);
 | 
						|
        this.$store
 | 
						|
          .dispatch('assignAgent', {
 | 
						|
            conversationId: this.currentChat.id,
 | 
						|
            agentId,
 | 
						|
          })
 | 
						|
          .then(() => {
 | 
						|
            this.showAlert(this.$t('CONVERSATION.CHANGE_AGENT'));
 | 
						|
          });
 | 
						|
      },
 | 
						|
    },
 | 
						|
    showSelfAssignBanner() {
 | 
						|
      if (this.message !== '' && !this.isOnPrivateNote) {
 | 
						|
        if (!this.assignedAgent) {
 | 
						|
          return true;
 | 
						|
        }
 | 
						|
        if (this.assignedAgent.id !== this.currentUser.id) {
 | 
						|
          return true;
 | 
						|
        }
 | 
						|
      }
 | 
						|
 | 
						|
      return false;
 | 
						|
    },
 | 
						|
    hasWhatsappTemplates() {
 | 
						|
      return !!this.$store.getters['inboxes/getWhatsAppTemplates'](this.inboxId)
 | 
						|
        .length;
 | 
						|
    },
 | 
						|
    isPrivate() {
 | 
						|
      if (this.currentChat.can_reply || this.isAWhatsAppChannel) {
 | 
						|
        return this.isOnPrivateNote;
 | 
						|
      }
 | 
						|
      return true;
 | 
						|
    },
 | 
						|
    inboxId() {
 | 
						|
      return this.currentChat.inbox_id;
 | 
						|
    },
 | 
						|
    inbox() {
 | 
						|
      return this.$store.getters['inboxes/getInbox'](this.inboxId);
 | 
						|
    },
 | 
						|
    messagePlaceHolder() {
 | 
						|
      return this.isPrivate
 | 
						|
        ? this.$t('CONVERSATION.FOOTER.PRIVATE_MSG_INPUT')
 | 
						|
        : this.$t('CONVERSATION.FOOTER.MSG_INPUT');
 | 
						|
    },
 | 
						|
    isMessageLengthReachingThreshold() {
 | 
						|
      return this.message.length > this.maxLength - 50;
 | 
						|
    },
 | 
						|
    charactersRemaining() {
 | 
						|
      return this.maxLength - this.message.length;
 | 
						|
    },
 | 
						|
    isReplyButtonDisabled() {
 | 
						|
      if (this.isATweet && !this.inReplyTo && !this.isOnPrivateNote) {
 | 
						|
        return true;
 | 
						|
      }
 | 
						|
 | 
						|
      if (this.hasAttachments || this.hasRecordedAudio) return false;
 | 
						|
 | 
						|
      return (
 | 
						|
        this.isMessageEmpty ||
 | 
						|
        this.message.length === 0 ||
 | 
						|
        this.message.length > this.maxLength
 | 
						|
      );
 | 
						|
    },
 | 
						|
    conversationType() {
 | 
						|
      const { additional_attributes: additionalAttributes } = this.currentChat;
 | 
						|
      const type = additionalAttributes ? additionalAttributes.type : '';
 | 
						|
      return type || '';
 | 
						|
    },
 | 
						|
    maxLength() {
 | 
						|
      if (this.isPrivate) {
 | 
						|
        return MESSAGE_MAX_LENGTH.GENERAL;
 | 
						|
      }
 | 
						|
      if (this.isAFacebookInbox) {
 | 
						|
        return MESSAGE_MAX_LENGTH.FACEBOOK;
 | 
						|
      }
 | 
						|
      if (this.isAWhatsAppChannel) {
 | 
						|
        return MESSAGE_MAX_LENGTH.TWILIO_WHATSAPP;
 | 
						|
      }
 | 
						|
      if (this.isASmsInbox) {
 | 
						|
        return MESSAGE_MAX_LENGTH.TWILIO_SMS;
 | 
						|
      }
 | 
						|
      if (this.isATwitterInbox) {
 | 
						|
        if (this.conversationType === 'tweet') {
 | 
						|
          return MESSAGE_MAX_LENGTH.TWEET - this.replyToUserLength - 2;
 | 
						|
        }
 | 
						|
      }
 | 
						|
      return MESSAGE_MAX_LENGTH.GENERAL;
 | 
						|
    },
 | 
						|
    showFileUpload() {
 | 
						|
      return (
 | 
						|
        this.isAWebWidgetInbox ||
 | 
						|
        this.isAFacebookInbox ||
 | 
						|
        this.isAWhatsAppChannel ||
 | 
						|
        this.isAPIInbox ||
 | 
						|
        this.isAnEmailChannel ||
 | 
						|
        this.isASmsInbox ||
 | 
						|
        this.isATelegramChannel
 | 
						|
      );
 | 
						|
    },
 | 
						|
    replyButtonLabel() {
 | 
						|
      let sendMessageText = this.$t('CONVERSATION.REPLYBOX.SEND');
 | 
						|
      if (this.isPrivate) {
 | 
						|
        sendMessageText = this.$t('CONVERSATION.REPLYBOX.CREATE');
 | 
						|
      } else if (this.conversationType === 'tweet') {
 | 
						|
        sendMessageText = this.$t('CONVERSATION.REPLYBOX.TWEET');
 | 
						|
      }
 | 
						|
      const keyLabel = isEditorHotKeyEnabled(this.uiSettings, 'cmd_enter')
 | 
						|
        ? '(⌘ + ↵)'
 | 
						|
        : '(↵)';
 | 
						|
      return `${sendMessageText} ${keyLabel}`;
 | 
						|
    },
 | 
						|
    replyBoxClass() {
 | 
						|
      return {
 | 
						|
        'is-private': this.isPrivate,
 | 
						|
        'is-focused': this.isFocused || this.hasAttachments,
 | 
						|
      };
 | 
						|
    },
 | 
						|
    hasAttachments() {
 | 
						|
      return this.attachedFiles.length;
 | 
						|
    },
 | 
						|
    hasRecordedAudio() {
 | 
						|
      return (
 | 
						|
        this.$refs.audioRecorderInput &&
 | 
						|
        this.$refs.audioRecorderInput.hasAudio()
 | 
						|
      );
 | 
						|
    },
 | 
						|
    isRichEditorEnabled() {
 | 
						|
      return this.isAWebWidgetInbox || this.isAnEmailChannel;
 | 
						|
    },
 | 
						|
    showAudioRecorder() {
 | 
						|
      return !this.isOnPrivateNote && this.showFileUpload;
 | 
						|
    },
 | 
						|
    showAudioRecorderEditor() {
 | 
						|
      return this.showAudioRecorder && this.isRecordingAudio;
 | 
						|
    },
 | 
						|
    isOnPrivateNote() {
 | 
						|
      return this.replyType === REPLY_EDITOR_MODES.NOTE;
 | 
						|
    },
 | 
						|
    inReplyTo() {
 | 
						|
      const selectedTweet = this.selectedTweet || {};
 | 
						|
      return selectedTweet.id;
 | 
						|
    },
 | 
						|
    isOnExpandedLayout() {
 | 
						|
      const {
 | 
						|
        LAYOUT_TYPES: { CONDENSED },
 | 
						|
      } = wootConstants;
 | 
						|
      const {
 | 
						|
        conversation_display_type: conversationDisplayType = CONDENSED,
 | 
						|
      } = this.uiSettings;
 | 
						|
      return conversationDisplayType !== CONDENSED;
 | 
						|
    },
 | 
						|
    emojiDialogClassOnExpanedLayout() {
 | 
						|
      return this.isOnExpandedLayout || this.popoutReplyBox
 | 
						|
        ? 'emoji-dialog--expanded'
 | 
						|
        : '';
 | 
						|
    },
 | 
						|
    replyToUserLength() {
 | 
						|
      const selectedTweet = this.selectedTweet || {};
 | 
						|
      const {
 | 
						|
        sender: {
 | 
						|
          additional_attributes: { screen_name: screenName = '' } = {},
 | 
						|
        } = {},
 | 
						|
      } = selectedTweet;
 | 
						|
      return screenName ? screenName.length : 0;
 | 
						|
    },
 | 
						|
    isMessageEmpty() {
 | 
						|
      if (!this.message) {
 | 
						|
        return true;
 | 
						|
      }
 | 
						|
      return !this.message.trim().replace(/\n/g, '').length;
 | 
						|
    },
 | 
						|
    showReplyHead() {
 | 
						|
      return !this.isOnPrivateNote && this.isAnEmailChannel;
 | 
						|
    },
 | 
						|
    enableMultipleFileUpload() {
 | 
						|
      return this.isAnEmailChannel || this.isAWebWidgetInbox || this.isAPIInbox;
 | 
						|
    },
 | 
						|
    isSignatureEnabledForInbox() {
 | 
						|
      return !this.isPrivate && this.isAnEmailChannel && this.sendWithSignature;
 | 
						|
    },
 | 
						|
    isSignatureAvailable() {
 | 
						|
      return !!this.messageSignature;
 | 
						|
    },
 | 
						|
    sendWithSignature() {
 | 
						|
      const { send_with_signature: isEnabled } = this.uiSettings;
 | 
						|
      return isEnabled;
 | 
						|
    },
 | 
						|
    profilePath() {
 | 
						|
      return frontendURL(`accounts/${this.accountId}/profile/settings`);
 | 
						|
    },
 | 
						|
    editorMessageKey() {
 | 
						|
      const { editor_message_key: isEnabled } = this.uiSettings;
 | 
						|
      return isEnabled;
 | 
						|
    },
 | 
						|
    commandPlusEnterToSendEnabled() {
 | 
						|
      return this.editorMessageKey === 'cmd_enter';
 | 
						|
    },
 | 
						|
    enterToSendEnabled() {
 | 
						|
      return this.editorMessageKey === 'enter';
 | 
						|
    },
 | 
						|
    conversationId() {
 | 
						|
      return this.currentChat.id;
 | 
						|
    },
 | 
						|
    conversationIdByRoute() {
 | 
						|
      return this.conversationId;
 | 
						|
    },
 | 
						|
    editorStateId() {
 | 
						|
      return `draft-${this.conversationIdByRoute}-${this.replyType}`;
 | 
						|
    },
 | 
						|
    audioRecordFormat() {
 | 
						|
      if (this.isAWebWidgetInbox) {
 | 
						|
        return AUDIO_FORMATS.WEBM;
 | 
						|
      }
 | 
						|
      return AUDIO_FORMATS.OGG;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  watch: {
 | 
						|
    currentChat(conversation) {
 | 
						|
      const { can_reply: canReply } = conversation;
 | 
						|
 | 
						|
      if (this.isOnPrivateNote) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
 | 
						|
      if (canReply || this.isAWhatsAppChannel) {
 | 
						|
        this.replyType = REPLY_EDITOR_MODES.REPLY;
 | 
						|
      } else {
 | 
						|
        this.replyType = REPLY_EDITOR_MODES.NOTE;
 | 
						|
      }
 | 
						|
 | 
						|
      this.setCCEmailFromLastChat();
 | 
						|
    },
 | 
						|
    conversationIdByRoute(conversationId, oldConversationId) {
 | 
						|
      if (conversationId !== oldConversationId) {
 | 
						|
        this.setToDraft(oldConversationId, this.replyType);
 | 
						|
        this.getFromDraft();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    message(updatedMessage) {
 | 
						|
      this.hasSlashCommand =
 | 
						|
        updatedMessage[0] === '/' && !this.showRichContentEditor;
 | 
						|
      const hasNextWord = updatedMessage.includes(' ');
 | 
						|
      const isShortCodeActive = this.hasSlashCommand && !hasNextWord;
 | 
						|
      if (isShortCodeActive) {
 | 
						|
        this.mentionSearchKey = updatedMessage.substring(1);
 | 
						|
        this.showMentions = true;
 | 
						|
      } else {
 | 
						|
        this.mentionSearchKey = '';
 | 
						|
        this.showMentions = false;
 | 
						|
      }
 | 
						|
      this.doAutoSaveDraft();
 | 
						|
    },
 | 
						|
    replyType(updatedReplyType, oldReplyType) {
 | 
						|
      this.setToDraft(this.conversationIdByRoute, oldReplyType);
 | 
						|
      this.getFromDraft();
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  mounted() {
 | 
						|
    this.getFromDraft();
 | 
						|
    // Donot use the keyboard listener mixin here as the events here are supposed to be
 | 
						|
    // working even if input/textarea is focussed.
 | 
						|
    document.addEventListener('paste', this.onPaste);
 | 
						|
    document.addEventListener('keydown', this.handleKeyEvents);
 | 
						|
    this.setCCEmailFromLastChat();
 | 
						|
    this.doAutoSaveDraft = debounce(
 | 
						|
      () => {
 | 
						|
        this.saveDraft(this.conversationIdByRoute, this.replyType);
 | 
						|
      },
 | 
						|
      500,
 | 
						|
      true
 | 
						|
    );
 | 
						|
  },
 | 
						|
  destroyed() {
 | 
						|
    document.removeEventListener('paste', this.onPaste);
 | 
						|
    document.removeEventListener('keydown', this.handleKeyEvents);
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    toggleRichContentEditor() {
 | 
						|
      this.updateUISettings({
 | 
						|
        display_rich_content_editor: !this.showRichContentEditor,
 | 
						|
      });
 | 
						|
    },
 | 
						|
    getSavedDraftMessages() {
 | 
						|
      return LocalStorage.get(LOCAL_STORAGE_KEYS.DRAFT_MESSAGES) || {};
 | 
						|
    },
 | 
						|
    saveDraft(conversationId, replyType) {
 | 
						|
      if (this.message || this.message === '') {
 | 
						|
        const savedDraftMessages = this.getSavedDraftMessages();
 | 
						|
        const key = `draft-${conversationId}-${replyType}`;
 | 
						|
        const draftToSave = trimContent(this.message || '');
 | 
						|
        const {
 | 
						|
          [key]: currentDraft,
 | 
						|
          ...restOfDraftMessages
 | 
						|
        } = savedDraftMessages;
 | 
						|
 | 
						|
        const updatedDraftMessages = draftToSave
 | 
						|
          ? {
 | 
						|
              ...restOfDraftMessages,
 | 
						|
              [key]: draftToSave,
 | 
						|
            }
 | 
						|
          : restOfDraftMessages;
 | 
						|
 | 
						|
        LocalStorage.set(
 | 
						|
          LOCAL_STORAGE_KEYS.DRAFT_MESSAGES,
 | 
						|
          updatedDraftMessages
 | 
						|
        );
 | 
						|
      }
 | 
						|
    },
 | 
						|
    setToDraft(conversationId, replyType) {
 | 
						|
      this.saveDraft(conversationId, replyType);
 | 
						|
      this.message = '';
 | 
						|
    },
 | 
						|
    getFromDraft() {
 | 
						|
      if (this.conversationIdByRoute) {
 | 
						|
        try {
 | 
						|
          const key = `draft-${this.conversationIdByRoute}-${this.replyType}`;
 | 
						|
          const savedDraftMessages = this.getSavedDraftMessages();
 | 
						|
          this.message = `${savedDraftMessages[key] || ''}`;
 | 
						|
        } catch (error) {
 | 
						|
          this.message = '';
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
    removeFromDraft() {
 | 
						|
      if (this.conversationIdByRoute) {
 | 
						|
        const key = `draft-${this.conversationIdByRoute}-${this.replyType}`;
 | 
						|
        const draftMessages = this.getSavedDraftMessages();
 | 
						|
        const { [key]: toBeRemoved, ...updatedDraftMessages } = draftMessages;
 | 
						|
        LocalStorage.set(
 | 
						|
          LOCAL_STORAGE_KEYS.DRAFT_MESSAGES,
 | 
						|
          updatedDraftMessages
 | 
						|
        );
 | 
						|
      }
 | 
						|
    },
 | 
						|
    handleKeyEvents(e) {
 | 
						|
      const keyCode = buildHotKeys(e);
 | 
						|
      if (keyCode === 'escape') {
 | 
						|
        this.hideEmojiPicker();
 | 
						|
        this.hideMentions();
 | 
						|
      } else if (keyCode === 'meta+k') {
 | 
						|
        const ninja = document.querySelector('ninja-keys');
 | 
						|
        ninja.open();
 | 
						|
        e.preventDefault();
 | 
						|
      } else if (keyCode === 'enter' && this.isAValidEvent('enter')) {
 | 
						|
        this.onSendReply();
 | 
						|
        e.preventDefault();
 | 
						|
      } else if (
 | 
						|
        ['meta+enter', 'ctrl+enter'].includes(keyCode) &&
 | 
						|
        this.isAValidEvent('cmd_enter')
 | 
						|
      ) {
 | 
						|
        this.onSendReply();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    isAValidEvent(selectedKey) {
 | 
						|
      return (
 | 
						|
        !this.hasUserMention &&
 | 
						|
        !this.showCannedMenu &&
 | 
						|
        this.isFocused &&
 | 
						|
        isEditorHotKeyEnabled(this.uiSettings, selectedKey)
 | 
						|
      );
 | 
						|
    },
 | 
						|
    onPaste(e) {
 | 
						|
      const data = e.clipboardData.files;
 | 
						|
      if (!this.showRichContentEditor && data.length !== 0) {
 | 
						|
        this.$refs.messageInput.$el.blur();
 | 
						|
      }
 | 
						|
      if (!data.length || !data[0]) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      data.forEach(file => {
 | 
						|
        const { name, type, size } = file;
 | 
						|
        this.onFileUpload({ name, type, size, file: file });
 | 
						|
      });
 | 
						|
    },
 | 
						|
    toggleUserMention(currentMentionState) {
 | 
						|
      this.hasUserMention = currentMentionState;
 | 
						|
    },
 | 
						|
    toggleCannedMenu(value) {
 | 
						|
      this.showCannedMenu = value;
 | 
						|
    },
 | 
						|
    openWhatsappTemplateModal() {
 | 
						|
      this.showWhatsAppTemplatesModal = true;
 | 
						|
    },
 | 
						|
    hideWhatsappTemplatesModal() {
 | 
						|
      this.showWhatsAppTemplatesModal = false;
 | 
						|
    },
 | 
						|
    onClickSelfAssign() {
 | 
						|
      const {
 | 
						|
        account_id,
 | 
						|
        availability_status,
 | 
						|
        available_name,
 | 
						|
        email,
 | 
						|
        id,
 | 
						|
        name,
 | 
						|
        role,
 | 
						|
        avatar_url,
 | 
						|
      } = this.currentUser;
 | 
						|
      const selfAssign = {
 | 
						|
        account_id,
 | 
						|
        availability_status,
 | 
						|
        available_name,
 | 
						|
        email,
 | 
						|
        id,
 | 
						|
        name,
 | 
						|
        role,
 | 
						|
        thumbnail: avatar_url,
 | 
						|
      };
 | 
						|
      this.assignedAgent = selfAssign;
 | 
						|
    },
 | 
						|
    async onSendReply() {
 | 
						|
      if (this.isReplyButtonDisabled) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      if (!this.showMentions) {
 | 
						|
        let newMessage = this.message;
 | 
						|
        if (this.isSignatureEnabledForInbox && this.messageSignature) {
 | 
						|
          newMessage += '\n\n' + this.messageSignature;
 | 
						|
        }
 | 
						|
        const messagePayload = this.getMessagePayload(newMessage);
 | 
						|
 | 
						|
        this.clearMessage();
 | 
						|
        if (!this.isPrivate) {
 | 
						|
          this.clearEmailField();
 | 
						|
        }
 | 
						|
        this.sendMessage(messagePayload);
 | 
						|
        this.clearMessage();
 | 
						|
        this.hideEmojiPicker();
 | 
						|
        this.$emit('update:popoutReplyBox', false);
 | 
						|
      }
 | 
						|
    },
 | 
						|
    async sendMessage(messagePayload) {
 | 
						|
      try {
 | 
						|
        await this.$store.dispatch(
 | 
						|
          'createPendingMessageAndSend',
 | 
						|
          messagePayload
 | 
						|
        );
 | 
						|
        bus.$emit(BUS_EVENTS.SCROLL_TO_MESSAGE);
 | 
						|
        this.removeFromDraft();
 | 
						|
      } catch (error) {
 | 
						|
        const errorMessage =
 | 
						|
          error?.response?.data?.error || this.$t('CONVERSATION.MESSAGE_ERROR');
 | 
						|
        this.showAlert(errorMessage);
 | 
						|
      }
 | 
						|
    },
 | 
						|
    async onSendWhatsAppReply(messagePayload) {
 | 
						|
      this.sendMessage({
 | 
						|
        conversationId: this.currentChat.id,
 | 
						|
        ...messagePayload,
 | 
						|
      });
 | 
						|
      this.hideWhatsappTemplatesModal();
 | 
						|
    },
 | 
						|
    replaceText(message) {
 | 
						|
      setTimeout(() => {
 | 
						|
        AnalyticsHelper.track(ANALYTICS_EVENTS.INSERTED_A_CANNED_RESPONSE);
 | 
						|
        this.message = message;
 | 
						|
      }, 100);
 | 
						|
    },
 | 
						|
    setReplyMode(mode = REPLY_EDITOR_MODES.REPLY) {
 | 
						|
      const { can_reply: canReply } = this.currentChat;
 | 
						|
      if (canReply || this.isAWhatsAppChannel) this.replyType = mode;
 | 
						|
      if (this.showRichContentEditor) {
 | 
						|
        if (this.isRecordingAudio) {
 | 
						|
          this.toggleAudioRecorder();
 | 
						|
        }
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      this.$nextTick(() => this.$refs.messageInput.focus());
 | 
						|
    },
 | 
						|
    clearEditorSelection() {
 | 
						|
      this.updateEditorSelectionWith = '';
 | 
						|
    },
 | 
						|
    insertEmoji(emoji, selectionStart, selectionEnd) {
 | 
						|
      const { message } = this;
 | 
						|
      const newMessage =
 | 
						|
        message.slice(0, selectionStart) +
 | 
						|
        emoji +
 | 
						|
        message.slice(selectionEnd, message.length);
 | 
						|
      this.message = newMessage;
 | 
						|
    },
 | 
						|
    emojiOnClick(emoji) {
 | 
						|
      if (this.showRichContentEditor) {
 | 
						|
        this.updateEditorSelectionWith = emoji;
 | 
						|
        this.onFocus();
 | 
						|
      }
 | 
						|
      if (!this.showRichContentEditor) {
 | 
						|
        const { selectionStart, selectionEnd } = this.$refs.messageInput.$el;
 | 
						|
        this.insertEmoji(emoji, selectionStart, selectionEnd);
 | 
						|
      }
 | 
						|
    },
 | 
						|
    clearMessage() {
 | 
						|
      this.message = '';
 | 
						|
      this.attachedFiles = [];
 | 
						|
      this.isRecordingAudio = false;
 | 
						|
    },
 | 
						|
    clearEmailField() {
 | 
						|
      this.ccEmails = '';
 | 
						|
      this.bccEmails = '';
 | 
						|
    },
 | 
						|
    toggleEmojiPicker() {
 | 
						|
      this.showEmojiPicker = !this.showEmojiPicker;
 | 
						|
    },
 | 
						|
    toggleAudioRecorder() {
 | 
						|
      this.isRecordingAudio = !this.isRecordingAudio;
 | 
						|
      this.isRecorderAudioStopped = !this.isRecordingAudio;
 | 
						|
      if (!this.isRecordingAudio) {
 | 
						|
        this.clearMessage();
 | 
						|
        this.clearEmailField();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    toggleAudioRecorderPlayPause() {
 | 
						|
      if (this.isRecordingAudio) {
 | 
						|
        if (!this.isRecorderAudioStopped) {
 | 
						|
          this.isRecorderAudioStopped = true;
 | 
						|
          this.$refs.audioRecorderInput.stopAudioRecording();
 | 
						|
        } else if (this.isRecorderAudioStopped) {
 | 
						|
          this.$refs.audioRecorderInput.playPause();
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
    hideEmojiPicker() {
 | 
						|
      if (this.showEmojiPicker) {
 | 
						|
        this.toggleEmojiPicker();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    hideMentions() {
 | 
						|
      this.showMentions = false;
 | 
						|
    },
 | 
						|
    onTypingOn() {
 | 
						|
      this.toggleTyping('on');
 | 
						|
    },
 | 
						|
    onTypingOff() {
 | 
						|
      this.toggleTyping('off');
 | 
						|
    },
 | 
						|
    onBlur() {
 | 
						|
      this.isFocused = false;
 | 
						|
      this.saveDraft(this.conversationIdByRoute, this.replyType);
 | 
						|
    },
 | 
						|
    onFocus() {
 | 
						|
      this.isFocused = true;
 | 
						|
    },
 | 
						|
    onStateProgressRecorderChanged(duration) {
 | 
						|
      this.recordingAudioDurationText = duration;
 | 
						|
    },
 | 
						|
    onStateRecorderChanged(state) {
 | 
						|
      this.recordingAudioState = state;
 | 
						|
      if (state && 'notallowederror'.includes(state)) {
 | 
						|
        this.toggleAudioRecorder();
 | 
						|
      }
 | 
						|
    },
 | 
						|
    onFinishRecorder(file) {
 | 
						|
      return file && this.onFileUpload(file);
 | 
						|
    },
 | 
						|
    toggleTyping(status) {
 | 
						|
      const conversationId = this.currentChat.id;
 | 
						|
      const isPrivate = this.isPrivate;
 | 
						|
      this.$store.dispatch('conversationTypingStatus/toggleTyping', {
 | 
						|
        status,
 | 
						|
        conversationId,
 | 
						|
        isPrivate,
 | 
						|
      });
 | 
						|
    },
 | 
						|
    onFileUpload(file) {
 | 
						|
      if (this.globalConfig.directUploadsEnabled) {
 | 
						|
        this.onDirectFileUpload(file);
 | 
						|
      } else {
 | 
						|
        this.onIndirectFileUpload(file);
 | 
						|
      }
 | 
						|
    },
 | 
						|
    onDirectFileUpload(file) {
 | 
						|
      const MAXIMUM_SUPPORTED_FILE_UPLOAD_SIZE = this.isATwilioSMSChannel
 | 
						|
        ? MAXIMUM_FILE_UPLOAD_SIZE_TWILIO_SMS_CHANNEL
 | 
						|
        : MAXIMUM_FILE_UPLOAD_SIZE;
 | 
						|
 | 
						|
      if (!file) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      if (checkFileSizeLimit(file, MAXIMUM_SUPPORTED_FILE_UPLOAD_SIZE)) {
 | 
						|
        const upload = new DirectUpload(
 | 
						|
          file.file,
 | 
						|
          `/api/v1/accounts/${this.accountId}/conversations/${this.currentChat.id}/direct_uploads`,
 | 
						|
          {
 | 
						|
            directUploadWillCreateBlobWithXHR: xhr => {
 | 
						|
              xhr.setRequestHeader(
 | 
						|
                'api_access_token',
 | 
						|
                this.currentUser.access_token
 | 
						|
              );
 | 
						|
            },
 | 
						|
          }
 | 
						|
        );
 | 
						|
 | 
						|
        upload.create((error, blob) => {
 | 
						|
          if (error) {
 | 
						|
            this.showAlert(error);
 | 
						|
          } else {
 | 
						|
            this.attachFile({ file, blob });
 | 
						|
          }
 | 
						|
        });
 | 
						|
      } else {
 | 
						|
        this.showAlert(
 | 
						|
          this.$t('CONVERSATION.FILE_SIZE_LIMIT', {
 | 
						|
            MAXIMUM_SUPPORTED_FILE_UPLOAD_SIZE,
 | 
						|
          })
 | 
						|
        );
 | 
						|
      }
 | 
						|
    },
 | 
						|
    onIndirectFileUpload(file) {
 | 
						|
      const MAXIMUM_SUPPORTED_FILE_UPLOAD_SIZE = this.isATwilioSMSChannel
 | 
						|
        ? MAXIMUM_FILE_UPLOAD_SIZE_TWILIO_SMS_CHANNEL
 | 
						|
        : MAXIMUM_FILE_UPLOAD_SIZE;
 | 
						|
      if (!file) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      if (checkFileSizeLimit(file, MAXIMUM_SUPPORTED_FILE_UPLOAD_SIZE)) {
 | 
						|
        this.attachFile({ file });
 | 
						|
      } else {
 | 
						|
        this.showAlert(
 | 
						|
          this.$t('CONVERSATION.FILE_SIZE_LIMIT', {
 | 
						|
            MAXIMUM_SUPPORTED_FILE_UPLOAD_SIZE,
 | 
						|
          })
 | 
						|
        );
 | 
						|
      }
 | 
						|
    },
 | 
						|
    attachFile({ blob, file }) {
 | 
						|
      const reader = new FileReader();
 | 
						|
      reader.readAsDataURL(file.file);
 | 
						|
      reader.onloadend = () => {
 | 
						|
        this.attachedFiles.push({
 | 
						|
          currentChatId: this.currentChat.id,
 | 
						|
          resource: blob || file,
 | 
						|
          isPrivate: this.isPrivate,
 | 
						|
          thumb: reader.result,
 | 
						|
          blobSignedId: blob ? blob.signed_id : undefined,
 | 
						|
        });
 | 
						|
      };
 | 
						|
    },
 | 
						|
    removeAttachment(itemIndex) {
 | 
						|
      this.attachedFiles = this.attachedFiles.filter(
 | 
						|
        (item, index) => itemIndex !== index
 | 
						|
      );
 | 
						|
    },
 | 
						|
    getMessagePayload(message) {
 | 
						|
      const messagePayload = {
 | 
						|
        conversationId: this.currentChat.id,
 | 
						|
        message,
 | 
						|
        private: this.isPrivate,
 | 
						|
      };
 | 
						|
 | 
						|
      if (this.inReplyTo) {
 | 
						|
        messagePayload.contentAttributes = { in_reply_to: this.inReplyTo };
 | 
						|
      }
 | 
						|
 | 
						|
      if (this.attachedFiles && this.attachedFiles.length) {
 | 
						|
        messagePayload.files = [];
 | 
						|
        this.attachedFiles.forEach(attachment => {
 | 
						|
          if (this.globalConfig.directUploadsEnabled) {
 | 
						|
            messagePayload.files.push(attachment.blobSignedId);
 | 
						|
          } else {
 | 
						|
            messagePayload.files.push(attachment.resource.file);
 | 
						|
          }
 | 
						|
        });
 | 
						|
      }
 | 
						|
 | 
						|
      if (this.ccEmails && !this.isOnPrivateNote) {
 | 
						|
        messagePayload.ccEmails = this.ccEmails;
 | 
						|
      }
 | 
						|
 | 
						|
      if (this.bccEmails && !this.isOnPrivateNote) {
 | 
						|
        messagePayload.bccEmails = this.bccEmails;
 | 
						|
      }
 | 
						|
 | 
						|
      return messagePayload;
 | 
						|
    },
 | 
						|
    setCcEmails(value) {
 | 
						|
      this.bccEmails = value.bccEmails;
 | 
						|
      this.ccEmails = value.ccEmails;
 | 
						|
    },
 | 
						|
    setCCEmailFromLastChat() {
 | 
						|
      if (this.lastEmail) {
 | 
						|
        const {
 | 
						|
          content_attributes: { email: emailAttributes = {} },
 | 
						|
        } = this.lastEmail;
 | 
						|
        const cc = emailAttributes.cc || [];
 | 
						|
        const bcc = emailAttributes.bcc || [];
 | 
						|
        this.ccEmails = cc.join(', ');
 | 
						|
        this.bccEmails = bcc.join(', ');
 | 
						|
      }
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
.send-button {
 | 
						|
  margin-bottom: 0;
 | 
						|
}
 | 
						|
 | 
						|
.message-signature-wrap {
 | 
						|
  margin: 0 var(--space-normal);
 | 
						|
  padding: var(--space-small);
 | 
						|
  display: flex;
 | 
						|
  align-items: baseline;
 | 
						|
  justify-content: space-between;
 | 
						|
  border: 1px dashed var(--s-100);
 | 
						|
  border-radius: var(--border-radius-small);
 | 
						|
  max-height: 8vh;
 | 
						|
  overflow: auto;
 | 
						|
 | 
						|
  &:hover {
 | 
						|
    background: var(--s-25);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.message-signature {
 | 
						|
  width: fit-content;
 | 
						|
  margin: 0;
 | 
						|
}
 | 
						|
 | 
						|
.attachment-preview-box {
 | 
						|
  padding: 0 var(--space-normal);
 | 
						|
  background: transparent;
 | 
						|
}
 | 
						|
 | 
						|
.reply-box {
 | 
						|
  border-top: 1px solid var(--color-border);
 | 
						|
  background: white;
 | 
						|
 | 
						|
  &.is-private {
 | 
						|
    background: var(--y-50);
 | 
						|
  }
 | 
						|
}
 | 
						|
.send-button {
 | 
						|
  margin-bottom: 0;
 | 
						|
}
 | 
						|
 | 
						|
.reply-box__top {
 | 
						|
  padding: 0 var(--space-normal);
 | 
						|
  border-top: 1px solid var(--color-border);
 | 
						|
  margin-top: -1px;
 | 
						|
}
 | 
						|
 | 
						|
.emoji-dialog {
 | 
						|
  top: unset;
 | 
						|
  bottom: var(--space-normal);
 | 
						|
  left: -320px;
 | 
						|
  right: unset;
 | 
						|
 | 
						|
  &::before {
 | 
						|
    right: var(--space-minus-normal);
 | 
						|
    bottom: var(--space-small);
 | 
						|
    transform: rotate(270deg);
 | 
						|
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
 | 
						|
  }
 | 
						|
}
 | 
						|
.emoji-dialog--expanded {
 | 
						|
  left: unset;
 | 
						|
  bottom: var(--space-jumbo);
 | 
						|
  position: absolute;
 | 
						|
  z-index: var(--z-index-normal);
 | 
						|
 | 
						|
  &::before {
 | 
						|
    transform: rotate(0deg);
 | 
						|
    left: var(--space-smaller);
 | 
						|
    bottom: var(--space-minus-small);
 | 
						|
  }
 | 
						|
}
 | 
						|
.message-signature {
 | 
						|
  margin-bottom: 0;
 | 
						|
 | 
						|
  ::v-deep p:last-child {
 | 
						|
    margin-bottom: 0;
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |