vue3封装命令式弹窗组件

2024-08-30 20:28

本文主要是介绍vue3封装命令式弹窗组件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、前言

相信大家都封装过弹窗组件,基本思路都是父组件给子组件传递一个变量,子组件props进行接收,当点击确认或者关闭按钮时,通过emit回传事件供父组件调用。这种封装方式缺点是复用性查、使用频繁时需要定义多份{isVisible、handleSubmit、handleClose}代码,代码冗余,今天分享一种命令式组件封装的方式。

二、什么是命令式组件

命令式组件封装是一种将功能封装在组件内部,并通过命令式的方式进行调用和控制的封装方法。在命令式组件封装中,组件负责封装一定的功能逻辑,并提供一组接口或方法,供外部代码调用来触发和控制组件的行为。调用方式大致为:

async function showMsg(){const [,res]= await msgBox('测试内容',{type:'success',iconType:'question'})if(res){consloe.log('点击了确定')}else{console.log('点击了取消')}
}

三、开始封装

首先创建一个MessageBox.vue文件,编写组件样式代码,这里我使用的是unocss进行编写。

<script lang="ts" setup>
import { computed, onMounted, ref } from "vue"
import { ElButton, ElDialog } from 'element-plus'
export interface HuiMsgBoxProp {/** 控制图标展示类型 info:叹号 success:钩 question:问号 */iconType:'info' | 'success' | 'question',/** 控制图标展示的颜色 */type:'info' | 'warning' | 'success' | 'danger',/** 弹窗显示的内容 */content:string,/** 取消按钮的文本 */cancelText:string,/** 确定按钮的文本 */confirmText:string,/** 关闭事件 */closeBox: ()=> void,/** 确定事件事件 */confirmHandler:()=> void,/** 取消事件 */cancelHandler:()=> void,
}
const { iconType, type, content, cancelText, confirmText, closeBox, confirmHandler, cancelHandler } = withDefaults(defineProps<HuiMsgBoxProp>(), {iconType: 'info',type: 'info',cancelText: '取消',confirmText: '确定',
})const iconTypeClass = computed<string>(() => {const iconTypeClassList = {info: 'text-disabled',warning: 'text-warning',success: 'text-success',danger: 'text-danger',}return iconTypeClassList[type]
})const iconColorClass = computed<string>(() => {const iconColorClassList = {info: 'i-com-gantanhao',success: 'i-com-gou1',question: 'i-com-wenhao',}return iconColorClassList[iconType]
})// 控制显示处理
const isVisible = ref(false)
/*** 组件展示*/
const show = () => {isVisible.value = true
}/*** 处理动画 (render 函数的渲染,会直接进行)*/
onMounted(() => {show()
})/*** 取消事件*/
const onCancelClick = () => {if (cancelHandler) {cancelHandler()}close()
}/*** 确定事件*/
const onConfirmClick = () => {if (confirmHandler) {confirmHandler()}closeBox()
}// 关闭动画处理时间
const duration = '0.5s'
/*** 关闭事件,保留动画执行时长*/
const close = () => {isVisible.value = false// 延迟一段时间进行关闭setTimeout(() => {if (closeBox) {closeBox()}}, parseInt(duration.replace('0.', '').replace('s', '')) * 100)
}
</script><template><div class="hua5-message-box"><ElDialogv-model="isVisible"width="400"@closed="close"><div class="flex justify-center flex-center h-110"><div><i :class="[iconTypeClass,iconColorClass,'icon-com !text-27']" /></div><div class="text-14 font-bold text-normal ml-11">{{ content }}</div></div><template #footer><div class="dialog-footer"><ElButton class="!text-primary !border !border-1 !border-primary" @click="onCancelClick">{{ cancelText }}</ElButton><ElButton type="primary" class="w-100px" @click="onConfirmClick">{{ confirmText }}</ElButton></div></template></ElDialog></div>
</template><style lang="scss">
.hua5-message-box{.el-dialog{border-radius: 8px !important;}.el-dialog .el-dialog__header{background-color: #fff !important;}.el-dialog .el-dialog__footer{background-color: #fff !important;}
}
</style>

组件需要接收参数

export interface HuiMsgBoxProp {/** 控制图标展示类型 info:叹号 success:钩 question:问号 */iconType:'info' | 'success' | 'question',/** 控制图标展示的颜色 */type:'info' | 'warning' | 'success' | 'danger',/** 弹窗显示的内容 */content:string,/** 取消按钮的文本 */cancelText:string,/** 确定按钮的文本 */confirmText:string,/** 关闭事件 */closeBox: ()=> void,/** 确定事件事件 */confirmHandler:()=> void,/** 取消事件 */cancelHandler:()=> void,
}

其次创建index.ts文件,由于组件调用方式是通过一个函数进行调用的,并提供.then.catch方法,所以需要编写一个函数,该函数返回一个Promise。当调用该函数,创建组件实例,组件进行挂载。

import { h, render } from 'vue'
import confirmComponent from './message-box.vue'
import { to } from "@hua5/hua5-utils"export interface PayLoadType {/** 控制图标展示类型 info:叹号 success:钩 question:问号 */iconType?:'info' | 'success' | 'question',/** 控制图标展示的颜色 */type?: "info" | "success" | "danger" | "warning",/** 取消按钮的文本 */cancelText?:string,/** 确定按钮的文本 */confirmText?:string
}
export const hua5MsgBox = (content: string, payLoad:PayLoadType = {}) => {const { iconType = 'info', type = 'info', cancelText, confirmText } = payLoadreturn new Promise((resolve) => {// 取消按钮事件const cancelHandler = () => {resolve(false)}// 确定按钮事件const confirmHandler = () => {resolve(true)}// 关闭弹层事件const closeBox = () => {render(null, document.body)}// 1. 生成 vnodeconst vnode = h(confirmComponent, {content,iconType,type,cancelText,confirmText,cancelHandler,confirmHandler,closeBox,})// 2. render 渲染render(vnode, document.body)})
}export const msgBox = (content: string, payLoad?:PayLoadType) => {return to(hua5MsgBox(content, payLoad))
}

四、to函数

/*** @param { Promise } promise* @param { Object= } errorExt - Additional Information you can pass to the err object* @return { Promise }*/
export function to(promise: Promise<any>): Promise<any> {return promise.then(res => [null, res]).catch(error => [error, null])
}

这篇关于vue3封装命令式弹窗组件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1121845

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

如何在页面调用utility bar并传递参数至lwc组件

1.在app的utility item中添加lwc组件: 2.调用utility bar api的方式有两种: 方法一,通过lwc调用: import {LightningElement,api ,wire } from 'lwc';import { publish, MessageContext } from 'lightning/messageService';import Ca

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

Vue3项目开发——新闻发布管理系统(六)

文章目录 八、首页设计开发1、页面设计2、登录访问拦截实现3、用户基本信息显示①封装用户基本信息获取接口②用户基本信息存储③用户基本信息调用④用户基本信息动态渲染 4、退出功能实现①注册点击事件②添加退出功能③数据清理 5、代码下载 八、首页设计开发 登录成功后,系统就进入了首页。接下来,也就进行首页的开发了。 1、页面设计 系统页面主要分为三部分,左侧为系统的菜单栏,右侧

【VUE】跨域问题的概念,以及解决方法。

目录 1.跨域概念 2.解决方法 2.1 配置网络请求代理 2.2 使用@CrossOrigin 注解 2.3 通过配置文件实现跨域 2.4 添加 CorsWebFilter 来解决跨域问题 1.跨域概念 跨域问题是由于浏览器实施了同源策略,该策略要求请求的域名、协议和端口必须与提供资源的服务相同。如果不相同,则需要服务器显式地允许这种跨域请求。一般在springbo

HTML提交表单给python

python 代码 from flask import Flask, request, render_template, redirect, url_forapp = Flask(__name__)@app.route('/')def form():# 渲染表单页面return render_template('./index.html')@app.route('/submit_form',