详解如何在vue+element-ui的项目中封装dialog组件
1、问题起源
由于 vue 基于组件化的设计,得益于这个思想,我们在 vue 的项目中可以通过封装组件提高代码的复用性。根据我目前的使用心得,知道 vue 拆分组件至少有两个优点:
1、代码复用。
2、代码拆分
在基于 element-ui 开发的项目中,可能我们要写出一个类似的调度弹窗功能,很容易编写出以下代码:
<template> <div> <el-dialog :visible.sync="cnmapvisible">我是中国地图的弹窗</el-dialog> <el-dialog :visible.sync="usamapvisible">我是美国地图的弹窗</el-dialog> <el-dialog :visible.sync="ukmapvisible">我是英国地图的弹窗</el-dialog> <el-button @click="openchina">打开中国地图</el-button> <el-button @click="openusa">打开美国地图</el-button> <el-button @click="openuk">打开英国地图</el-button> </div> </template> <script> export default { name: "view", data() { return { // 对百度地图和谷歌地图的一些业务处理代码 省略 cnmapvisible: false, usamapvisible: false, ukmapvisible: false, }; }, methods: { // 对百度地图和谷歌地图的一些业务处理代码 省略 openchina() {}, openusa() {}, openuk() {}, }, }; </script>
上述代码存在的问题非常多,首先当我们的弹窗越来越多的时候,我们会发现此时需要定义越来越多的变量去控制这个弹窗的显示或者隐藏。
由于当我们的弹窗的内部还有业务逻辑需要处理,那么此时会有相当多的业务处理代码夹杂在一起(比如我调用中国地图我需要用高德地图或者百度地图,而调用美国、英国地图我只能用谷歌地图,这会使得两套业务逻辑分别位于一个文件,严重加大了业务的耦合度)
我们按照分离业务,降低耦合度的原则,将代码按以下思路进行拆分:
1、view.vue
<template> <div> <china-map-dialog ref="china"></china-map-dialog> <usa-map-dialog ref="usa"></usa-map-dialog> <uk-map-dialog ref="uk"></uk-map-dialog> <el-button @click="openchina">打开中国地图</el-button> <el-button @click="openusa">打开美国地图</el-button> <el-button @click="openuk">打开英国地图</el-button> </div> </template> <script> export default { name: "view", data() { return { /** 将地图的业务全部抽离到对应的dialog里面去,view只存放调度业务代码 */ }; }, methods: { openchina() { this.$refs.china && this.$refs.china.opendialog(); }, openusa() { this.$refs.usa && this.$refs.usa.opendialog(); }, openuk() { this.$refs.uk && this.$refs.uk.opendialog(); }, }, }; </script>
2、chinamapdialog.vue
<template> <div> <el-dialog :visible.sync="baidumapvisible">我是中国地图的弹窗</el-dialog> </div> </template> <script> export default { name: "chinamapdialog", data() { return { // 对中国地图业务逻辑的封装处理 省略 baidumapvisible: false, }; }, methods: { // 对百度地图和谷歌地图的一些业务处理代码 省略 opendialog() { this.baidumapvisible = true; }, closedialog() { this.baidumapvisible = false; }, }, }; </script>
3、由于此处仅仅展示伪代码,且和 chinamapdialog.vue 表达的含义一致, 为避免篇幅过长 usamapdialog.vue 和 ukmapdialog.vue 已省略
2、问题分析
我们通过对这几个弹窗的分析,对刚才的设计进行抽象发现,这里面都有一个共同的部分,那就是我们对 dialog 的操作代码都是可以重用的代码,如果我们能够编写出一个抽象的弹窗,
然后在恰当的时候将其和业务代码进行组合,就可以实现 1+1=2 的效果。
3、设计
由于 vue 在不改变默认的 mixin 原则(默认也最好不要改变,可能会给后来的维护人员带来困惑)的情况下,如果在混入过程中发生了命名冲突,默认会将方法合并(数据对象在内部会进行递归合并,并在发生冲突时以组件数据优先),因此,mixin 无法改写本来的实现,而我们期望的是,父类提供一个比较抽象的实现,子类继承父类,若子类需要改表这个行为,子类可以重写父类的方法(多态的一种实现)。
因此我们决定使用 vue-class-component 这个库,以类的形式来编写这个抽象弹窗。
import vue from "vue"; import component from "vue-class-component"; @component({ name: "abstractdialog", }) export default class abstractdialog extends vue {}
3.1 事件处理
查看 element-ui 的官方网站,我们发现 eldialog 对外抛出 4 个事件,因此,我们需要预先接管这 4 个事件。
因此需要在我们的抽象弹窗里预设这个 4 个事件的 handler(因为对于组件的行为的划分,而对于弹窗的处理本来就应该从属于弹窗本身,因此我并没有通过$listeners 去穿透外部调用时的监听方法)
import vue from "vue"; import component from "vue-class-component"; @component({ name: "abstractdialog", }) export default class abstractdialog extends vue { open() { console.log("弹窗打开,我啥也不做"); } close() { console.log("弹窗关闭,我啥也不做"); } opened() { console.log("弹窗打开,我啥也不做"); } closed() { console.log("弹窗关闭,我啥也不做"); } }
3.2 属性处理
dialog 有很多属性,默认我们只需要关注的是 before-close 和 title 两者,因为这两个属性从职责上划分是从属于弹窗本身的行为,所以我们会在抽象弹窗里面处理开关和 title 的任务
import vue from "vue"; import component from "vue-class-component"; @component({ name: "abstractdialog", }) export default class abstractdialog extends vue { visible = false; t = ""; loading = false; //定义这个属性的目的是为了实现既可以外界通过传入属性改变dialog的属性,也支持组件内部预设dialog的属性 attrs = {}; get title() { return this.t; } settitle(title) { this.t = title; } }
3.3 slots 的处理
查看 element-ui 的官方网站,我们发现,eldialog 有三个插槽,因此,我们需要接管这三个插槽
1、对 header 的处理
import vue from "vue"; import component from "vue-class-component"; @component({ name: "abstractdialog", }) class abstractdialog extends vue { /* 构建弹窗的header */ _createheader(h) { // 判断在调用的时候,外界是否传入header的插槽,若有的话,则以外界传入的插槽为准 var slotheader = this.$scopedslots["header"] || this.$slots["header"]; if (typeof slotheader === "function") { return slotheader(); } //若用户没有传入插槽,则判断用户是否想改写header var renderheader = this.renderheader; if (typeof renderheader === "function") { return <div slot="header">{renderheader(h)}</div>; } //如果都没有的话, 返回undefined,则dialog会使用我们预设好的title } }
2、对 body 的处理
import vue from "vue"; import component from "vue-class-component"; @component({ name: "abstractdialog", }) class abstractdialog extends vue { /** * 构建弹窗的body部分 */ _createbody(h) { // 判断在调用的时候,外界是否传入default的插槽,若有的话,则以外界传入的插槽为准 var slotbody = this.$scopedslots["default"] || this.$slots["default"]; if (typeof slotbody === "function") { return slotbody(); } //若用户没有传入插槽,则判断用户想插入到body部分的内容 var renderbody = this.renderbody; if (typeof renderbody === "function") { return renderbody(h); } } }
3、对 footer 的处理
由于 dialog 的 footer 经常都有一些相似的业务,因此,我们需要把这些重复率高的代码封装在此,若在某种时候,用户需要改写 footer 的时候,再重写,否则使用默认行为
import vue from "vue"; import component from "vue-class-component"; @component({ name: "basedialog", }) export default class basedialog extends vue { showloading() { this.loading = true; } closeloading() { this.loading = false; } onsubmit() { this.closedialog(); } onclose() { this.closedialog(); } /** * 构建弹窗的footer */ _createfooter(h) { var footer = this.$scopedslots.footer || this.$slots.footer; if (typeof footer == "function") { return footer(); } var renderfooter = this.renderfooter; if (typeof renderfooter === "function") { return <div slot="footer">{renderfooter(h)}</div>; } return this.defaultfooter(h); } defaultfooter(h) { return ( <div slot="footer"> <el-button type="primary" loading={this.loading} on-click={() => { this.onsubmit(); }} > 保存 </el-button> <el-button on-click={() => { this.onclose(); }} > 取消 </el-button> </div> ); } }
最后,我们再通过 jsx 将我们编写的这些代码组织起来,就得到了我们最终想要的抽象弹窗
代码如下:
import vue from "vue"; import component from "vue-class-component"; @component({ name: "abstractdialog", }) export default class abstractdialog extends vue { visible = false; t = ""; loading = false; attrs = {}; get title() { return this.t; } settitle(title) { this.t = title; } open() { console.log("弹窗打开,我啥也不做"); } close() { console.log("弹窗关闭,我啥也不做"); } opened() { console.log("弹窗打开,我啥也不做"); } closed() { console.log("弹窗关闭,我啥也不做"); } showloading() { this.loading = true; } closeloading() { this.loading = false; } opendialog() { this.visible = true; } closedialog() { if (this.loading) { this.$message.warning("请等待操作完成!"); return; } this.visible = false; } onsubmit() { this.closedialog(); } onclose() { this.closedialog(); } /* 构建弹窗的header */ _createheader(h) { var slotheader = this.$scopedslots["header"] || this.$slots["header"]; if (typeof slotheader === "function") { return slotheader(); } var renderheader = this.renderheader; if (typeof renderheader === "function") { return <div slot="header">{renderheader(h)}</div>; } } /** * 构建弹窗的body部分 */ _createbody(h) { var slotbody = this.$scopedslots["default"] || this.$slots["default"]; if (typeof slotbody === "function") { return slotbody(); } var renderbody = this.renderbody; if (typeof renderbody === "function") { return renderbody(h); } } /** * 构建弹窗的footer */ _createfooter(h) { var footer = this.$scopedslots.footer || this.$slots.footer; if (typeof footer == "function") { return footer(); } var renderfooter = this.renderfooter; if (typeof renderfooter === "function") { return <div slot="footer">{renderfooter(h)}</div>; } return this.defaultfooter(h); } defaultfooter(h) { return ( <div slot="footer"> <el-button type="primary" loading={this.loading} on-click={() => { this.onsubmit(); }} > 保存 </el-button> <el-button on-click={() => { this.onclose(); }} > 取消 </el-button> </div> ); } createcontainer(h) { //防止外界误传参数影响弹窗本来的设计,因此,需要将某些参数过滤开来,有title beforeclose, visible var { title, beforeclose, visible, ...rest } = object.assign({}, this.$attrs, this.attrs); return ( <el-dialog {...{ props: { ...rest, visible: this.visible, title: this.title || title || "弹窗", beforeclose: this.closedialog, }, on: { close: this.close, closed: this.closed, opened: this.opened, open: this.open, }, }} > {/* 根据jsx的渲染规则 null、 undefined、 false、 '' 等内容将不会在页面显示,若createheader返回undefined,将会使用默认的title */} {this._createheader(h)} {this._createbody(h)} {this._createfooter(h)} </el-dialog> ); } render(h) { return this.createcontainer(h); } }
4.应用
4.1组件调用
我们就以编写 chinamapdialog.vue 为例,将其进行改写
<script> import vue from "vue"; import abstractdialog from "@/components/abstractdialog.vue"; import component from "vue-class-component"; @component({ name: "chinamapdialog", }) class chinamapdialog extends abstractdialog { get title() { return "这是中国地图"; } attrs = { width: "600px", } //编写一些中国地图的处理业务逻辑代码 //编写弹窗的内容部分 renderbody(h) { return <div>我是中国地图,我讲为你呈现华夏最壮丽的美</div>; } } </script>
4.2 使用 composition api
由于我们是通过组件的实例调用组件的方法,因此我们每次都需要获取当前组件的 refs 上面的属性,这样会使得我们的调用特别长,写起来也特别麻烦。
我们可以通过使用 composition api 来简化这个写法
<template> <div> <china-map-dialog ref="china"></china-map-dialog> <usa-map-dialog ref="usa"></usa-map-dialog> <uk-map-dialog ref="uk"></uk-map-dialog> <el-button @click="openchina">打开中国地图</el-button> <el-button @click="openusa">打开美国地图</el-button> <el-button @click="openuk">打开英国地图</el-button> </div> </template> <script> import { ref } from "@vue/composition-api"; export default { name: "view", setup() { const china = ref(null); const usa = ref(null); const uk = ref(null); return { china, usa, uk, }; }, data() { return { /** 将地图的业务全部抽离到对应的dialog里面去,view只存放调度业务代码 */ }; }, methods: { // 对百度地图和谷歌地图的一些业务处理代码 省略 openchina() { this.china && this.china.opendialog(); }, openusa() { this.usa && this.usa.opendialog(); }, openuk() { this.uk && this.uk.opendialog(); }, }, }; </script>
总结
开发这个弹窗所用到的知识点:
1、面向对象设计在前端开发中的应用;
2、如何编写基于类风格的组件(vue-class-component 或 vue-property-decorator);
3、jsx 在 vue 中的应用;
4、$attrs和$listeners 在开发高阶组件(个人叫法)中的应用;
5、slots 插槽,以及插槽在 jsx 中的用法;
6、在 vue2.x 中使用 composition api;
到此这篇关于详解如何在vue+element-ui的项目中封装dialog组件的文章就介绍到这了,更多相关vue element封装dialog内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!