一、背景概述
项目有自定义富文本样式的需求,采用了wangEditor富文本编辑器。若直接把自定义样式的html插入WangEditor中,无法解析,且会被自动过滤。因此,需要基于WangEditor提供的API进行二次开发。
例如,需要新增以下样式:
该样式的html为:
<div style="padding: 10px; margin: 5px 0px 0px; max-width: 100%; line-height: 25px;
font-size: 16px; font-family: 微软雅黑; border-top-left-radius: 4px;
border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px;
color: rgb(255, 255, 255); border-left-color: rgb(0, 187, 236); border-left-width: 10px;
border-left-style: solid; box-shadow: rgb(153, 153, 153) 2px 2px 4px;
text-shadow: rgb(34, 95, 135) 0px 1px 0px; word-wrap: break-word; box-sizing: border-box;
background-color: rgb(55, 57, 57);">1、在这里输入标题</div>
二、基于WangEditor扩展新功能
官方文档https://www.wangeditor.com/v5/development.html
根据官方提供的文档介绍,wangEditor的元素,都需要定义其对应的节点数据结构,否则无法渲染。
我们根据官方文档的步骤,从定义类型、在编辑器渲染新元素、把新元素转换为 HTML、解析新元素 HTML 到编辑器四个步骤来介绍。
一般我们会创建一个文件夹,用于存放这个自定义元素的代码。
1. 定义节点的类型
这里定义的方式比较固定,这是为后面插入节点准备的。WangEditor采用数据驱动视图,要想显示什么,必须先定义相应的数据结构。
要注意,元素节点,例如 { type: 'header1', children: [ { text: 'hello' } ] }
,必须有两个属性 type
和 children
属性。还可以自定义其他属性。参考官方文档中节点数据结构这一部分。
这里我们的数据结构只有样式里面的文本,没有别的信息,因此定义一个children即可。
创建文件custom-types.ts
,写入代码
import { Text } from 'slate'
export type TitleBlackElement = {
type: 'title-black'
children: Text[]
}
后续我们插入元素的时候,就可以这样写:
const myResume: TitleBlackElement = {
type: 'title-black',
children: [{ text: '1、在这里插入标题' }]
}
当然,现在WangEditor还无法识别,因为我们还没定义这个类型所对应的节点是什么样的。我们在下面定义。
2、在编辑器渲染新元素
编辑器的内部渲染使用了 虚拟DOM 技术。我们主要会用到它的 h 函数来创建虚拟DOM对象。
这里,我们的节点为一个div包着里面的文字。当然,div上还夹带着样式。
创建一个文件render-elem.ts
import { h, VNode } from 'snabbdom'
import { IDomEditor, SlateElement } from '@wangeditor/editor'
import { IRenderElemConf } from '@wangeditor/core';
function renderTitleBlack(
elemNode: SlateElement,
children: VNode[] | null,
editor: IDomEditor
): VNode {
const vnode = h(
'div',
{
style: {
padding: "10px",
margin: "5px 0px 0px",
// whiteSpace: "normal",
maxWidth: "100%",
lineHeight: "25px",
fontSize: "16px",
fontFamily: "微软雅黑",
borderTopLeftRadius: '4px',
borderTopRightRadius: '4px',
borderBottomRightRadius: '4px',
borderBottomLeftRadius: "4px",
color: 'rgb(255, 255, 255)',
borderLeftColor: 'rgb(0, 187, 236)',
borderLeftWidth: '10px',
borderLeftStyle: 'solid',
boxShadow: 'rgb(153, 153, 153) 2px 2px 4px',
textShadow: 'rgb(34, 95, 135) 0px 1px 0px',
wordWrap: 'break-word',
boxSizing: 'border-box',
backgroundColor: 'rgb(55, 57, 57)'
},
},
children)
return vnode;
}
export const renderElemConf:IRenderElemConf = {
type: 'title-black',
renderElem: renderTitleBlack,
}
定义了这个之后,执行editor.insertNode(myResume)
即可插入自定义节点(当然,得先注册,可参考官网,本文在都定义完后一次性注册)
3、解析新元素 HTML 到编辑器
只定义上面的部分,此时执行 editor.getHtml()
获取的HTML,是无法获取到对应的html的,这个也需要自己定义。
创建文件elemToHtml.ts
,定义元素对应的html.
注意,这里在你自定义元素的html的基础上,增加一个名为data-w-e-type
的属性,值为你这个节点的类型,这里是title-black
.
import { Element } from 'slate'
function titleBlackToHtml(elem: Element, childrenHtml: string): string {
return `<div data-w-e-type="title-black"
style="padding: 10px; margin: 5px 0px 0px; max-width: 100%; line-height: 25px;
font-size: 16px; font-family: 微软雅黑; border-top-left-radius: 4px;
border-top-right-radius: 4px; border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px; color: rgb(255, 255, 255); border-left-color: rgb(0, 187, 236);
border-left-width: 10px; border-left-style: solid; box-shadow: rgb(153, 153, 153) 2px 2px 4px;
text-shadow: rgb(34, 95, 135) 0px 1px 0px; word-wrap: break-word; box-sizing: border-box;
background-color: rgb(55, 57, 57);">${childrenHtml}</div>`
}
export const elemToHtmlConf = {
type: 'title-black',
elemToHtml: titleBlackToHtml
}
此时,通过 const html = editor.getHtml()
可以得到正确的 HTML。但再去设置HTML editor.setHtml(html)
却无效。而我们通常在存储富文本数据时,存的是对应的html。想要让wangEditor能够直接识别html,需要你自定义解析 HTML 的逻辑。
4、解析新元素 HTML 到编辑器
创建parseElemHtml.ts
,这里的编写思路就是从html标签中获取里面的内容,然后手动创建您自定义元素的数据结构,格式同第一节一致。这里指定type为text-gray
,children
是一个text数组,填入这个div样式里面的文字内容。
import { IDomEditor, SlateDescendant, SlateElement } from '@wangeditor/editor'
function parseTitleBlackHtml(domElem: Element, children: SlateDescendant[], editor: IDomEditor): SlateElement {
const text = domElem.firstChild?.textContent
const myResume = {
type: 'title-black',
children: [{text: text || ''}]
}
return myResume
}
export const parseHtmlConf = {
selector: 'div[data-w-e-type="title-black"]', // data-w-e-type 属性,留给自定义元素,保证扩展性
parseElemHtml: parseTitleBlackHtml,
}
5、注册自定义元素到wangEditor
将custom-types
、render-elem
、elemToHtml
、parseElemHtml
注册到wangEditor中。
这里,我们把这四个文件放在title-black
文件夹中,并创建一个入口文件index.ts
import { IModuleConf } from '@wangeditor/core'
import { renderElemConf } from './render-elem'
import { elemToHtmlConf } from './elem-to-html'
import { parseHtmlConf } from './parse-elem-html'
const TitleBlack: Partial<IModuleConf> = {
renderElems: [renderElemConf],
elemsToHtml: [elemToHtmlConf],
parseElemsHtml: [parseHtmlConf]
}
export default TitleBlack
接着使用registerModule
注册到wangEditor中。
import { Boot } from '@wangeditor/editor'
import TitleBlack from './editor-module/title-black'; // 这个路径根据你的配置来
Boot.registerModule(TitleBlack)
这里插件就注册好啦!
使用
这里,我们要往编辑器中插入新的样式时,可以先定义节点数据结构,再使用editor.insertNode
插入。可以自己写一个按钮、触发回调的方式执行以下代码:
const node = {
type: 'title-black',
children: [{text: '1、在这里插入标题'}]
}
editor?.insertNode(node);
但是使用时还出现一个问题,在插入样式后,想换行,无法回到正常编辑的模式,会一直待着样式换行。如图:
要解决这个问题,需要自定义一个插件,拦截回车事件。
三、定义插件解决换行问题
要解决上面这个问题,就需要拦截回车事件,在用户输入回车时,手动处理这一情况,这里我参考的是wangEditor中引用功能blockquote
的源码。
这里需要重写insertBreak,首先判断用户输入换行的位置,如果是在title-black
(我们自定义的元素)中换行的,则需要自定义一些动作:
这里首先判断光标是否位于元素的最后,如果是:第一次输入换行时,让其在元素中正常换行。如果是第二次输入换行(连续两次,判定规则为前一个字符扔为换行符),此时我们将上一个换行符删去,然后插入一个<p></p>
标签,即回到正常样式。
在title-black
文件夹中创建ts文件insertBreakPlugin.ts
,写入插件代码:
import { Editor, Transforms, Node, Point } from 'slate'
import { IDomEditor, DomEditor } from '@wangeditor/editor'
function insertBreakPlugin<T extends IDomEditor>(editor: T): T {
const { insertBreak, insertText } = editor
const newEditor = editor
// 重写 insertBreak - 换行时插入 p
newEditor.insertBreak = () => {
const { selection } = newEditor
if (selection == null) return insertBreak()
const [nodeEntry] = Editor.nodes(editor, {
match: n => {
return DomEditor.checkNodeType(n, 'title-black')
},
universal: true,
})
if (!nodeEntry) return insertBreak()
const elem = nodeEntry[0]
const elemPath = DomEditor.findPath(editor, elem)
const elemEndLocation = Editor.end(editor, elemPath)
if (Point.equals(elemEndLocation, selection.focus)) {
// 光标位于节点最后
const str = Node.string(elem)
if (str && str.slice(-1) === '\n') {
// 节点的文本最后一个是 \n
editor.deleteBackward('character') // 删除最后一个 \n
// 则插入一个 paragraph
const p = { type: 'paragraph', children: [{ text: '' }] }
Transforms.insertNodes(newEditor, p, { mode: 'highest' })
return
}
}
// 正常情况,插入换行符
insertText('\n')
}
// 返回 editor ,重要!
return newEditor
}
export default insertBreakPlugin;
在index.ts
中引入
import { IModuleConf } from '@wangeditor/core'
import { renderElemConf } from './render-elem'
import { elemToHtmlConf } from './elem-to-html'
import { parseHtmlConf } from './parse-elem-html'
import insertBreakPlugin from './insertBreakPlugin'
const TitleBlack: Partial<IModuleConf> = {
renderElems: [renderElemConf],
elemsToHtml: [elemToHtmlConf],
parseElemsHtml: [parseHtmlConf],
editorPlugin: insertBreakPlugin
}
export default TitleBlack
将这个模块注册到wangEditor
中。
注册方式和之前一样,把这个index.ts整体了就行,和之前一样。
import { Boot } from '@wangeditor/editor'
import TitleBlack from './editor-module/title-black'; // 这个路径根据你的配置来
Boot.registerModule(TitleBlack)