parent
123a722bbe
commit
838abe42b8
7 changed files with 1055 additions and 704 deletions
@ -1,223 +1,310 @@ |
|||||||
<template> |
<template> |
||||||
<div class="quill" :class="[classes,readonly ? 'readonly' : '']"> |
<div> |
||||||
<div :ref="toref" :style="styles" v-loading="loading"></div> |
<el-radio-group v-if="!readonly" |
||||||
|
class="type-radio" |
||||||
|
v-model="editorType" |
||||||
|
@change="typeChange"> |
||||||
|
<el-radio label="0">富文本</el-radio> |
||||||
|
<el-radio label="1">markdown</el-radio> |
||||||
|
</el-radio-group> |
||||||
|
<div v-show="editorType == 0" |
||||||
|
class="quill" |
||||||
|
:class="[classes,readonly ? 'readonly' : '']"> |
||||||
|
<div :ref="toref" |
||||||
|
:style="styles" |
||||||
|
v-loading="loading"></div> |
||||||
|
|
||||||
<el-upload :headers="headers" :action="this.api.fileupload" :before-upload="beforeUpload" :on-success="editorUploadSuccess" style="display: none"> |
<el-upload :headers="headers" |
||||||
<el-button :id="'editorUpload' + index" ref="editorUpload" size="small" type="primary">点击上传</el-button> |
:action="this.api.fileupload" |
||||||
</el-upload> |
:before-upload="beforeUpload" |
||||||
|
:on-success="editorUploadSuccess" |
||||||
|
style="display: none"> |
||||||
|
<el-button :id="'editorUpload' + index" |
||||||
|
ref="editorUpload" |
||||||
|
size="small" |
||||||
|
type="primary">点击上传</el-button> |
||||||
|
</el-upload> |
||||||
</div> |
</div> |
||||||
|
<mavon-editor class="md" |
||||||
|
v-model="mdVal" |
||||||
|
v-show="editorType == 1" |
||||||
|
ref="md" |
||||||
|
:ishljs="true" |
||||||
|
:subfield="false" |
||||||
|
@change="mdChange" |
||||||
|
@imgAdd="imgAdd" /> |
||||||
|
</div> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import Quill from 'quill'; |
import Quill from 'quill'; |
||||||
import 'quill/dist/quill.core.css'; |
import 'quill/dist/quill.core.css'; |
||||||
import 'quill/dist/quill.snow.css'; |
import 'quill/dist/quill.snow.css'; |
||||||
import 'quill/dist/quill.bubble.css'; |
import 'quill/dist/quill.bubble.css'; |
||||||
import toolbarOptions from './options' |
import toolbarOptions from './options' |
||||||
|
import axios from 'axios' |
||||||
|
import { mavonEditor } from 'mavon-editor' |
||||||
|
import 'mavon-editor/dist/css/index.css' |
||||||
|
|
||||||
export default { |
export default { |
||||||
name: 'quill', |
name: 'quill', |
||||||
props: { |
components: { |
||||||
toref: { |
mavonEditor |
||||||
type: String, |
}, |
||||||
default: 'editor' |
props: { |
||||||
}, |
toref: { |
||||||
value: { |
type: String, |
||||||
type: String, |
default: 'editor' |
||||||
default: '' |
}, |
||||||
}, |
value: { |
||||||
readonly: { |
type: String, |
||||||
type: Boolean, |
default: '' |
||||||
default: false |
}, |
||||||
}, |
readonly: { |
||||||
toTop: { |
type: Boolean, |
||||||
type: Boolean, |
default: false |
||||||
default: true |
}, |
||||||
}, |
toTop: { |
||||||
border: { |
type: Boolean, |
||||||
type: Boolean, |
default: true |
||||||
default: false |
}, |
||||||
}, |
border: { |
||||||
height: { |
type: Boolean, |
||||||
type: Number |
default: false |
||||||
}, |
}, |
||||||
minHeight: { |
height: { |
||||||
type: Number |
type: Number |
||||||
}, |
}, |
||||||
// 当前富文本的索引。一个页面引入多个富文本的时候会无法获取到对应的实例,所以通过在父级存储实例的方式来保存 |
minHeight: { |
||||||
index: { |
type: Number |
||||||
type: Number, |
}, |
||||||
default: 0 |
// 当前富文本的索引。一个页面引入多个富文本的时候会无法获取到对应的实例,所以通过在父级存储实例的方式来保存 |
||||||
}, |
index: { |
||||||
}, |
type: Number, |
||||||
data () { |
default: 0 |
||||||
let that = this |
}, |
||||||
return { |
// 编辑器切换 |
||||||
headers: { |
type: { |
||||||
token: this.$store.state.token |
type: String, |
||||||
}, |
default: '0' |
||||||
Quill: null, |
}, |
||||||
currentValue: '', |
}, |
||||||
options: { |
data () { |
||||||
theme: 'snow', |
let that = this |
||||||
bounds: document.body, |
return { |
||||||
debug: 'warn', |
headers: { |
||||||
modules: { |
token: this.$store.state.token |
||||||
toolbar: { |
}, |
||||||
container: this.readonly ? [] : toolbarOptions, |
editorType: '0', |
||||||
handlers: { |
mdVal: '', |
||||||
"image": function(value) { |
Quill: null, |
||||||
if (value) { |
currentValue: '', |
||||||
// 调用iview图片上传 |
options: { |
||||||
document.querySelector("#editorUpload" + that.index).click(); |
theme: 'snow', |
||||||
} else { |
bounds: document.body, |
||||||
this.Quill.format("image", false); |
debug: 'warn', |
||||||
} |
modules: { |
||||||
} |
toolbar: { |
||||||
} |
container: this.readonly ? [] : toolbarOptions, |
||||||
} |
handlers: { |
||||||
}, |
"image": function (value) { |
||||||
placeholder: '', |
if (value) { |
||||||
readOnly: this.readonly |
// 调用iview图片上传 |
||||||
}, |
document.querySelector("#editorUpload" + that.index).click(); |
||||||
loading: false, |
} else { |
||||||
qu: null |
this.Quill.format("image", false); |
||||||
} |
|
||||||
}, |
|
||||||
computed: { |
|
||||||
classes () { |
|
||||||
return [ |
|
||||||
{ |
|
||||||
'quill-no-border': !this.border |
|
||||||
} |
|
||||||
]; |
|
||||||
}, |
|
||||||
styles () { |
|
||||||
let style = {}; |
|
||||||
if (this.minHeight) { |
|
||||||
style.minHeight = `${this.minHeight}px`; |
|
||||||
} |
|
||||||
if (this.height) { |
|
||||||
style.height = `${this.height}px`; |
|
||||||
} |
} |
||||||
return style; |
} |
||||||
} |
} |
||||||
|
} |
||||||
}, |
}, |
||||||
watch: { |
placeholder: '', |
||||||
value: { |
readOnly: this.readonly |
||||||
handler (val) { |
}, |
||||||
if (val !== this.currentValue) { |
loading: false, |
||||||
this.currentValue = val; |
qu: null |
||||||
if (this.Quill) { |
} |
||||||
this.Quill.pasteHTML(this.value); |
}, |
||||||
} |
computed: { |
||||||
} |
classes () { |
||||||
}, |
return [ |
||||||
immediate: true |
{ |
||||||
} |
'quill-no-border': !this.border |
||||||
}, |
} |
||||||
mounted () { |
]; |
||||||
// console.log(this.$refs.editorUpload.$el) |
}, |
||||||
this.init(); |
styles () { |
||||||
}, |
let style = {}; |
||||||
beforeDestroy () { |
if (this.minHeight) { |
||||||
// 在组件销毁后销毁实例 |
style.minHeight = `${this.minHeight}px`; |
||||||
this.Quill = null; |
} |
||||||
}, |
if (this.height) { |
||||||
methods: { |
style.height = `${this.height}px`; |
||||||
init () { |
} |
||||||
let toeval = "this.$refs."+this.toref |
return style; |
||||||
const editor = eval(toeval) |
} |
||||||
// 初始化编辑器 |
}, |
||||||
this.Quill = new Quill(editor, this.options); |
watch: { |
||||||
const ins = this.Quill |
type: { |
||||||
// 默认值 |
handler (val) { |
||||||
this.Quill.pasteHTML(this.currentValue); |
this.editorType = val |
||||||
if(this.toTop){ |
}, |
||||||
this.$nextTick(() => { |
immediate: true |
||||||
window.scrollTo(0,0) |
}, |
||||||
}) |
value: { |
||||||
} |
handler (val) { |
||||||
// 绑定事件 |
if (this.type == 0) { |
||||||
this.Quill.on('text-change', (delta, oldDelta, source) => { |
if (val !== this.currentValue) { |
||||||
const html = this.$refs[this.toref].children[0].innerHTML; |
this.currentValue = val; |
||||||
const text = this.Quill.getText(); |
if (this.Quill) { |
||||||
const quill = this.Quill; |
this.Quill.pasteHTML(this.value); |
||||||
// 更新内部的值 |
|
||||||
this.currentValue = html; |
|
||||||
// 发出事件 v-model |
|
||||||
this.$emit('input', html); |
|
||||||
// 发出事件 |
|
||||||
this.$emit('on-change', { html, text, quill }); |
|
||||||
}); |
|
||||||
// 将一些 quill 自带的事件传递出去 |
|
||||||
this.Quill.on('text-change', (delta, oldDelta, source) => { |
|
||||||
this.$emit('on-text-change', delta, oldDelta, source); |
|
||||||
}); |
|
||||||
this.Quill.on('selection-change', (range, oldRange, source) => { |
|
||||||
this.$emit('on-selection-change', range, oldRange, source); |
|
||||||
}); |
|
||||||
this.Quill.on('editor-change', (eventName, ...args) => { |
|
||||||
this.$emit('on-editor-change', eventName, ...args); |
|
||||||
}); |
|
||||||
// 监听粘贴事件 |
|
||||||
ins.root.addEventListener('paste', evt => { |
|
||||||
if (evt.clipboardData && evt.clipboardData.files && evt.clipboardData.files.length) { |
|
||||||
evt.preventDefault(); |
|
||||||
// 检测是否粘贴的是图片 |
|
||||||
[].forEach.call(evt.clipboardData.files, file => { |
|
||||||
if (!file.type.match(/^image\/(gif|jpe?g|a?png|bmp)/i)) { |
|
||||||
return |
|
||||||
} |
|
||||||
const param = new FormData() |
|
||||||
param.append('file', file) |
|
||||||
// 把图片上传到服务器,不然会直接把base64存到数据库 |
|
||||||
this.$post(this.api.fileupload, param, { |
|
||||||
headers: { "Content-Type": "multipart/form-data" } |
|
||||||
}).then(res => { |
|
||||||
var range = ins.getSelection() |
|
||||||
console.log(333, range) |
|
||||||
if (range) { |
|
||||||
// 在当前光标位置插入图片 |
|
||||||
ins.insertEmbed(range.index, 'image', res.data.filesResult.fileUrl) |
|
||||||
// 将光标移动到图片后面 |
|
||||||
ins.setSelection(range.index + 1) |
|
||||||
} |
|
||||||
}).catch(res => {}) |
|
||||||
}); |
|
||||||
} |
|
||||||
}, false) |
|
||||||
}, |
|
||||||
beforeUpload(file){ |
|
||||||
this.loading = true |
|
||||||
}, |
|
||||||
editorUploadSuccess(res) { |
|
||||||
// 获取富文本组件实例 |
|
||||||
let quill = this.Quill; |
|
||||||
// 如果上传成功 |
|
||||||
if (res.data.filesResult.fileUrl) { |
|
||||||
// 获取光标所在位置 |
|
||||||
let length = quill.getSelection().index; |
|
||||||
// 插入图片,res为服务器返回的图片链接地址 |
|
||||||
quill.insertEmbed(length, "image", res.data.filesResult.fileUrl); |
|
||||||
// 调整光标到最后 |
|
||||||
quill.setSelection(length + 1); |
|
||||||
} else { |
|
||||||
util.successMsg("图片插入失败"); |
|
||||||
} |
|
||||||
this.loading = false; |
|
||||||
} |
} |
||||||
|
} |
||||||
} |
} |
||||||
|
if (!this.mdVal) this.mdVal = val |
||||||
|
}, |
||||||
|
immediate: true |
||||||
} |
} |
||||||
|
}, |
||||||
|
mounted () { |
||||||
|
this.init(); |
||||||
|
}, |
||||||
|
beforeDestroy () { |
||||||
|
// 在组件销毁后销毁实例 |
||||||
|
this.Quill = null; |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
// 富文本切换 |
||||||
|
typeChange (val) { |
||||||
|
this.$emit('update:type', val) |
||||||
|
if (!this.mdVal) this.mdVal = this.value |
||||||
|
}, |
||||||
|
init () { |
||||||
|
let toeval = "this.$refs." + this.toref |
||||||
|
const editor = eval(toeval) |
||||||
|
// 初始化编辑器 |
||||||
|
this.Quill = new Quill(editor, this.options); |
||||||
|
const ins = this.Quill |
||||||
|
// 默认值 |
||||||
|
this.Quill.pasteHTML(this.currentValue); |
||||||
|
if (this.toTop) { |
||||||
|
this.$nextTick(() => { |
||||||
|
window.scrollTo(0, 0) |
||||||
|
}) |
||||||
|
} |
||||||
|
// 绑定事件 |
||||||
|
this.Quill.on('text-change', (delta, oldDelta, source) => { |
||||||
|
const html = this.$refs[this.toref].children[0].innerHTML; |
||||||
|
const text = this.Quill.getText(); |
||||||
|
const quill = this.Quill; |
||||||
|
// 更新内部的值 |
||||||
|
this.currentValue = html; |
||||||
|
// 发出事件 v-model |
||||||
|
this.$emit('input', html); |
||||||
|
// 发出事件 |
||||||
|
this.$emit('on-change', { html, text, quill }); |
||||||
|
}); |
||||||
|
// 将一些 quill 自带的事件传递出去 |
||||||
|
this.Quill.on('text-change', (delta, oldDelta, source) => { |
||||||
|
this.$emit('on-text-change', delta, oldDelta, source); |
||||||
|
}); |
||||||
|
this.Quill.on('selection-change', (range, oldRange, source) => { |
||||||
|
this.$emit('on-selection-change', range, oldRange, source); |
||||||
|
}); |
||||||
|
this.Quill.on('editor-change', (eventName, ...args) => { |
||||||
|
this.$emit('on-editor-change', eventName, ...args); |
||||||
|
}); |
||||||
|
// 监听粘贴事件 |
||||||
|
ins.root.addEventListener('paste', evt => { |
||||||
|
if (evt.clipboardData && evt.clipboardData.files && evt.clipboardData.files.length) { |
||||||
|
evt.preventDefault(); |
||||||
|
// 检测是否粘贴的是图片 |
||||||
|
[].forEach.call(evt.clipboardData.files, file => { |
||||||
|
if (!file.type.match(/^image\/(gif|jpe?g|a?png|bmp)/i)) { |
||||||
|
return |
||||||
|
} |
||||||
|
const param = new FormData() |
||||||
|
param.append('file', file) |
||||||
|
// 把图片上传到服务器,不然会直接把base64存到数据库 |
||||||
|
this.$post(this.api.fileupload, param, { |
||||||
|
headers: { "Content-Type": "multipart/form-data" } |
||||||
|
}).then(res => { |
||||||
|
var range = ins.getSelection() |
||||||
|
console.log(333, range) |
||||||
|
if (range) { |
||||||
|
// 在当前光标位置插入图片 |
||||||
|
ins.insertEmbed(range.index, 'image', res.data.filesResult.fileUrl) |
||||||
|
// 将光标移动到图片后面 |
||||||
|
ins.setSelection(range.index + 1) |
||||||
|
} |
||||||
|
}).catch(res => { }) |
||||||
|
}); |
||||||
|
} |
||||||
|
}, false) |
||||||
|
}, |
||||||
|
beforeUpload (file) { |
||||||
|
this.loading = true |
||||||
|
}, |
||||||
|
// quill图片上传 |
||||||
|
editorUploadSuccess (res) { |
||||||
|
// 获取富文本组件实例 |
||||||
|
let quill = this.Quill; |
||||||
|
// 如果上传成功 |
||||||
|
if (res.data.filesResult.fileUrl) { |
||||||
|
// 获取光标所在位置 |
||||||
|
let length = quill.getSelection().index; |
||||||
|
// 插入图片,res为服务器返回的图片链接地址 |
||||||
|
quill.insertEmbed(length, "image", res.data.filesResult.fileUrl); |
||||||
|
// 调整光标到最后 |
||||||
|
quill.setSelection(length + 1); |
||||||
|
} else { |
||||||
|
util.successMsg("图片插入失败"); |
||||||
|
} |
||||||
|
this.loading = false; |
||||||
|
}, |
||||||
|
|
||||||
|
// 类型切换回调 |
||||||
|
mdChange (val) { |
||||||
|
this.$emit('input', val) |
||||||
|
}, |
||||||
|
// markdown图片上传 |
||||||
|
imgAdd (pos, $file) { |
||||||
|
let $vm = this.$refs.md |
||||||
|
// 第一步.将图片上传到服务器. |
||||||
|
const formData = new FormData(); |
||||||
|
formData.append('file', $file); |
||||||
|
axios({ |
||||||
|
url: this.api.fileupload, |
||||||
|
method: 'post', |
||||||
|
data: formData, |
||||||
|
headers: { |
||||||
|
token: this.$store.state.token, |
||||||
|
'Content-Type': 'multipart/form-data' |
||||||
|
}, |
||||||
|
}).then((res) => { |
||||||
|
$vm.$img2Url(pos, res.data.data.filesResult.fileUrl); |
||||||
|
}) |
||||||
|
}, |
||||||
|
} |
||||||
|
} |
||||||
</script> |
</script> |
||||||
<style lang="scss" scoped> |
<style lang="scss" scoped> |
||||||
.quill-no-border{ |
.type-radio { |
||||||
.ql-toolbar.ql-snow{ |
margin-bottom: 20px; |
||||||
border: none; |
} |
||||||
border-bottom: 1px solid #e8eaec; |
.quill-no-border { |
||||||
} |
.ql-toolbar.ql-snow { |
||||||
.ql-container.ql-snow{ |
border: none; |
||||||
border: none; |
border-bottom: 1px solid #e8eaec; |
||||||
} |
} |
||||||
} |
.ql-container.ql-snow { |
||||||
|
border: none; |
||||||
|
} |
||||||
|
} |
||||||
|
.md { |
||||||
|
max-height: 300px; |
||||||
|
} |
||||||
|
/deep/.v-note-wrapper .v-note-panel { |
||||||
|
min-height: 200px; |
||||||
|
} |
||||||
</style> |
</style> |
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue