vue.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > vue.js > Vue wangEditor自定义粘贴

Vue使用wangEditor实现自定义粘贴功能

作者:不cong明的亚子

这篇文章主要为大家详细介绍了Vue如何使用wangEditor实现自定义粘贴功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下

背景

收起来这个事情,那还是源于年前需求,由于急需打造公司自己的文档中心且不启用新的项目的前提下,在选取富文本编辑器这一步,果断选择了wangeditor这个插件,没有考虑粘贴这种问题,在使用的过程中,不舒适度极高,无奈之下接到了优化需求,进行自定义粘贴改造。

技术栈

vue2.x

@wangeditor/editor@5.1.x

自定义粘贴

官网,已经给出了自定义粘贴的入口,点击这里

我们需要处理的,就是针对复制媒体文件和带有格式的文本进行特殊处理

带有格式的文本,不保留原有格式,纯粘贴文本;

图片等媒体资源,可支持粘贴

可能出现的问题及解决方案

编辑器中通过insertNode插入媒体文件之后,执行insertText失效

- 插入一个空段落即可(下面代码中有示例)

如何读取剪切板中,含有的本地原生文件,(复制图片怎么读取)

- clipboardData.items 中,获取每一项的item.getAsFile()

富文本编辑器中,怎么初始化修改插入视频的大小 ?

- insertNode(video), 核心是使用该api去插入一个视频节点,它的数据结构中加入width和height的值即可,(下面代码中有示例)

请使用 ‘@customPaste’,不要放在 props 中。。。

- 出现类似的报错,请不要在config中使用customPaste而是用组件上的方法,改文章后续有使用示例代码

代码

大家期待的代码环节,

/** 异步等待 */
function sleep(delay) {
  return new Promise((resolve) => {
    setTimeout(() => {
      resolve();
    }, delay);
  });
}

/**
 * 插入一个空段落
 * @description 为了插入图片/视频后,光标不被图片覆盖
 * @param {*} editor
 */
function insertPragraph(editor) {
  const p = { type: "paragraph", children: [{ text: "" }] };
  editor.insertNode(p);
}

/**
 * 自定义粘贴
 * @description 富文本自定义粘贴
 */
export async function customPasteItemFunc(editor, event) {
  try {
    /** 粘贴事件 */
    const clipboardData = event.clipboardData;
    if (clipboardData && clipboardData.items) {
      for (let i = 0; i < clipboardData.items.length; i++) {
        const item = clipboardData.items[i];
        if (item.type.indexOf("image") !== -1) {
          /** 粘贴图片 */
          const file = item.getAsFile();
          if (file) {
            const notify = this.$notify({
              title: '提示',
              message: '当前有正在上传的媒体文件',
              duration: 0,
              showClose: false,
              type: 'warning'
            });
            const { code, data } = await uploadFile(file);
            notify.close();
            if (code !== 0) {
              throw new Error("图片上传失败");
            }
            const elem = {
              type: "image",
              src: data.url,
              alt: "bvox",
              href: "",
              children: [{ text: "" }], // void node 必须包含一个空 text
            };
            editor.insertNode(elem); // 插入图片
            insertPragraph(editor); // 插入一个空段落
          }
        }
        // 如果是由视频文件
        else if (item.type.indexOf("video") !== -1) {
          const file = item.getAsFile();
          if (file) {
            const notify = this.$notify({
              title: '提示',
              message: '当前有正在上传的媒体文件',
              duration: 0,
              showClose: false,
              type: 'warning'
            });
            const { code, data } = await uploadFile(file);
            notify.close();
            if (code !== 0) {
              throw new Error("视频上传失败");
            }
            const elem = {
              type: "video",
              src: data.url,
              poster,
              width: 530,
              height: 220,
              children: [{ text: "" }],
            };
            editor.insertNode(elem); // 插入视频
            insertPragraph(editor); // 插入一个空段落
          }
        } else if (item.type.indexOf("text/html") !== -1) {
          // 自定义复制
          const html = clipboardData.getData("text/html");
          const text = clipboardData.getData("text/plain");
          const resultImgs = html.match(/<img[^>]+>/g);
          const imgNodes = [];
          // 将匹配到的所有图片插入到编辑器中
          if (resultImgs) {
            resultImgs.forEach((img) => {
              const imgUrl = img.match(/src="([^"]+)"/)[1];
              const elem = {
                type: "image",
                src: imgUrl,
                alt: "bvox",
                href: "",
                children: [{ text: "" }], // void node 必须包含一个空 text
              };
              imgNodes.push(elem);
            });
          }
          // 多图插入
          const positions = text.split("\n");
          if (positions.length > 1) {
            for (let i = 0; i < positions.length; i++) {
              if (positions[i] === "[图片]") {
                editor.insertNode(imgNodes.shift());
                insertPragraph(editor); // 插入一个空段落
                await sleep(1000);
              } else {
                editor.insertText(positions[i]);
                await sleep(300);
              }
            }
          }
        }
      }
    }
  } catch (e) {
    this.$Message.error(e.message);
  }
}

大家疑惑的地方

为什么代码中直接出现this.$Message.error()

答: customPasteItemFunc.call(this, editor, event);

怎么使用这个方法呢?

答:只说在vue中的使用,react自行去看官网使用即可,

<Editor
  ....
  @customPaste="handleCustomPaste"
/>

method: {
  handleCustomPaste(editor, event) {
      customPasteItemFunc.call(this, editor, event);
      // 阻止默认的粘贴行为
      event.preventDefault()
      return false;
    }
}

到此这篇关于Vue使用wangEditor实现自定义粘贴功能的文章就介绍到这了,更多相关Vue wangEditor自定义粘贴内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文