vue使用froala-editor富文本编辑器

在项目需要用到富文本编辑器时,自己也筛选过不少插件,最终选择了froala-editor,UI简单功能强大,官网也列出了很多国外大佬在使用,自己实战后确实感觉比其他的富文本编辑器好。

官网:https://froala.com/

1、安装

npm install font-awesome --save //安装font-awesome
npm i vue-froala-wysiwyg -S;//样式失效重新安装

2、引入

main.js 或者写在其他js文件再从main.js引入

import Vue from "vue";

import "froala-editor/css/froala_editor.pkgd.min.css";
import "froala-editor/css/froala_style.min.css";
import "froala-editor/js/froala_editor.pkgd.min.js";
import "froala-editor/js/languages/zh_cn.js";
import "froala-editor/js/plugins.pkgd.min.js";
import VueFroala from "vue-froala-wysiwyg";

Vue.use(VueFroala); //样式失效重新安装 npm i vue-froala-wysiwyg -S;

3、使用

1.新建froalaEditor.vue文件

  
<template>
  <div class="editor-wrap">
    <froala
      id="froala-editor"
      :tag="'textarea'"
      :config="config"
      v-model="body.content"
    />
  </div>
</template>
<script>
const tool = [
  "undo",
  "redo",
  "clearFormatting",
  "bold",
  "italic",
  "underline",
  "strikeThrough",
  "fontFamily",
  "fontSize",
  "textColor",
  "color",
  "backgroundColor",
  "inlineStyle",
  "paragraphFormat",
  "align",
  "formatOL",
  "formatUL",
  "outdent",
  "indent",
  "quote",
  "insertLink",
  "insertImage",
  "insertVideo",
  "embedly",
  "insertFile",
  "insertTable",
  "emoticons",
  "specialCharacters",
  "insertHR",
  "selectAll",
  "print",
  "spellChecker",
  "html",
  "help",
  "fullscreen"
];

export default {
  props: {
    // 显示的工具列表
    placeholder: {
      type: String
      //   required: true
    },
    height: {
      type: Number
    },
    value: {
      type: String,
      default: null
    },
    index: {
      type: Number,
      default: 1
    }
  },
  name: "froala-editor",
  data() {
    const that = this;
    return {
      editor: null,
      uploadImage: {
        loading: false,
        previewVisible: false,
        previewImage: "",
        imgFile: {},
        isSize: false,
        isType: false
      },
      fileList: [],
      body: {
        content: null,
        textLen: 0,
        leftoverLen: 10000,
        sumLen: 10000,
        error_tip: "",
        error_show: false
      },
      config: {
        toolbarButtons: tool,
        // theme: "dark",//主题
        placeholderText: this.placeholder || "编辑课程介绍",
        language: "zh_cn", //国际化
        imageUploadURL: "", //上传url
        imageUploadParams: { token: "", i: "", ak: "", f: 9 },
        fileUploadURL: "",
        fileUploadParams: { token: "", i: "", ak: "", f: 9 },
        videoUploadURL: "",
        videoUploadParams: { token: "", i: "", ak: "", f: 9 },
        quickInsertButtons: ["image", "table", "ul", "ol", "hr"], //快速插入项
        // toolbarVisibleWithoutSelection: true,//是否开启 不选中模式
        // disableRightClick: true,//是否屏蔽右击
        colorsHEXInput: true, //关闭16进制色值
        toolbarSticky: false, //操作栏是否自动吸顶,
        // Colors list.
        colorsBackground: [
          "#15E67F",
          "#E3DE8C",
          "#D8A076",
          "#D83762",
          "#76B6D8",
          "REMOVE",
          "#1C7A90",
          "#249CB8",
          "#4ABED9",
          "#FBD75B",
          "#FBE571",
          "#FFFFFF"
        ],
        colorsStep: 6,
        colorsText: [
          "#15E67F",
          "#E3DE8C",
          "#D8A076",
          "#D83762",
          "#76B6D8",
          "REMOVE",
          "#1C7A90",
          "#249CB8",
          "#4ABED9",
          "#FBD75B",
          "#FBE571",
          "#FFFFFF"
        ],
        zIndex: 2501,
        height: this.height || "250",
        // autofocus: true,
        events: {
          initialized: function() {
            that.editor = this;
            that.body.content = that.value;
            that.EditorChange();
          },
          blur: () => {
            console.log("blur....");
            that.$emit("blur");
          },
          contentChanged: () => {
            that.EditorChange();
          },
          "image.beforeUpload": function(images) {
            //自定义上传图片
            that.beforeUpload(images[0]);
            return false;
          },
          "file.beforeUpload": function() {
            // Image was uploaded to the server.
            return true;
          },
          "video.beforeUpload": function() {
            // Image was uploaded to the server.
            return true;
          }
        }
      }
    };
  },
  watch: {
    value: {
      handler: function(news, old) {
        if (news) {
          this.body.content = this.value;
        }
      },
      deep: true //对象内部的属性监听,也叫深度监听
    },
    "body.content": function(newVal, old) {
      if (old !== newVal) {
        let val = this.getSimpleText(this.editor.html.get(true));
      }
    },
    label: function(newVal, old) {
      if (old !== newVal) {
        this.editor.html.set(newVal);
      }
    }
  },
  mounted() {
    setTimeout(() => {
      this.setIndex(this.index);
    }, 200);
  },
  methods: {
    //更改富文本层级
    setIndex(val) {
      this.$nextTick(() => {
        let dv = document.getElementsByClassName("fr-box");
        for (let i in dv) {
          if (!dv[i].style) {
            return;
          }
          dv[i].style.cssText = "z-index:" + val;
        }
      });
    },
    //富文本中提取纯文本
    getSimpleText: html => {
      var re1 = new RegExp('<p data-f-id="pbf".+?</p>', "g"); //匹配html标签的正则表达式,"g"是搜索匹配多个符合的内容
      var msg = html.replace(re1, ""); //执行替换成空字符
      return msg;
    },
    EditorChange() {
      if (this.editor == null) return;
      console.log(this.editor, "this.editor");
      const editorCount = this.editor.charCounter.count();
      this.body.textLen = editorCount;
      this.body.leftoverLen = this.body.sumLen - editorCount;
      this.$emit("change", this.body);
    },
    beforeUpload(file) {
        const that = this;
        this.uploadImage.loading = true;
        const formData = new FormData();
        formData.append("formFile", file);
        this.$store
          .dispatch("UploadImg", formData)
          .then(res => {
            this.uploadImage.loading = false;
            if (res.code === 200) {
              that.uploadImage.imgFile = JSON.parse(res.data);
              const url = that.uploadImage.imgFile.data;
              //插入图片
              that.editor.html.insert(
                "<img src=" + that.uploadImage.imgFile.data + ">", //HTML
                false //在插入之前是否应清除HTML
              ); //插入图片
            } else {
              this.fileList = [];
              this.$message.error(res.msg);
            }
          })
          .catch(err => {
            this.uploadImage.loading = false;
            this.$message.error("上传失败");
          });
      }

      return false;
    }
  }
};
</script>
<style>

