react hook使用UEditor引入秀米图文排版

这篇具有很好参考价值的文章主要介绍了react hook使用UEditor引入秀米图文排版。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

里面坑比较多,细节也比较多

以下使用的是react 18 + ice3.0,使用其他react脚手架的配置基本相同,例如umi4

1.下载UEditor

进入UEditor仓库,找到版本v1.4.3.3,点击进去
react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架
接着下载ueditor1_4_3_3-utf8-jsp.zip版本

react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架
下载好以后开始安装依赖:npm install ,依赖安装完成后就可以打包了,最终我们项目要的就是这个打包后的文件。

打包需要使用grunt:

  • 全局安装npm install -g grunt-cli
  • 在项目ueditor中安装grunt依赖,npm install grunt --save-dev
  • 在项目ueditor输入指令grunt default来生成一个dist文件
    react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架

2.react项目配置UEditor

react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架
复制dist\utf8-php下的所有文件到react项目中的public\editor\ueditor下面(没有这个目录就新建一个)。
如下,注意标黄的文件是后面步骤加上的,没有这个文件是正常的:react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架
接着引入UEditor

找到src\document.tsx文件,就这个文件就相当于其他项目中的index.html,具体使用参考document定制html,在这里引入UEditor,我们的文件存放的地址在public下面,这里写路径的时候不用写public,直接从editor开始写,/editor/ueditor/ueditor.config.js/editor/ueditor/ueditor.all.js
react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架

注意!!如果你编辑器报错,放开下面两个注释的文件

3.react组件引入UEditor

新建src\components\ReactUeditor文件夹,分别以下几个文件
react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架

index.tsx

import React, { useEffect, useImperativeHandle, forwardRef } from "react";
let editor: any = null;
function UEditor(props, ref) {
  useEffect(() => {
    if (window.UE.getEditor) {
      setConfig(props.initData, props.config, props.setContent);
    }
    return () => {
      editor.destroy(props.id);
      // 组件销毁时候移除页面中id的textarea
      let tagElement = window.document.querySelector(`#ueditor-container`);
      tagElement?.parentElement?.removeChild(tagElement);
      // editor.removeListener(); //不要打开,否则返回有问题报错
    };
  }, []);

  // 初始化编辑器
  const setConfig = (initData, config, setContent) => {
    editor =
      window.UE &&
      window.UE.getEditor("ueditor-container", {
        // toolbars,
        // enableAutoSave: false,
        maximumWords: 1000000,
        scaleEnabled: false,
        autoFloatEnabled: false,
        autoHeightEnabled: false,
        initialFrameHeight: (config && config.initialFrameHeight) || 450,
		initialFrameWidth: (config && config.initialFrameWidth) || "100%",
        zIndex: 1,
      });
    editor.ready(() => {
      if (initData) {
        editor.setContent(initData); // 设置默认值/表单回显
      }
    });
    editor.addListener("blur", function () {
      setContent(editor.getContent());
    });
  };
  // 暴露方法
  useImperativeHandle(ref, () => ({
    getUEContent: () => {
      return editor.getContent(); // 获取编辑器内容
    },
  }));
  return <script id="ueditor-container" type="text/plain" />;
}
export default forwardRef(UEditor);

页面组件引入

import ReactUeditor from "@/components/ReactUeditor";

<Form.Item name="contents">
    <ReactUeditor onChange={onChange}
              autoFloatEnabled={type !== "detail" ? true : false}
              initData={initData}
              setContent={(val) => console.log(val)}></ReactUeditor>
</Form.Item>

这个时候就能看到效果了
react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架

4.接入秀米

参考地址

引入秀米图标和样式
react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架
xiumi-ue-dialog-v5.js

/**
 * Created by shunchen_yang on 16/10/25.
 */

UE.registerUI("dialog", function (editor, uiName) {
  var btn = new UE.ui.Button({
    name: "/* xiumi-connect */",
    title: "秀米",
    onclick: function () {
      var dialog = new UE.ui.Dialog({
        iframeUrl: "/editor/ueditor/xiumi-ue-dialog-v5.html",
        editor: editor,
        name: "xiumi-connect",
        title: "秀米图文消息助手",
        cssRules:
          "width: " +
          (window.innerWidth - 80) +
          "px;" +
          "height: " +
          (window.innerHeight - 280) +
          "px;z-index:100000",
      });
      dialog.render();
      dialog.open();
    },
  });
  return btn;
});

