1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-11 21:53:24 +08:00

Add new template to Field Text Long #141. (#161)

This commit is contained in:
EdwinBetanc0urt 2019-11-20 18:09:06 -04:00 committed by Yamel Senih
parent dafa8c56c6
commit 94cc98f3b4

View File

@ -0,0 +1,120 @@
<template>
<div :id="id" />
</template>
<script>
// deps for editor
import 'tui-editor/dist/tui-editor.css' // editor ui
import 'tui-editor/dist/tui-editor-contents.css' // editor content
import 'codemirror/lib/codemirror.css' // codemirror
import Editor from 'tui-editor'
import { getLanguage } from '@/lang'
import { fieldMixin } from '@/components/ADempiere/Field/FieldMixin'
export default {
name: 'FieldTextLong',
mixins: [fieldMixin],
props: {
id: {
type: String,
required: false,
default() {
return 'markdown-editor-' + +new Date() + ((Math.random() * 1000).toFixed(0))
}
}
},
data() {
return {
mode: 'markdown', // or wysiwyg
height: '200px',
editor: null
}
},
computed: {
language() {
// https://github.com/nhnent/tui.editor/tree/master/src/js/langs
if (this.isEmptyValue(getLanguage())) {
return 'en_US'
}
return getLanguage()
},
editorOptions() {
const options = {
previewStyle: 'vertical',
useCommandShortcut: true,
usageStatistics: false
}
options.initialEditType = this.mode
options.height = this.height
options.language = this.language
return options
}
},
watch: {
valueModel(value) {
if (this.metadata.inTable) {
if (this.isEmptyValue(value)) {
value = ''
}
this.value = String(value)
this.editor.setValue(value)
}
},
'metadata.value'(value) {
if (!this.metadata.inTable) {
if (this.isEmptyValue(value)) {
value = ''
}
this.value = String(value)
this.editor.setValue(value)
}
},
value(newValue, oldValue) {
if (newValue !== oldValue && newValue !== this.editor.getValue()) {
this.editor.setValue(newValue)
}
},
language(langValue) {
this.destroyEditor()
this.initEditor()
},
height(heightValue) {
this.editor.height(heightValue)
}
},
mounted() {
this.initEditor()
},
destroyed() {
this.destroyEditor()
},
methods: {
initEditor() {
this.editor = new Editor({
el: document.getElementById(this.id),
...this.editorOptions
})
if (!this.isEmptyValue(this.value)) {
this.editor.setValue(this.value)
}
this.editor.on('blur', () => {
this.preHandleChange(this.editor.getValue())
})
},
destroyEditor() {
if (!this.editor) {
return
}
this.editor.off('change')
this.editor.remove()
},
setHtml(value) {
this.editor.setHtml(value)
},
getHtml() {
return this.editor.getHtml()
}
}
}
</script>