tinymce在Vue中的使用

之前写vue项目时用过vue-quill-editor,但是这个编辑器太简单了,无法添加自己想要的样式,所以就重新封装了一个tinymce,可以粘贴源码,非常强大。步骤如下:

首先在index.html中引入 <script src="https://cdn.bootcss.com/tinymce/4.7.13/tinymce.min.js"></script>,这样就可以不用安装依赖了。

<template>
  <div>
    <textarea :id='id' v-model='value'></textarea>
  </div>
</template>

<script>
  export default {
    props: {
      value: String,
      path: String, // 上传图片的路径
      height: String // 编辑器的高度,使用组件时自己传,不穿下面设置了默认300
    },
    watch: {
      value(val) {
        if (window.tinymce.activeEditor) {
          if (this.status === 0 || window.tinymce.activeEditor.getContent() !== val) {
            if (val == null) {
              val = ''
            }
            window.tinymce.activeEditor.setContent(val)
          }
          this.status = 2
        }
      }
    },
    data() {
      return {
        status: 0,
        id: '',
        setting: { // 配置富文本编辑器高
          height: this.height || 300
        },
        Url: ('/api/upload/file?path=' + this.path) || '/api/upload/file?path=img/tinymce',
        maxSize: 11100000, // 文件大小
        accept: 'image/jpeg, image/png, image/jpg', // 文件格式
        withCredentials: true
      }
    },
    mounted() {
      this.init()
    },
    methods: {
      init() {
        const radomId = window.radomId ? window.radomId + 1 : 1
        window.radomId = radomId
        const _this = this
        _this.status = 0
        _this.id = 'editor-' + radomId
        const setting =
          {
            selector: '#' + _this.id,
            upload_image_url: '/upload/cloud', // 配置的上传图片的路由
            language_url: '/static/langs/zh_CN.js',
            language: 'zh_CN',
            init_instance_callback: function(editor) {
              editor.on('input change undo redo', () => {
                _this.$emit('input', editor.getContent())
              })
            },
// 编辑器的一些简单样式设置
            content_style: `
    *                         { padding:0; margin:0; }
    html, body                { height:100%; }
    img                       { max-width:100%; display:block;height:auto; }
    a                         { text-decoration: none; }
    iframe                    { width: 100%; }
    p                         { line-height:1.6; margin: 0px; }
    table                     { word-wrap:break-word; word-break:break-all; max-width:100%; border:none; border-color:#999; }
    .mce-object-iframe        { width:100%; box-sizing:border-box; margin:0; padding:0; }
    ul,ol                     { list-style-position:inside; }
  `,
            insert_button_items: 'image link | inserttable',
            paste_retain_style_properties: 'all',
            paste_word_valid_elements: '*[*]', // word需要它
            paste_data_images: true, // 粘贴的同时能把内容里的图片自动上传,非常强力的功能
            paste_convert_word_fake_lists: false, // 插入word文档需要该属性
            paste_webkit_styles: 'all',
            paste_merge_formats: true,
            nonbreaking_force_tab: false,
            paste_auto_cleanup_on_paste: false,
            setup(editor) {
                // 添加自定义按钮,以及绑定事件
              editor.addButton('mybutton', {
                text: '高级编辑',
                icon: false,
                onclick() {
                  window.open('http://www.135editor.com/')
                }
              })
            },
            'plugins': [
              'advlist link image',
              'code',
              'insertdatetime media table textcolor contextmenu paste imagetools wordcount'
            ],
            'toolbar_items_size': 'small',
            'block_formats': 'Paragraph=p;Heading 1=h1;Heading 2=h2;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6;',
            'toolbar1': 'table | insertfile undo redo | formatselect | uploadimg image media | link unlink | fontsizeselect | forecolor backcolor', // 工具栏1
            'toolbar2': ' fontselect | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | outdent indent | removeformat | mybutton ', // 工具栏2, mybutton是自己加的自定义按钮
            fontsize_formats: '10px 11px 12px 14px 16px 18px 20px 24px',
            font_formats: `
              微软雅黑=微软雅黑;
              宋体=宋体;
              黑体=黑体;
              仿宋=仿宋;
              楷体=楷体;
              隶书=隶书;
              幼圆=幼圆;
              Andale Mono=andale mono,times;
              Arial=arial, helvetica,
              sans-serif;
              Arial Black=arial black, avant garde;
              Book Antiqua=book antiqua,palatino;
              Comic Sans MS=comic sans ms,sans-serif;
              Courier New=courier new,courier;
              Georgia=georgia,palatino;
              Helvetica=helvetica;
              Impact=impact,chicago;
              Symbol=symbol;
              Tahoma=tahoma,arial,helvetica,sans-serif;
              Terminal=terminal,monaco;
              Times New Roman=times new roman,times;
              Trebuchet MS=trebuchet ms,geneva;
              Verdana=verdana,geneva;
              Webdings=webdings;
              Wingdings=wingdings,zapf dingbats`,
            // 图片上传
            images_upload_handler: function (blobInfo, success, failure) {
              let xhr = new XMLHttpRequest()
              if (blobInfo.blob().size > _this.maxSize) {
                failure('图片大小不能超过10M') // 这个大小在上面maxSize可设置
              }
              if (_this.accept.indexOf(blobInfo.blob().type) >= 0) {
                xhr.withCredentials = _this.withCredentials
                xhr.open('POST', _this.Url)
                xhr.onload = function() {
                  if (xhr.status !== 200) {
                    failure('HTTP Error: ' + xhr.status)
                    return
                  }
                  let json = JSON.parse(xhr.responseText)
                  if (!json || typeof json.data.url !== 'string') {
                    failure('Invalid JSON: ' + xhr.responseText)
                    return
                  }
                  success(json.data.url)
                }
                let formData = new FormData()
                formData.append('file', blobInfo.blob(), blobInfo.filename())
                xhr.send(formData)
              }
            }
          }
        Object.assign(setting, _this.setting)
        this.$nextTick(() => {
          window.tinymce.init(setting)
        })
      }
    },
    beforeDestroy: function() {
      window.tinymce.get(this.id).destroy()
    }
  }
</script>
<style scoped lang="less" rel="stylesheet/less">
  .tinymce {
    padding: 0;
  }
</style>

以上设置后,就可以在其他组件中引入使用了。

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值