xiumi-ue-v5.css

.edui-button.edui-for-xiumi-connect .edui-button-wrap .edui-button-body .edui-icon {
    background-image: url("./xiumi-connect-icon.png") !important;
    background-size: contain;
}

通过iframe 嵌入秀米
react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架

internal.js

(function () {
  var parent = window.parent;
  //dialog对象
  dialog = parent.$EDITORUI[window.frameElement.id.replace(/_iframe$/, "")];
  //当前打开dialog的编辑器实例
  editor = dialog.editor;

  UE = parent.UE;

  domUtils = UE.dom.domUtils;

  utils = UE.utils;

  browser = UE.browser;

  ajax = UE.ajax;

  $G = function (id) {
    return document.getElementById(id);
  };
  //focus元素
  $focus = function (node) {
    setTimeout(function () {
      if (browser.ie) {
        var r = node.createTextRange();
        r.collapse(false);
        r.select();
      } else {
        node.focus();
      }
    }, 0);
  };
  utils.loadFile(document, {
    href:
      editor.options.themePath +
      editor.options.theme +
      "/dialogbase.css?cache=" +
      Math.random(),
    tag: "link",
    type: "text/css",
    rel: "stylesheet",
  });
  lang = editor.getLang(dialog.className.split("-")[2]);
if (lang) {
    domUtils.on(window, "load", function () {
      var langImgPath =
        editor.options.langPath + editor.options.lang + "/images/";
      //针对静态资源
      for (var i in lang["static"]) {
        var dom = $G(i);
        if (!dom) continue;
        var tagName = dom.tagName,
          content = lang["static"][i];
        if (content.src) {
          //clone
          content = utils.extend({}, content, false);
          content.src = langImgPath + content.src;
        }
        if (content.style) {
          content = utils.extend({}, content, false);
          content.style = content.style.replace(
            /url\s*\(/g,
            "url(" + langImgPath
          );
        }
        switch (tagName.toLowerCase()) {
          case "var":
            dom.parentNode.replaceChild(document.createTextNode(content), dom);
            break;
          case "select":
            var ops = dom.options;
                 for (var j = 0, oj; (oj = ops[j]); ) {
              oj.innerHTML = content.options[j++];
            }
            for (var p in content) {
              p != "options" && dom.setAttribute(p, content[p]);
            }
            break;
          default:
            domUtils.setAttributes(dom, content);
        }
      }
    });
  }
})();

xiumi-ue-dialog-v5.html

<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>XIUMI connect</title>
    <style>
        html,
        body {
            padding: 0;
            margin: 0;
        }

        #xiumi {
            position: absolute;
            width: 100%;
            height: 100%;
            border: none;
            box-sizing: border-box;
        }
    </style>
</head>

<body>
    <iframe id="xiumi" src="https://xiumi.us/studio/v5#/paper">
    </iframe>
    <script type="text/javascript" src="dialogs/internal.js"></script>
    <script>
        var xiumi = document.getElementById('xiumi');
        var xiumi_url = "https://xiumi.us";
        console.log("xiumi_url is %o", xiumi_url);
        xiumi.onload = function () {
            console.log("postMessage to %o", xiumi_url);
            // "XIUMI:3rdEditor:Connect" 是特定标识符,不能修改,大小写敏感
 			xiumi.contentWindow.postMessage('XIUMI:3rdEditor:Connect', xiumi_url);
        };
        document.addEventListener("mousewheel", function (event) {
            event.preventDefault();
            event.stopPropagation();
        });
        window.addEventListener('message', function (event) {
            console.log("Received message from xiumi, origin: %o %o", event.origin, xiumi_url);
            if (event.origin == xiumi_url) {
                console.log("Inserting html");
                editor.execCommand('insertHtml', event.data);
                console.log("Xiumi dialog is closing");
                dialog.close();
            }
        }, false);
    </script>
</body>

</html>

