Angular封装WangEditor富文本组件的方法
程序员文章站
2022-04-24 11:22:35
富文本组件是web程序中很常用的一个组件,特别是要开发一个博客,论坛这类的网站后台。得益于angular的强大,封装wangeditor组件非常简单1.使用yarn或者npm安装wangeditory...
富文本组件是web程序中很常用的一个组件,特别是要开发一个博客,论坛这类的网站后台。
得益于angular的强大,封装wangeditor组件非常简单
1.使用yarn或者npm安装wangeditor
yarn add wangeditor
2.创建一个angular的组件
ng g c q-wang-editor
3.封装组件逻辑
3.1 模板
<div #wang></div>
3.2 ts逻辑
import { component, elementref, eventemitter, input, ondestroy, oninit, output, viewchild, viewencapsulation } from '@angular/core'; import { controlvalueaccessor } from '@angular/forms'; import e from "wangeditor" import hljs from 'highlight.js' import "node_modules/highlight.js/styles/xcode.css" @component({ selector: 'q-wang-editor', templateurl: './q-wang-editor.component.html', styleurls: [ './q-wang-editor.component.less', '../../../../../node_modules/highlight.js/styles/xcode.css'], encapsulation: viewencapsulation.none, }) export class qwangeditorcomponent implements oninit, controlvalueaccessor,ondestroy { @viewchild("wang") editor!: elementref; @input() value: string = ''; @input() height = 300; @output() valuechange = new eventemitter(); onchange: ((value: string) => {}) | undefined; html = '' wangeditor: e | undefined; constructor() { } ngondestroy(): void { this.wangeditor?.destroy(); } writevalue(obj: any): void { this.html = obj; this.wangeditor?.txt.html(this.html) } registeronchange(fn: any): void { } registerontouched(fn: any): void { } ngoninit(): void { settimeout(() => { this.wangeditor = new e(this.editor.nativeelement) this.wangeditor.config.zindex = 500; this.wangeditor.config.height = this.height this.wangeditor.highlight = hljs; this.wangeditor.config.onchange = (html: any) => { this.valuechange.emit(html) if (this.onchange) { this.onchange(html); } } this.wangeditor.config.onchangetimeout = 500; this.wangeditor.create(); this.wangeditor.txt.html(this.html) }, 200); } }
大致思路:
- 使用viewchild引用html的dom元素
- 在oninit的成功后,初始化wangeditor编辑器,把模板中的elementref放入到wangeditor的容器中去,让wangeditor去控制界面的dom操作。
- 实现controlvalueaccessor,让这个组件支持angular的表单验证。
- 实现ngondestroy,组件在销毁的时候,调用wangeditor的destory
4.使用组件
<q-wang-editor [height]="550"></q-wang-editor>
5.效果预览
6.最后
一个wangeditor的angular组件封装就基本完成了。如果需要更多功能,比如图片上传,等可以再根据自己的需求增加功能即可
到此这篇关于angular封装wangeditor富文本组件的文章就介绍到这了,更多相关angular wangeditor富文本组件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
下一篇: jquery实现购物车功能
推荐阅读