.editor-wrap > div {
  width: 100%;
}

.fr-wrapper > div[style*="z-index:9999;"],
.fr-wrapper > div[style*="z-index: 9999;"] {
  height: 0;
  overflow: hidden;
  position: absolute;
  top: -1000000px;
  opacity: 0;
}
.fr-view{
  position: absolute;
  top: 0;
}
.fr-placeholder{
  margin-top: 0;
}
.fr-box .second-toolbar {
  display: none;
}

.fr-box .second-toolbar #logo {
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
}
.fr-box .fr-toolbar {
  border-radius: 4px 4px 0 0;
  border-color: #dcdfe6;
}
.fr-box .second-toolbar {
  border-radius: 0 0 4px 4px;
  border-color: #dcdfe6;
}
.fr-box .fr-wrapper {
  border-color: #dcdfe6 !important;
}
</style>

2.自定义上传图片

 config: {
    events: {
        "image.beforeUpload": function(images) {
            //自定义上传图片
            that.beforeUpload(images[0]);
            return false;
         },
     }
 }

  //上传成功后插入图片
  that.editor.html.insert(
       "<img src=" + that.uploadImage.imgFile.data + ">", //HTML
    false //在插入之前是否应清除HTML
  ); //插入图片

3.小坑
该编辑器属于付费使用,不付费默认会带上他的标语,所以保存内容的时候要过滤

import froalaEditor from "@/components/froalaEditor.vue";
export default {
  components: {
    froalaEditor,
  },
  data() {
    const that = this;
    return {
      editor: {
        p:
          '<p data-f-id="pbf" style="text-align: center; font-size: 14px; margin-top: 30px; opacity: 0.65; font-family: sans-serif;">Powered by <a href="https://www.froala.com/wysiwyg-editor?pb=1" title="Froala Editor">Froala Editor</a></p>',
      }
   }
 }
}

if (newData.seriesDetail.indexOf(this.editor.p) > -1) {
    newData.seriesDetail = newData.seriesDetail.replace(
     this.editor.p,
      ""
      );
 }

4.官网文档
https://froala.com/wysiwyg-editor/docs/framework-plugins/vue/#model

3、效果

富文本编辑器.png

总结

用了这个富文本编辑器后,感觉我很嫌弃以前用过的编辑器,哈哈,还有,我添加了自定义上传图片的案例,小伙伴们可以按照自己的实际情况来修改,上传视频的话也是如此。拜拜

——By kkc_hq

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,658评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,482评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,213评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,395评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,487评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,523评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,525评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,300评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,753评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,048评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,223评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,905评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,541评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,168评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,417评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,094评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,088评论 2 352