mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 02:32:29 +00:00
Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
549 lines
14 KiB
Vue
549 lines
14 KiB
Vue
<template>
|
|
<div class="editor-root">
|
|
<tag-agents
|
|
v-if="showUserMentions && isPrivate"
|
|
:search-key="mentionSearchKey"
|
|
@click="insertMentionNode"
|
|
/>
|
|
<canned-response
|
|
v-if="shouldShowCannedResponses"
|
|
:search-key="cannedSearchTerm"
|
|
@click="insertCannedResponse"
|
|
/>
|
|
<variable-list
|
|
v-if="shouldShowVariables"
|
|
:search-key="variableSearchTerm"
|
|
@click="insertVariable"
|
|
/>
|
|
<div ref="editor" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
messageSchema,
|
|
buildEditor,
|
|
EditorView,
|
|
MessageMarkdownTransformer,
|
|
MessageMarkdownSerializer,
|
|
EditorState,
|
|
Selection,
|
|
} from '@chatwoot/prosemirror-schema';
|
|
import {
|
|
suggestionsPlugin,
|
|
triggerCharacters,
|
|
} from '@chatwoot/prosemirror-schema/src/mentions/plugin';
|
|
|
|
import TagAgents from '../conversation/TagAgents';
|
|
import CannedResponse from '../conversation/CannedResponse';
|
|
import VariableList from '../conversation/VariableList';
|
|
|
|
const TYPING_INDICATOR_IDLE_TIME = 4000;
|
|
|
|
import {
|
|
hasPressedEnterAndNotCmdOrShift,
|
|
hasPressedCommandAndEnter,
|
|
hasPressedAltAndPKey,
|
|
hasPressedAltAndLKey,
|
|
} from 'shared/helpers/KeyboardHelpers';
|
|
import eventListenerMixins from 'shared/mixins/eventListenerMixins';
|
|
import uiSettingsMixin from 'dashboard/mixins/uiSettings';
|
|
import { isEditorHotKeyEnabled } from 'dashboard/mixins/uiSettings';
|
|
import { replaceVariablesInMessage } from '@chatwoot/utils';
|
|
import { CONVERSATION_EVENTS } from '../../../helper/AnalyticsHelper/events';
|
|
|
|
const createState = (
|
|
content,
|
|
placeholder,
|
|
plugins = [],
|
|
enabledMenuOptions
|
|
) => {
|
|
return EditorState.create({
|
|
doc: new MessageMarkdownTransformer(messageSchema).parse(content),
|
|
plugins: buildEditor({
|
|
schema: messageSchema,
|
|
placeholder,
|
|
plugins,
|
|
enabledMenuOptions,
|
|
}),
|
|
});
|
|
};
|
|
|
|
export default {
|
|
name: 'WootMessageEditor',
|
|
components: { TagAgents, CannedResponse, VariableList },
|
|
mixins: [eventListenerMixins, uiSettingsMixin],
|
|
props: {
|
|
value: { type: String, default: '' },
|
|
editorId: { type: String, default: '' },
|
|
placeholder: { type: String, default: '' },
|
|
isPrivate: { type: Boolean, default: false },
|
|
enableSuggestions: { type: Boolean, default: true },
|
|
overrideLineBreaks: { type: Boolean, default: false },
|
|
updateSelectionWith: { type: String, default: '' },
|
|
enableVariables: { type: Boolean, default: false },
|
|
enableCannedResponses: { type: Boolean, default: true },
|
|
variables: { type: Object, default: () => ({}) },
|
|
enabledMenuOptions: { type: Array, default: () => [] },
|
|
},
|
|
data() {
|
|
return {
|
|
showUserMentions: false,
|
|
showCannedMenu: false,
|
|
showVariables: false,
|
|
mentionSearchKey: '',
|
|
cannedSearchTerm: '',
|
|
variableSearchTerm: '',
|
|
editorView: null,
|
|
range: null,
|
|
state: undefined,
|
|
};
|
|
},
|
|
computed: {
|
|
contentFromEditor() {
|
|
return MessageMarkdownSerializer.serialize(this.editorView.state.doc);
|
|
},
|
|
shouldShowVariables() {
|
|
return this.enableVariables && this.showVariables && !this.isPrivate;
|
|
},
|
|
shouldShowCannedResponses() {
|
|
return (
|
|
this.enableCannedResponses && this.showCannedMenu && !this.isPrivate
|
|
);
|
|
},
|
|
plugins() {
|
|
if (!this.enableSuggestions) {
|
|
return [];
|
|
}
|
|
|
|
return [
|
|
suggestionsPlugin({
|
|
matcher: triggerCharacters('@'),
|
|
onEnter: args => {
|
|
this.showUserMentions = true;
|
|
this.range = args.range;
|
|
this.editorView = args.view;
|
|
return false;
|
|
},
|
|
onChange: args => {
|
|
this.editorView = args.view;
|
|
this.range = args.range;
|
|
|
|
this.mentionSearchKey = args.text.replace('@', '');
|
|
|
|
return false;
|
|
},
|
|
onExit: () => {
|
|
this.mentionSearchKey = '';
|
|
this.showUserMentions = false;
|
|
return false;
|
|
},
|
|
onKeyDown: ({ event }) => {
|
|
return event.keyCode === 13 && this.showUserMentions;
|
|
},
|
|
}),
|
|
suggestionsPlugin({
|
|
matcher: triggerCharacters('/'),
|
|
suggestionClass: '',
|
|
onEnter: args => {
|
|
if (this.isPrivate) {
|
|
return false;
|
|
}
|
|
this.showCannedMenu = true;
|
|
this.range = args.range;
|
|
this.editorView = args.view;
|
|
return false;
|
|
},
|
|
onChange: args => {
|
|
this.editorView = args.view;
|
|
this.range = args.range;
|
|
|
|
this.cannedSearchTerm = args.text.replace('/', '');
|
|
return false;
|
|
},
|
|
onExit: () => {
|
|
this.cannedSearchTerm = '';
|
|
this.showCannedMenu = false;
|
|
return false;
|
|
},
|
|
onKeyDown: ({ event }) => {
|
|
return event.keyCode === 13 && this.showCannedMenu;
|
|
},
|
|
}),
|
|
suggestionsPlugin({
|
|
matcher: triggerCharacters('{{'),
|
|
suggestionClass: '',
|
|
onEnter: args => {
|
|
if (this.isPrivate) {
|
|
return false;
|
|
}
|
|
this.showVariables = true;
|
|
this.range = args.range;
|
|
this.editorView = args.view;
|
|
return false;
|
|
},
|
|
onChange: args => {
|
|
this.editorView = args.view;
|
|
this.range = args.range;
|
|
|
|
this.variableSearchTerm = args.text.replace('{{', '');
|
|
return false;
|
|
},
|
|
onExit: () => {
|
|
this.variableSearchTerm = '';
|
|
this.showVariables = false;
|
|
return false;
|
|
},
|
|
onKeyDown: ({ event }) => {
|
|
return event.keyCode === 13 && this.showVariables;
|
|
},
|
|
}),
|
|
];
|
|
},
|
|
},
|
|
watch: {
|
|
showUserMentions(updatedValue) {
|
|
this.$emit('toggle-user-mention', this.isPrivate && updatedValue);
|
|
},
|
|
showCannedMenu(updatedValue) {
|
|
this.$emit('toggle-canned-menu', !this.isPrivate && updatedValue);
|
|
},
|
|
showVariables(updatedValue) {
|
|
this.$emit('toggle-variables-menu', !this.isPrivate && updatedValue);
|
|
},
|
|
value(newVal = '') {
|
|
if (newVal !== this.contentFromEditor) {
|
|
this.reloadState(newVal);
|
|
}
|
|
},
|
|
editorId() {
|
|
this.showCannedMenu = false;
|
|
this.cannedSearchTerm = '';
|
|
this.reloadState(this.value);
|
|
},
|
|
isPrivate() {
|
|
this.reloadState(this.value);
|
|
},
|
|
|
|
updateSelectionWith(newValue, oldValue) {
|
|
if (!this.editorView) {
|
|
return null;
|
|
}
|
|
if (newValue !== oldValue) {
|
|
if (this.updateSelectionWith !== '') {
|
|
const node = this.editorView.state.schema.text(
|
|
this.updateSelectionWith
|
|
);
|
|
const tr = this.editorView.state.tr.replaceSelectionWith(node);
|
|
this.editorView.focus();
|
|
this.state = this.editorView.state.apply(tr);
|
|
this.emitOnChange();
|
|
this.$emit('clear-selection');
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
},
|
|
created() {
|
|
this.state = createState(
|
|
this.value,
|
|
this.placeholder,
|
|
this.plugins,
|
|
this.enabledMenuOptions
|
|
);
|
|
},
|
|
mounted() {
|
|
this.createEditorView();
|
|
this.editorView.updateState(this.state);
|
|
this.focusEditorInputField();
|
|
},
|
|
methods: {
|
|
reloadState(content = this.value) {
|
|
this.state = createState(
|
|
content,
|
|
this.placeholder,
|
|
this.plugins,
|
|
this.enabledMenuOptions
|
|
);
|
|
this.editorView.updateState(this.state);
|
|
this.focusEditorInputField();
|
|
},
|
|
createEditorView() {
|
|
this.editorView = new EditorView(this.$refs.editor, {
|
|
state: this.state,
|
|
dispatchTransaction: tx => {
|
|
this.state = this.state.apply(tx);
|
|
this.emitOnChange();
|
|
},
|
|
handleDOMEvents: {
|
|
keyup: () => {
|
|
this.onKeyup();
|
|
},
|
|
keydown: (view, event) => {
|
|
this.onKeydown(event);
|
|
},
|
|
focus: () => {
|
|
this.onFocus();
|
|
},
|
|
blur: () => {
|
|
this.onBlur();
|
|
},
|
|
paste: (view, event) => {
|
|
const data = event.clipboardData.files;
|
|
if (data.length > 0) {
|
|
event.preventDefault();
|
|
}
|
|
},
|
|
},
|
|
});
|
|
},
|
|
isEnterToSendEnabled() {
|
|
return isEditorHotKeyEnabled(this.uiSettings, 'enter');
|
|
},
|
|
isCmdPlusEnterToSendEnabled() {
|
|
return isEditorHotKeyEnabled(this.uiSettings, 'cmd_enter');
|
|
},
|
|
handleKeyEvents(e) {
|
|
if (hasPressedAltAndPKey(e)) {
|
|
this.focusEditorInputField();
|
|
}
|
|
if (hasPressedAltAndLKey(e)) {
|
|
this.focusEditorInputField();
|
|
}
|
|
},
|
|
focusEditorInputField() {
|
|
const { tr } = this.editorView.state;
|
|
const selection = Selection.atEnd(tr.doc);
|
|
|
|
this.editorView.dispatch(tr.setSelection(selection));
|
|
this.editorView.focus();
|
|
},
|
|
insertMentionNode(mentionItem) {
|
|
if (!this.editorView) {
|
|
return null;
|
|
}
|
|
const node = this.editorView.state.schema.nodes.mention.create({
|
|
userId: mentionItem.id,
|
|
userFullName: mentionItem.name,
|
|
});
|
|
|
|
const tr = this.editorView.state.tr
|
|
.replaceWith(this.range.from, this.range.to, node)
|
|
.insertText(` `);
|
|
this.state = this.editorView.state.apply(tr);
|
|
this.emitOnChange();
|
|
this.$track(CONVERSATION_EVENTS.USED_MENTIONS);
|
|
|
|
return false;
|
|
},
|
|
insertCannedResponse(cannedItem) {
|
|
const updatedMessage = replaceVariablesInMessage({
|
|
message: cannedItem,
|
|
variables: this.variables,
|
|
});
|
|
if (!this.editorView) {
|
|
return null;
|
|
}
|
|
|
|
let from = this.range.from - 1;
|
|
let node = new MessageMarkdownTransformer(messageSchema).parse(
|
|
updatedMessage
|
|
);
|
|
|
|
if (node.textContent === updatedMessage) {
|
|
node = this.editorView.state.schema.text(updatedMessage);
|
|
from = this.range.from;
|
|
}
|
|
|
|
const tr = this.editorView.state.tr.replaceWith(
|
|
from,
|
|
this.range.to,
|
|
node
|
|
);
|
|
|
|
this.state = this.editorView.state.apply(tr);
|
|
this.emitOnChange();
|
|
|
|
tr.scrollIntoView();
|
|
this.$track(CONVERSATION_EVENTS.INSERTED_A_CANNED_RESPONSE);
|
|
return false;
|
|
},
|
|
insertVariable(variable) {
|
|
if (!this.editorView) {
|
|
return null;
|
|
}
|
|
let node = this.editorView.state.schema.text(`{{${variable}}}`);
|
|
const from = this.range.from;
|
|
|
|
const tr = this.editorView.state.tr.replaceWith(
|
|
from,
|
|
this.range.to,
|
|
node
|
|
);
|
|
|
|
this.state = this.editorView.state.apply(tr);
|
|
this.emitOnChange();
|
|
|
|
// The `{{ }}` are added to the message, but the cursor is placed
|
|
// and onExit of suggestionsPlugin is not called. So we need to manually hide
|
|
this.showVariables = false;
|
|
this.$track(CONVERSATION_EVENTS.INSERTED_A_VARIABLE);
|
|
tr.scrollIntoView();
|
|
return false;
|
|
},
|
|
|
|
emitOnChange() {
|
|
this.editorView.updateState(this.state);
|
|
|
|
this.$emit('input', this.contentFromEditor);
|
|
},
|
|
|
|
hideMentions() {
|
|
this.showUserMentions = false;
|
|
},
|
|
resetTyping() {
|
|
this.$emit('typing-off');
|
|
this.idleTimer = null;
|
|
},
|
|
turnOffIdleTimer() {
|
|
if (this.idleTimer) {
|
|
clearTimeout(this.idleTimer);
|
|
}
|
|
},
|
|
handleLineBreakWhenEnterToSendEnabled(event) {
|
|
if (
|
|
hasPressedEnterAndNotCmdOrShift(event) &&
|
|
this.isEnterToSendEnabled() &&
|
|
!this.overrideLineBreaks
|
|
) {
|
|
event.preventDefault();
|
|
}
|
|
},
|
|
handleLineBreakWhenCmdAndEnterToSendEnabled(event) {
|
|
if (
|
|
hasPressedCommandAndEnter(event) &&
|
|
this.isCmdPlusEnterToSendEnabled() &&
|
|
!this.overrideLineBreaks
|
|
) {
|
|
event.preventDefault();
|
|
}
|
|
},
|
|
onKeyup() {
|
|
if (!this.idleTimer) {
|
|
this.$emit('typing-on');
|
|
}
|
|
this.turnOffIdleTimer();
|
|
this.idleTimer = setTimeout(
|
|
() => this.resetTyping(),
|
|
TYPING_INDICATOR_IDLE_TIME
|
|
);
|
|
},
|
|
onKeydown(event) {
|
|
if (this.isEnterToSendEnabled()) {
|
|
this.handleLineBreakWhenEnterToSendEnabled(event);
|
|
}
|
|
if (this.isCmdPlusEnterToSendEnabled()) {
|
|
this.handleLineBreakWhenCmdAndEnterToSendEnabled(event);
|
|
}
|
|
},
|
|
onBlur() {
|
|
this.turnOffIdleTimer();
|
|
this.resetTyping();
|
|
this.$emit('blur');
|
|
},
|
|
onFocus() {
|
|
this.$emit('focus');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '~@chatwoot/prosemirror-schema/src/styles/base.scss';
|
|
|
|
.ProseMirror-menubar-wrapper {
|
|
@apply flex flex-col;
|
|
.ProseMirror-menubar {
|
|
min-height: var(--space-two) !important;
|
|
@apply -ml-2.5 pb-0 bg-white dark:bg-slate-900 text-slate-700 dark:text-slate-100;
|
|
|
|
.ProseMirror-menu-active {
|
|
@apply bg-slate-75 dark:bg-slate-800;
|
|
}
|
|
}
|
|
> .ProseMirror {
|
|
@apply p-0 break-words text-slate-800 dark:text-slate-100;
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p {
|
|
@apply text-slate-800 dark:text-slate-100;
|
|
}
|
|
|
|
blockquote {
|
|
@apply border-slate-400 dark:border-slate-500;
|
|
|
|
p {
|
|
@apply text-slate-600 dark:text-slate-400;
|
|
}
|
|
}
|
|
|
|
ol li {
|
|
@apply list-item list-decimal;
|
|
}
|
|
}
|
|
}
|
|
|
|
.editor-root {
|
|
@apply w-full relative;
|
|
}
|
|
|
|
.ProseMirror-woot-style {
|
|
@apply overflow-auto min-h-[5rem] max-h-[7.5rem];
|
|
}
|
|
|
|
.ProseMirror-prompt {
|
|
@apply z-50 bg-slate-25 dark:bg-slate-700 rounded-md border border-solid border-slate-75 dark:border-slate-800;
|
|
}
|
|
|
|
.is-private {
|
|
.prosemirror-mention-node {
|
|
@apply font-medium bg-yellow-100 dark:bg-yellow-800 text-slate-900 dark:text-slate-25 py-0 px-1;
|
|
}
|
|
|
|
.ProseMirror-menubar-wrapper {
|
|
.ProseMirror-menubar {
|
|
@apply bg-yellow-100 dark:bg-yellow-800 text-slate-700 dark:text-slate-25;
|
|
}
|
|
|
|
> .ProseMirror {
|
|
@apply text-slate-800 dark:text-slate-25;
|
|
|
|
p {
|
|
@apply text-slate-800 dark:text-slate-25;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.editor-wrap {
|
|
@apply mb-4;
|
|
}
|
|
|
|
.message-editor {
|
|
@apply border border-solid border-slate-200 dark:border-slate-600 bg-white dark:bg-slate-900 rounded-md py-0 px-1 mb-0;
|
|
}
|
|
|
|
.editor_warning {
|
|
@apply border border-solid border-red-400 dark:border-red-400;
|
|
}
|
|
|
|
.editor-warning__message {
|
|
@apply text-red-400 dark:text-red-400 font-normal pt-1 pb-0 px-0;
|
|
}
|
|
</style>
|