123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <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="#1890ff" class="editor-upload-btn" @successCBK="imageSuccessCBK" />
- </div>
- </div>
- </template>
- <script>
- import editorImage from './components/EditorImage'
- import plugins from './plugins'
- import toolbar from './toolbar'
- import load from './dynamicLoadScript'
- const tinymceCDN = 'https://cdn.jsdelivr.net/npm/tinymce-all-in-one@4.9.3/tinymce.min.js'
- export default {
- name: 'Tinymce',
- components: { editorImage },
- props: {
- id: {
- type: String,
- default: function() {
- return 'vue-tinymce-' + +new Date() + ((Math.random() * 1000).toFixed(0) + '')
- }
- },
- value: {
- type: String,
- default: ''
- },
- toolbar: {
- type: Array,
- required: false,
- default() {
- 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'
- }
- },
- data() {
- return {
- hasChange: false,
- hasInit: false,
- tinymceId: this.id,
- fullscreen: false,
- languageTypeList: {
- 'en': 'en',
- 'zh': 'zh_CN',
- 'es': 'es_MX',
- 'ja': 'ja'
- }
- }
- },
- computed: {
- containerWidth() {
- const width = this.width
- if (/^[\d]+(\.[\d]+)?$/.test(width)) {
- return `${width}px`
- }
- return width
- }
- },
- watch: {
- value(val) {
- if (!this.hasChange && this.hasInit) {
- this.$nextTick(() =>
- window.tinymce.get(this.tinymceId).setContent(val || ''))
- }
- }
- },
- mounted() {
- this.init()
- },
- activated() {
- if (window.tinymce) {
- this.initTinymce()
- }
- },
- deactivated() {
- this.destroyTinymce()
- },
- destroyed() {
- this.destroyTinymce()
- },
- methods: {
- init() {
-
- load(tinymceCDN, (err) => {
- if (err) {
- this.$message.error(err.message)
- return
- }
- this.initTinymce()
- })
- },
- initTinymce() {
- const _this = this
- window.tinymce.init({
- selector: `#${this.tinymceId}`,
- language: this.languageTypeList['en'],
- 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,
- 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())
- })
- },
- setup(editor) {
- editor.on('FullscreenStateChanged', (e) => {
- _this.fullscreen = e.state
- })
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- })
- },
- destroyTinymce() {
- const tinymce = window.tinymce.get(this.tinymceId)
- if (this.fullscreen) {
- tinymce.execCommand('mceFullScreen')
- }
- if (tinymce) {
- tinymce.destroy()
- }
- },
- setContent(value) {
- window.tinymce.get(this.tinymceId).setContent(value)
- },
- getContent() {
- window.tinymce.get(this.tinymceId).getContent()
- },
- imageSuccessCBK(arr) {
- const _this = this
- arr.forEach(v => {
- window.tinymce.get(_this.tinymceId).insertContent(`<img class="wscnph" src="${v.url}" >`)
- })
- }
- }
- }
- </script>
- <style scoped>
- .tinymce-container {
- position: relative;
- line-height: normal;
- }
- .tinymce-container>>>.mce-fullscreen {
- z-index: 10000;
- }
- .tinymce-textarea {
- visibility: hidden;
- z-index: -1;
- }
- .editor-custom-btn-container {
- position: absolute;
- right: 4px;
- top: 4px;
-
- }
- .fullscreen .editor-custom-btn-container {
- z-index: 10000;
- position: fixed;
- }
- .editor-upload-btn {
- display: inline-block;
- }
- </style>
|