将注册的图标添加到编辑器中
react hook使用UEditor引入秀米图文排版,业务,笔记,react,react.js,前端,前端框架文章来源地址https://www.toymoban.com/news/detail-836197.html

到了这里,关于react hook使用UEditor引入秀米图文排版的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • React hooks文档笔记(五)useEffect——解决异步操作竞争问题

    非bug,重新安装组件仅在开发过程中发生,帮助找到需要清理的效果。在生产环境中只会加载一次。 React 将在 Effect 下次运行之前以及卸载期间调用您的清理函数。 return () = {}; 在开发中, Effect call addEventListener() ,然后立即call removeEventListener() ,然后再次cal laddEventListener()

    2024年02月11日
    浏览(44)
  • React Hooks 基本使用

    class 组件如果业务复杂,很难拆分和重构,很难测试;相同业务逻辑分散到各个方法中,逻辑混乱 逻辑复用像 HOC 、 Render Props ,不易理解,学习成本高 React 提倡函数式编程,函数更易拆分,更易测试 但是函数组件太简单,为了增强函数组件的功能,媲美 class 组件: 函数组

    2024年01月21日
    浏览(41)
  • 【《React Hooks实战》——指导你使用hook开发性能优秀可复用性高的React组件】

    使用React Hooks后,你很快就会发现,代码变得更具有组织性且更易于维护。React Hooks是旨在为用户提供跨组件的重用功能和共享功能的JavaScript函数。利用React Hooks, 可以将组件分成多个函数、管理状态和副作用,并且不必声明类即可调用React内置的功能。而且,上述所有的操作

    2024年02月14日
    浏览(35)
  • React Hooks 详细使用介绍

    useState 是 React 中的一个基础 Hook,允许你在不使用 class 组件的情况下管理组件状态。 参数 初始值 你可以直接传递状态的初始值给 useState : 使用函数设置初始值 当初始化状态代价较大时,你可以传递一个函数: 返回值 useState 返回一个数组,其中包括当前状态值和一个更新

    2024年02月13日
    浏览(33)
  • react中hooks的理解与使用

    一、作用 我们知道react组件有两种写法一种是类组件,另一种是函数组件。而函数组件是无状态组件,如果我们要想改变组件中的状态就无法实现了。为此,在react16.8版本后官方推出hooks,用于函数组件更改状态。 二、常用API 1、useState :存储变量和修改变量 用法: 有两个参

    2024年02月13日
    浏览(37)
  • React - Redux Hooks的使用细节详解

    Redux中Hooks介绍 在之前的redux开发中,为了让组件和redux结合起来,我们使用了react-redux库中的connect : 但是这种方式必须使用高阶函数结合返回的高阶组件; 并且必须编写:mapStateToProps和 mapDispatchToProps映射的函数, 具体使用方式在前面文章有讲解; 在Redux7.1开始,提供了Hook的方式

    2024年02月02日
    浏览(51)
  • react使用hook封装一个tab组件

    2024年02月09日
    浏览(47)
  • React Hooks的useState、useRef使用

    React Hooks 是 React 16.8 版本引入的新特性,它允许你在不编写 class 的情况下使用 state 和其他 React 特性。其中, useState  和  useRef  是两个常用的 Hooks。 1. useState useState  是一个允许你在函数组件中添加 state 的 Hook。 使用说明: useState  返回一个状态变量和一个设置该变量的函

    2024年02月02日
    浏览(45)
  • React的10个常用Hooks及使用场景

    React是一款非常流行的JavaScript库,它提供了许多Hooks,用于管理函数组件的状态和生命周期。下面是React的每个Hooks的使用场景和示例: useState用于在函数组件中管理状态。 它返回一个包含当前状态和一个更新状态的函数的数组。更新状态的函数可以接受一个新的值,并更新状

    2024年02月09日
    浏览(36)
  • React Hook - useEffecfa函数的使用细节详解

    useEffecf基本使用 书接上文, 上一篇文章我们讲解了State Hook, 我们已经可以通过这个hook在函数式组件中定义state 我们知道在类组件中是可以有生命周期函数的, 那么如何在函数组件中定义类似于生命周期这些函数呢? Effect Hook 可以让你来完成一些类似于class中生命周期的功能; 事

    2023年04月12日
    浏览(35)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包