mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			216 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			216 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="editor-root">
 | |
|     <tag-agents
 | |
|       v-if="showUserMentions && isPrivate"
 | |
|       :search-key="mentionSearchKey"
 | |
|       @click="insertMentionNode"
 | |
|     />
 | |
|     <div ref="editor"></div>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import { EditorView } from 'prosemirror-view';
 | |
| import { defaultMarkdownSerializer } from 'prosemirror-markdown';
 | |
| 
 | |
| const TYPING_INDICATOR_IDLE_TIME = 4000;
 | |
| 
 | |
| import {
 | |
|   addMentionsToMarkdownSerializer,
 | |
|   addMentionsToMarkdownParser,
 | |
|   schemaWithMentions,
 | |
| } from '@chatwoot/prosemirror-schema/src/mentions/schema';
 | |
| import {
 | |
|   suggestionsPlugin,
 | |
|   triggerCharacters,
 | |
| } from '@chatwoot/prosemirror-schema/src/mentions/plugin';
 | |
| import TagAgents from '../conversation/TagAgents.vue';
 | |
| import { EditorState } from 'prosemirror-state';
 | |
| import { defaultMarkdownParser } from 'prosemirror-markdown';
 | |
| import { wootWriterSetup } from '@chatwoot/prosemirror-schema';
 | |
| import '@chatwoot/prosemirror-schema/src/woot-editor.css';
 | |
| 
 | |
| const createState = (content, placeholder, plugins = []) => {
 | |
|   return EditorState.create({
 | |
|     doc: addMentionsToMarkdownParser(defaultMarkdownParser).parse(content),
 | |
|     plugins: wootWriterSetup({
 | |
|       schema: schemaWithMentions,
 | |
|       placeholder,
 | |
|       plugins,
 | |
|     }),
 | |
|   });
 | |
| };
 | |
| 
 | |
| export default {
 | |
|   name: 'WootMessageEditor',
 | |
|   components: { TagAgents },
 | |
|   props: {
 | |
|     value: { type: String, default: '' },
 | |
|     placeholder: { type: String, default: '' },
 | |
|     isPrivate: { type: Boolean, default: false },
 | |
|   },
 | |
|   data() {
 | |
|     return {
 | |
|       lastValue: null,
 | |
|       showUserMentions: false,
 | |
|       mentionSearchKey: '',
 | |
|       editorView: null,
 | |
|       range: null,
 | |
|     };
 | |
|   },
 | |
|   computed: {
 | |
|     plugins() {
 | |
|       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;
 | |
|             this.editorView = null;
 | |
|             return false;
 | |
|           },
 | |
|           onKeyDown: ({ event }) => {
 | |
|             return event.keyCode === 13 && this.showUserMentions;
 | |
|           },
 | |
|         }),
 | |
|       ];
 | |
|     },
 | |
|   },
 | |
|   watch: {
 | |
|     showUserMentions(updatedValue) {
 | |
|       this.$emit('toggle-user-mention', this.isPrivate && updatedValue);
 | |
|     },
 | |
|     value(newValue) {
 | |
|       if (newValue !== this.lastValue) {
 | |
|         this.state = createState(newValue, this.placeholder, this.plugins);
 | |
|         this.view.updateState(this.state);
 | |
|       }
 | |
|     },
 | |
|   },
 | |
|   created() {
 | |
|     this.state = createState(this.value, this.placeholder, this.plugins);
 | |
|   },
 | |
|   mounted() {
 | |
|     this.view = new EditorView(this.$refs.editor, {
 | |
|       state: this.state,
 | |
|       dispatchTransaction: tx => {
 | |
|         this.state = this.state.apply(tx);
 | |
|         this.emitOnChange();
 | |
|       },
 | |
|       handleDOMEvents: {
 | |
|         keyup: () => {
 | |
|           this.onKeyup();
 | |
|         },
 | |
|         focus: () => {
 | |
|           this.onFocus();
 | |
|         },
 | |
|         blur: () => {
 | |
|           this.onBlur();
 | |
|         },
 | |
|       },
 | |
|     });
 | |
|   },
 | |
|   methods: {
 | |
|     insertMentionNode(mentionItem) {
 | |
|       if (!this.view) {
 | |
|         return null;
 | |
|       }
 | |
|       const node = this.view.state.schema.nodes.mention.create({
 | |
|         userId: mentionItem.key,
 | |
|         userFullName: mentionItem.label,
 | |
|       });
 | |
| 
 | |
|       const tr = this.view.state.tr.replaceWith(
 | |
|         this.range.from,
 | |
|         this.range.to,
 | |
|         node
 | |
|       );
 | |
|       this.state = this.view.state.apply(tr);
 | |
|       return this.emitOnChange();
 | |
|     },
 | |
|     emitOnChange() {
 | |
|       this.view.updateState(this.state);
 | |
|       this.lastValue = addMentionsToMarkdownSerializer(
 | |
|         defaultMarkdownSerializer
 | |
|       ).serialize(this.state.doc);
 | |
|       this.$emit('input', this.lastValue);
 | |
|     },
 | |
|     hideMentions() {
 | |
|       this.showUserMentions = false;
 | |
|     },
 | |
|     resetTyping() {
 | |
|       this.$emit('typing-off');
 | |
|       this.idleTimer = null;
 | |
|     },
 | |
|     turnOffIdleTimer() {
 | |
|       if (this.idleTimer) {
 | |
|         clearTimeout(this.idleTimer);
 | |
|       }
 | |
|     },
 | |
|     onKeyup() {
 | |
|       if (!this.idleTimer) {
 | |
|         this.$emit('typing-on');
 | |
|       }
 | |
|       this.turnOffIdleTimer();
 | |
|       this.idleTimer = setTimeout(
 | |
|         () => this.resetTyping(),
 | |
|         TYPING_INDICATOR_IDLE_TIME
 | |
|       );
 | |
|     },
 | |
|     onBlur() {
 | |
|       this.turnOffIdleTimer();
 | |
|       this.resetTyping();
 | |
|       this.$emit('blur');
 | |
|     },
 | |
|     onFocus() {
 | |
|       this.$emit('focus');
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="scss">
 | |
| .ProseMirror-menubar-wrapper {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| 
 | |
|   > .ProseMirror {
 | |
|     padding: 0;
 | |
|     word-break: break-word;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .editor-root {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .ProseMirror-woot-style {
 | |
|   min-height: 8rem;
 | |
|   max-height: 12rem;
 | |
|   overflow: auto;
 | |
| }
 | |
| 
 | |
| .is-private {
 | |
|   .prosemirror-mention-node {
 | |
|     font-weight: var(--font-weight-medium);
 | |
|     background: var(--s-300);
 | |
|     border-radius: var(--border-radius-small);
 | |
|     padding: 1px 4px;
 | |
|     color: var(--white);
 | |
|   }
 | |
| }
 | |
| </style>
 | 
