vue3优雅的使用useDialog

在日常开发时,弹窗是一个经常使用的功能,而且重复性极高,你可能会遇到下面这些问题:

1、一个页面内多个弹窗, 要维护多套状态,看的眼花缭乱

2、弹窗内容比较简单,不想单独维护一套变量

关于这个问题, 我们首先想到的是一个即用即走的Dialog,不用去单独维护它的状态,我们使用Dialog({ xxx })这种形式去调用它,例如下面这种配置的方式:

js 复制代码
Dialog({
    title: 'xxx',
    render: () => xxx
})

其中render可以是一个html字符串,也可以是jsx(需要配置对jsx的支持),这样可以对内容区域实现充分的自定义。

通过配置项调用

各大主流的ui库基本都实现了这种调用方式:

之前没有注意到Element-plusMessageBox可以使用jsx,大部分场景下,用它来代替Dialog还是很方便的。
示例代码:

js 复制代码
<script lang="jsx" setup>
import { reactive, ref } from 'vue';
import { ElMessageBox, ElForm, ElFormItem, ElInput } from 'element-plus'

const formRef = ref(null)
const form = reactive({ height: '', width: '' })
const rules = reactive({
  height: {
    required: true,
    trigger: 'blur'
  },
  width: {
    required: true,
    trigger: 'blur'
  }
})

function openMessageBox() {
  ElMessageBox({
    title: 'Message',
    showCancelButton: true,
    // message如果不是函数形式 绑定ref会失败
    message: () =>
      <ElForm
        ref={formRef}
        model={form}
        rules={rules}
      >
        <ElFormItem label="height" prop="height">
          <ElInput v-model={form.height}></ElInput>
        </ElFormItem>
        <ElFormItem label="width" prop="width">
          <ElInput v-model={form.width}></ElInput>
        </ElFormItem>
      </ElForm>
    ,
    beforeClose: (action, instance, done) => {
      console.log(action, instance)
      formRef.value && formRef.value.validate(status => {
        console.log('校验状态: ', status)
        if (status || action==='cancel') done()
      })
    }
  })
}
</script>

<template>
  <div class="container">
    <button @click="openMessageBox">
      打开messagebox
    </button>
  </div>
</template>

效果如下:

vueuse的createTemplatePromise

如果你不想使用jsx,而是想使用模板,vuehooks工具库vueuse中提供了 createTemplatePromise 这个函数用来创建对话框、模态框、Toast 等,并且完全使用的是template的方式,因此自定义程度更高,并且没有任何额外成本(不需要jsx)。

下面是一个createTemplatePromise结合el-dialog的例子:

js 复制代码
<script lang="jsx" setup>
import { createTemplatePromise } from '@vueuse/core'
import { ElDialog, ElButton } from 'element-plus'

const TemplatePromise = createTemplatePromise()

async function open(idx) {
  console.log(idx, 'Before')
  const result = await TemplatePromise.start('Title', `Hello ${idx}`)
  console.log(idx, 'After', result)
}

function asyncFn() {
  return new Promise((resolve) => {
    setTimeout(() => {
      resolve('ok')
    }, 1000)
  })
}
</script>

<template>
  <div class="container">
    <button @click="open(1); open(2)">
      打开两个弹框
    </button>
  </div>
  <TemplatePromise v-slot="{ resolve, args, isResolving }">
    <el-dialog :modelValue="true" :title="args[0]">
      <div>Dialog {{ args[1] }}</div>
      <p>可以打开控制台查看logs</p>
      <div class="flex gap-2 justify-end">
        <el-button @click="resolve('cancel')">
          取消
        </el-button>
        <el-button type="primary" :disabled="isResolving" @click="resolve(asyncFn())">
          {{ isResolving ? 'loading...' : '确认' }}
        </el-button>
      </div>
    </el-dialog>
  </TemplatePromise>
</template>

效果如图:

Promise化Dialog的优点

这样有小伙伴可能会说, 这看起来和原来用dialog也没有很大区别啊, 也要写模版 + 函数方法. 那么让dialog变成这样有什么好处呢?

最大的好处是弹窗变得可编程了, 通过调用 Promise 的方式来控制UI, 不用再单独声明变量控制显隐, 也不用单独再去控制按钮的禁用loading等状态, 例如以上的例子中, 我们可以轻松的处理buttonloading状态(不用再额外声明变量), 我们让DialogUI和状态实现了內聚.

相关推荐
夕水32 分钟前
ew-vue-component:Vue 3 动态组件渲染解决方案的使用介绍
前端·vue.js
我麻烦大了35 分钟前
实现一个简单的Vue响应式
前端·vue.js
Java技术小馆1 小时前
GitDiagram如何让你的GitHub项目可视化
java·后端·面试
UGOTNOSHOT1 小时前
7.4项目一问题准备
面试
aklry1 小时前
uniapp三步完成一维码的生成
前端·vue.js
YaHuiLiang3 小时前
小微互联网公司与互联网创业公司 -- 学历之殇
前端·后端·面试
用户26124583401613 小时前
vue学习路线(11.watch对比computed)
前端·vue.js
阑梦清川4 小时前
Java后端项目前端基础Vue(二)
vue.js
雪碧聊技术4 小时前
深入解析Vue中v-model的双向绑定实现原理
前端·javascript·vue.js·v-model
爱学习的茄子6 小时前
深度解析JavaScript中的call方法实现:从原理到手写实现的完整指南
前端·javascript·面试