| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <template>
- <div :class="{fullscreen:fullscreen}" class="tinymce-container" :style="{width:containerWidth}">
- <textarea :id="tinymceId" class="tinymce-textarea"/>
- </div>
- </template>
- <script>
- import load from './dynamicLoadScript'
- const tinymceCDN = 'https://stacdn.proginn.com/tinymce/tinymce.js'
- export default {
- name: 'Tinymce',
- 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: '100%'
- }
- },
- data() {
- return {
- hasChange: false,
- hasInit: false,
- tinymceId: this.id,
- fullscreen: false,
- languageTypeList: {
- 'zh': 'zh_CN',
- }
- }
- },
- computed: {
- containerWidth() {
- const width = this.width
- if (/^[\d]+(\.[\d]+)?$/.test(width)) { // matches `100`, `'100'`
- 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() {
- // dynamic load tinymce from cdn
- load(tinymceCDN, (err) => {
- if (err) {
- this.$message.error(err.message)
- return
- }
- this.initTinymce()
- })
- },
- initTinymce() {
- const _this = this
- window.tinymce.init({
- selector: `#${this.tinymceId}`,
- content_style: "img {width:100%}",
- language: this.languageTypeList['zh'],
- height: this.height,
- body_class: 'panel-body ',
- object_resizing: false,
- plugins:"paste,autoresize",
- autoresize_on_init: true,
- paste_data_images: true,
- images_upload_url: '/uapi/pub/upload_tinymce',
- 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
- })
- },
- convert_urls: false
- })
- },
- set_content(value){
- window.tinymce.get(this.tinymceId).setContent(value);
- window.tinymce.get(this.tinymceId).focus();
- },
- set_focus(){
- window.tinymce.get(this.tinymceId).focus();
- },
- 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) {
- arr.forEach(v => window.tinymce.get(this.tinymceId).insertContent(`<img style="max-width: 100%;" 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>
|