145 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|     <div class="quill">
 | |
|         <div :id="toolbarId">
 | |
|             <div class="ql-formats">
 | |
|                 <button class="ql-bold"></button>
 | |
|                 <button class="ql-italic"></button>
 | |
|                 <button class="ql-underline"></button>
 | |
|                 <button class="ql-link"></button>
 | |
|                 <button class="ql-blockquote"></button>
 | |
|                 <button type="button" class="ql-list" value="ordered"></button>
 | |
|                 <button type="button" class="ql-list" value="bullet"></button>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div :id="editorId" :name="name" class="" ref="editor">
 | |
|         </div>
 | |
|     </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import Quill from 'quill';
 | |
| 
 | |
| //var Block = Quill.import('blots/block');
 | |
| //Block.tagName = 'div';
 | |
| //Quill.register(Block);
 | |
| 
 | |
| export default {
 | |
|     name: 'akaunting-html-editor',
 | |
| 
 | |
|     props: {
 | |
|         name: String,
 | |
|         value: {
 | |
|             type: String,
 | |
|             default: ''
 | |
|         },
 | |
|         theme: {
 | |
|             type: String,
 | |
|             default: 'snow'
 | |
|         },
 | |
|         readonly: {
 | |
|             type: Boolean,
 | |
|             default: false
 | |
|         },
 | |
|     },
 | |
| 
 | |
|     data () {
 | |
|         return {
 | |
|             editor: null,
 | |
|             editorValue: this.value,
 | |
|             content: null,
 | |
|             lastHtmlValue: '',
 | |
|             editorId: null,
 | |
|             toolbarId: null
 | |
|         }
 | |
|     },
 | |
| 
 | |
|     methods: {
 | |
|         initialize (Quill) {
 | |
|             let theme = this.theme;
 | |
| 
 | |
|             this.editor = new Quill(`#${this.editorId}`, {
 | |
|                 theme: theme,
 | |
|                 modules: {
 | |
|                     toolbar: `#${this.toolbarId}`
 | |
|                 },
 | |
|                 readOnly: this.readonly
 | |
|             });
 | |
| 
 | |
|             if (this.editorValue.length > 0) {
 | |
|                 this.editorValue = this.editorValue.replace(new RegExp('<p><br></p>', 'g'), '<p> </p>');
 | |
| 
 | |
|                 this.editor.pasteHTML(this.editorValue);
 | |
|             }
 | |
| 
 | |
|             let editorRef = this.$refs.editor;
 | |
|             let node = editorRef.children[0];
 | |
| 
 | |
|             this.editor.on('text-change', () => {
 | |
|                 let html = node.innerHTML;
 | |
| 
 | |
|                 if (html === '<p><br></p>') {
 | |
|                     html = '';
 | |
|                 } else {
 | |
|                     html = html.replace(new RegExp('<p><br></p>', 'g'), '<p> </p>');
 | |
|                 }
 | |
| 
 | |
|                 this.content = html;
 | |
| 
 | |
|                 this.$emit('input', this.content);
 | |
|             });
 | |
|         },
 | |
| 
 | |
|         pasteHTML () {
 | |
|             if (!this.editor) {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             this.editorValue = this.editorValue.replace(new RegExp('<p><br></p>', 'g'), '<p> </p>');
 | |
| 
 | |
|             this.editor.pasteHTML(this.editorValue);
 | |
|         },
 | |
| 
 | |
|         randomString() {
 | |
|             let text = "";
 | |
|             let possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
 | |
| 
 | |
|             for (let i = 0; i < 5; i++) {
 | |
|                 text += possible.charAt(Math.floor(Math.random() * possible.length));
 | |
|             }
 | |
| 
 | |
|             return text;
 | |
|         },
 | |
|     },
 | |
| 
 | |
|     async mounted () {
 | |
|         this.content = this.editorValue;
 | |
| 
 | |
|         this.editorId = this.randomString();
 | |
|         this.toolbarId = this.randomString();
 | |
| 
 | |
|         this.$nextTick(() => {
 | |
|             this.initialize(Quill)
 | |
|         });
 | |
|     },
 | |
| 
 | |
|     watch: {
 | |
|         value (newVal) {
 | |
|             if (newVal !== this.content) {
 | |
|                 this.pasteHTML(newVal);
 | |
|             }
 | |
|         },
 | |
| 
 | |
|         editorValue (newVal) {
 | |
|             if (newVal !== this.content) {
 | |
|                 this.pasteHTML(newVal);
 | |
|             }
 | |
|         },
 | |
| 
 | |
|         content (newVal) {
 | |
|             this.$emit('input', newVal);
 | |
|         },
 | |
|     },
 | |
|  }
 | |
| </script>
 |