e5b57447
杨鑫
'分包问卷'
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<template>
<div :class="{fullscreen:fullscreen}" class="tinymce-container" :style="{width:containerWidth}">
<textarea :id="tinymceId" class="tinymce-textarea" />
<div class="editor-custom-btn-container">
<editorImage color="#3F9B6A" class="editor-upload-btn" @successCBK="imageSuccessCBK" />
</div>
</div>
</template>
<script>
/**
* docs:
* https://panjiachen.github.io/vue-element-admin-site/feature/component/rich-editor.html#tinymce
*/
import editorImage from './components/EditorImage'
import plugins from './plugins'
import toolbar from './toolbar'
import load from './dynamicLoadScript'
// why use this cdn, detail see https://github.com/PanJiaChen/tinymce-all-in-one
// const tinymceCDN = 'https://cdn.jsdelivr.net/npm/tinymce-all-in-one@4.9.3/tinymce.min.js'
const tinymceCDN = './js/tinymce-all-in-one/tinymce.min.js'
export default {
name: 'Tinymce',
components: { editorImage },
props: {
id: {
type: String,
|
d64cd58f
wesley88
上传验收小程序
|
30
|
default: function () {
|
e5b57447
杨鑫
'分包问卷'
|
31
32
33
34
35
36
37
38
39
40
|
return 'vue-tinymce-' + +new Date() + ((Math.random() * 1000).toFixed(0) + '')
}
},
value: {
type: String,
default: ''
},
toolbar: {
type: Array,
required: false,
|
d64cd58f
wesley88
上传验收小程序
|
41
|
default () {
|
e5b57447
杨鑫
'分包问卷'
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
return []
}
},
menubar: {
type: String,
default: 'file edit insert view format table'
},
height: {
type: [Number, String],
required: false,
default: 360
},
width: {
type: [Number, String],
required: false,
default: 'auto'
}
},
|
d64cd58f
wesley88
上传验收小程序
|
60
|
data () {
|
e5b57447
杨鑫
'分包问卷'
|
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
return {
hasChange: false,
hasInit: false,
tinymceId: this.id,
fullscreen: false,
languageTypeList: {
'en': 'en',
'zh': 'zh_CN',
'es': 'es_MX',
'ja': 'ja'
}
}
},
computed: {
|
d64cd58f
wesley88
上传验收小程序
|
75
|
containerWidth () {
|
e5b57447
杨鑫
'分包问卷'
|
76
77
78
79
80
81
82
83
|
const width = this.width
if (/^[\d]+(\.[\d]+)?$/.test(width)) { // matches `100`, `'100'`
return `${width}px`
}
return width
}
},
watch: {
|
d64cd58f
wesley88
上传验收小程序
|
84
|
value (val) {
|
e5b57447
杨鑫
'分包问卷'
|
85
86
87
88
89
90
|
if (!this.hasChange && this.hasInit) {
this.$nextTick(() =>
window.tinymce.get(this.tinymceId).setContent(val || ''))
}
}
},
|
d64cd58f
wesley88
上传验收小程序
|
91
|
mounted () {
|
e5b57447
杨鑫
'分包问卷'
|
92
93
|
this.init()
},
|
d64cd58f
wesley88
上传验收小程序
|
94
|
activated () {
|
e5b57447
杨鑫
'分包问卷'
|
95
96
97
98
|
if (window.tinymce) {
this.initTinymce()
}
},
|
d64cd58f
wesley88
上传验收小程序
|
99
|
deactivated () {
|
e5b57447
杨鑫
'分包问卷'
|
100
101
|
this.destroyTinymce()
},
|
d64cd58f
wesley88
上传验收小程序
|
102
|
destroyed () {
|
e5b57447
杨鑫
'分包问卷'
|
103
104
105
|
this.destroyTinymce()
},
methods: {
|
d64cd58f
wesley88
上传验收小程序
|
106
|
init () {
|
e5b57447
杨鑫
'分包问卷'
|
107
108
109
110
111
112
113
114
115
|
// dynamic load tinymce from cdn
load(tinymceCDN, (err) => {
if (err) {
this.$message.error(err.message)
return
}
this.initTinymce()
})
},
|
d64cd58f
wesley88
上传验收小程序
|
116
|
initTinymce () {
|
e5b57447
杨鑫
'分包问卷'
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
const _this = this
window.tinymce.init({
selector: `#${this.tinymceId}`,
language: this.languageTypeList['zh'],
height: this.height,
body_class: 'panel-body ',
object_resizing: false,
toolbar: this.toolbar.length > 0 ? this.toolbar : toolbar,
menubar: this.menubar,
plugins: plugins,
end_container_on_empty_block: true,
powerpaste_word_import: 'clean',
code_dialog_height: 450,
code_dialog_width: 1000,
advlist_bullet_styles: 'square',
advlist_number_styles: 'default',
imagetools_cors_hosts: ['www.tinymce.com', 'codepen.io'],
default_link_target: '_blank',
link_title: false,
nonbreaking_force_tab: true, // inserting nonbreaking space need Nonbreaking Space Plugin
init_instance_callback: editor => {
if (_this.value) {
editor.setContent(_this.value)
}
_this.hasInit = true
editor.on('NodeChange Change KeyUp SetContent', () => {
this.hasChange = true
this.$emit('input', editor.getContent())
})
},
|
d64cd58f
wesley88
上传验收小程序
|
147
|
setup (editor) {
|
e5b57447
杨鑫
'分包问卷'
|
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
editor.on('FullscreenStateChanged', (e) => {
_this.fullscreen = e.state
})
},
// it will try to keep these URLs intact
// https://www.tiny.cloud/docs-3x/reference/configuration/Configuration3x@convert_urls/
// https://stackoverflow.com/questions/5196205/disable-tinymce-absolute-to-relative-url-conversions
convert_urls: false
// 整合七牛上传
// images_dataimg_filter(img) {
// setTimeout(() => {
// const $image = $(img);
// $image.removeAttr('width');
// $image.removeAttr('height');
// if ($image[0].height && $image[0].width) {
// $image.attr('data-wscntype', 'image');
// $image.attr('data-wscnh', $image[0].height);
// $image.attr('data-wscnw', $image[0].width);
// $image.addClass('wscnph');
// }
// }, 0);
// return img
// },
// images_upload_handler(blobInfo, success, failure, progress) {
// progress(0);
// const token = _this.$store.getters.token;
// getToken(token).then(response => {
// const url = response.data.qiniu_url;
// const formData = new FormData();
// formData.append('token', response.data.qiniu_token);
// formData.append('key', response.data.qiniu_key);
// formData.append('file', blobInfo.blob(), url);
// upload(formData).then(() => {
// success(url);
// progress(100);
// })
// }).catch(err => {
// failure('出现未知问题,刷新页面,或者联系程序员')
// console.log(err);
// });
// },
})
},
|
d64cd58f
wesley88
上传验收小程序
|
191
|
destroyTinymce () {
|
e5b57447
杨鑫
'分包问卷'
|
192
193
194
195
196
197
198
199
200
|
const tinymce = window.tinymce.get(this.tinymceId)
if (this.fullscreen) {
tinymce.execCommand('mceFullScreen')
}
if (tinymce) {
tinymce.destroy()
}
},
|
d64cd58f
wesley88
上传验收小程序
|
201
|
setContent (value) {
|
e5b57447
杨鑫
'分包问卷'
|
202
203
|
window.tinymce.get(this.tinymceId).setContent(value)
},
|
d64cd58f
wesley88
上传验收小程序
|
204
|
getContent () {
|
e5b57447
杨鑫
'分包问卷'
|
205
206
|
window.tinymce.get(this.tinymceId).getContent()
},
|
d64cd58f
wesley88
上传验收小程序
|
207
|
imageSuccessCBK (arr) {
|
e5b57447
杨鑫
'分包问卷'
|
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
arr.forEach(v => window.tinymce.get(this.tinymceId).insertContent(`<img class="wscnph" src="${v.url}" >`))
}
}
}
</script>
<style lang="scss" scoped>
.tinymce-container {
position: relative;
line-height: normal;
}
.tinymce-container {
::v-deep {
.mce-fullscreen {
z-index: 10000;
}
}
}
.tinymce-textarea {
visibility: hidden;
z-index: -1;
}
.editor-custom-btn-container {
position: absolute;
right: 4px;
top: 4px;
/*z-index: 2005;*/
}
.fullscreen .editor-custom-btn-container {
z-index: 10000;
position: fixed;
}
.editor-upload-btn {
display: inline-block;
}
</style>
|