🚛 This package is now part of VueUse v10.
👉 Refer to https://vueuse.org/createTemplatePromise instead.
Legacy README
Template as Promise in Vue. Useful for constructing custom Dialogs, Modals, Toasts, etc.
<script setup lang="ts">
import { useTemplatePromise } from 'vue-template-promise'
const TemplatePromise = useTemplatePromise<ReturnType>()
async function open() {
const result = await TemplatePromise.start()
// button is clicked, result is 'ok'
}
</script>
<template>
<TemplatePromise v-slot="{ promise, resolve, reject, args }">
<!-- your UI -->
<button @click="resolve('ok')">OK</button>
</TemplatePromise>
</template>
- 👨💻 Programmatic - call your UI as a promise
- 🧩 Template - use Vue template to render, not a new DSL
- 🦾 TypeScript - full type safety via generic type
- ⚪️ Renderless - you take full control of the UI
- 🚀 Lightweight - only <400B gzipped
- 🎨 Transition - use support Vue transition
npm i vue-template-promise
useTemplatePromise
returns a Vue Component that you can directly use in your template with <script setup>
import { useTemplatePromise } from 'vue-template-promise'
const TemplatePromise = useTemplatePromise()
const MyPromise = useTemplatePromise<boolean>() // with generic type
In template, use v-slot
to access the promise and resolve functions.
<template>
<TemplatePromise v-slot="{ promise, resolve, reject, args }">
<!-- you can have anything -->
<button @click="resolve('ok')">OK</button>
</TemplatePromise>
<MyPromise v-slot="{ promise, resolve, reject, args }">
<!-- another one -->
</MyPromise>
</template>
The slot will not be rendered initially (similar to v-if="false"
), until you call the start
method from the component.
const result = await TemplatePromise.start()
Once resolve
or reject
is called in the template, the promise will be resolved or rejected, returning the value you passed in. Once resolved, the slot will be removed automatically.
You can pass arguments to the start
with arguments.
import { useTemplatePromise } from 'vue-template-promise'
const TemplatePromise = useTemplatePromise<boolean, [string, number]>()
const result = await TemplatePromise.start('hello', 123) // Pr
And in the template slot, you can access the arguments via args
property.
<template>
<TemplatePromise v-slot="{ args, resolve }">
<div>{{ args[0] }}</div> <!-- hello -->
<div>{{ args[1] }}</div> <!-- 123 -->
<button @click="resolve(true)">OK</button>
</TemplatePromise>
</template>
You can use transition to animate the slot.
<script setup lang="ts">
const TemplatePromise = useTemplatePromise<ReturnType>({
transition: {
name: 'fade',
appear: true,
},
})
</script>
<template>
<TemplatePromise v-slot="{ resolve }">
<!-- your UI -->
<button @click="resolve('ok')">OK</button>
</TemplatePromise>
</template>
<style scoped>
.fade-enter-active, .fade-leave-active {
transition: opacity .5s;
}
.fade-enter, .fade-leave-to {
opacity: 0;
}
</style>
Learn more about Vue Transition.
Thanks to @johnsoncodehk for making Volar and the help to make it type safe.
The common approach to call a dialog or a model programmatically would be like this:
const dialog = useDialog()
const result = await dialog.open({
title: 'Hello',
content: 'World',
})
This could work nicely by sending those infomation to top level component and let it render the dialog. However, it limits the flexibility you could express in the UI. For example, if you want the title to be red, if you want extra buttons, etc. You might end up with a lot of options like:
const result = await dialog.open({
title: 'Hello',
titleClass: 'text-red',
content: 'World',
contentClass: 'text-blue text-sm',
buttons: [
{ text: 'OK', class: 'bg-red', onClick: () => {} },
{ text: 'Cancel', class: 'bg-blue', onClick: () => {} },
],
// ...
})
Even this is not flexible enough. If you want more, you might end up with manual render function.
const result = await dialog.open({
title: 'Hello',
contentSlot: () => h(MyComponent, { content }),
})
This is like reinventing a new DSL in the script to express the UI template.
So this library is introduce to express the UI in Vue's template instead of the script, as where they are supposed to be, and being able to be called programmatically.
MIT License © 2022 Anthony Fu