目的:通过vue实例调用$confirm函数弹出确认框。同时支持import导入函数使用
大致步骤:
-
实现组件基础结构和样式。
-
实现函数式调用组件方式和完成交互。
-
支持Promise的API,
new Promise((resolve,reject)=>{ })
resolve的触发由【确认】按钮决定,reject的触发由【取消】按钮决定 -
加上打开时动画效果。
-
给vue挂载原型函数$confirm。
落地代码
1.组件的基础结构和样式
src/components/library/confirm.vue
<template>
<div class="xtx-confirm" :class='{fade: isShow}'>
<div class="wrapper" :class='{fade: isShow}'>
<div class="header">
<h3>{{title}}</h3>
<a @click='cancelCallback' href="JavaScript:;" class="iconfont icon-close-new"></a>
</div>
<div class="body">
<i class="iconfont icon-warning"></i>
<span>{{text}}</span>
</div>
<div class="footer">
<!-- 全局UI组件都是自动化导入的,当使用全局组件时可能尚未被注册 -->
<ButtonUI @click='cancelCallback' size="mini" type="gray">取消</XtxButton>
<ButtonUI @click='confirmCallback' size="mini" type="primary">确认</XtxButton>
</div>
</div>
</div>
</template>
<script>
import { ref, onMounted } from 'vue'
// 当前组件不是在 APP 下渲染,无法使用 APP 下的环境
// ButtonUI 虽以进行全局自动导入,但在当前组件中,全局组件,全局属性无法使用,需手动导入
import ButtonUI from './button.vue'
export default {
name: 'XtxConfirm',
components: { XtxButton },
props: {
title: {
type: String,
default: ''
},
text: {
type: String,
default: ''
},
cancelCallback: {
type: Function
},
confirmCallback: {
type: Function
}
},
setup () {
// 控制动画效果:基于自定义类名,动态class添加动画,不是使用Vue的Tansition标签
const isShow = ref(false)
// 添加fade类之后才会有动画
onMounted(() => {
// 保证首次isShow是false的时候就渲染一次
// 组件渲染完成后,更改状态,实现动画效果
setTimeout(() => {
isShow.value = true
}, 10)
})
return { isShow }
}
}
</script>
<style scoped lang="less">
.xtx-confirm {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 8888;
background: rgba(0, 0, 0, 0);
&.fade {
transition: all 0.4s;
background: rgba(0, 0, 0, 0.5);
}
.wrapper {
width: 400px;
background: #fff;
border-radius: 4px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -60%);
opacity: 0;
&.fade {
transition: all 0.4s;
transform: translate(-50%, -50%);
opacity: 1;
}
.header,
.footer {
height: 50px;
line-height: 50px;
padding: 0 20px;
}
.body {
padding: 20px 40px;
font-size: 16px;
.icon-warning {
color: @priceColor;
margin-right: 3px;
font-size: 16px;
}
}
.footer {
text-align: right;
.xtx-button {
margin-left: 20px;
}
}
.header {
position: relative;
h3 {
font-weight: normal;
font-size: 18px;
}
a {
position: absolute;
right: 15px;
top: 15px;
font-size: 20px;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
color: #999;
&:hover {
color: #666;
}
}
}
}
}
</style>
2.函数式调用组件实现交互效果
定义函数 src/components/library/Confirm.js
// 封装一个通用的方法实现弹窗效果
import ConfirmUI from './confirm.vue'
import { createVNode, render } from 'vue'
// 动态生成目标容器用于填充组件
const container = document.createElement('div')
container.setAttribute('class', 'xtx-confirm-container')
document.body.appendChild(container)
export default ({ title, text }) => {
// 支持 Promise 的API,返回一个Promise对象
return new Promise((resolve, reject) => {
// resolve的触发由【确认】按钮决定
const confirmCallback = () => {
// 点击确定时弹窗要关闭
render(null, container)
resolve()
}
// reject的触发由【取消】按钮决定
const cancelCallback = () => {
render(null, container)
reject(new Error('cancel')) // 处理错误
}
// 1、基于组件生成一个虚拟节点VNode
const vnode = createVNode(ConfirmUI , { title, text, cancelCallback, confirmCallback })
// 2、把虚拟节点渲染到目标dom元素里
render(vnode, container)
})
}
3.在组件中以函数调用的形式使用询问弹框
// 导入函数
import Confirm from '@/components/library/Confirm.js
// 调用弹框
Confirm({
title: '确认框',
text: '确认要删除用户吗'
}).then(() => {
}).catch(() => {
})
4. 如果你想挂载全局的属性,能够通过组件实例调用的属性 this.$confirm 调用弹框
给vue挂载原型函数,实现:src/components/library/index.js
import Confirm from './Confirm.js'
export default {
// Vue2中,install方法的参数是Vue构造函数
// Vue3中,install方法的参数是app对象(Vue实例对象)
// install (Vue) {
install (app) {
// 批量自动化导入并配置全局组件
importFn.keys().forEach(cpath => {
// cpath表示单个vue组件文件的路径
// component其实就是加载成功的组件的选项
const component = importFn(cpath).default
// 定义全局组件
app.component(component.name, component)
})
// 向Vue的全局挂载了一个方法
+ app.config.globalProperties.$confirm = Confirm
// 如果组件内部可以使用this,那么可以通过this.$Confirm()调用
}
}