mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
123 lines
3.0 KiB
Vue
123 lines
3.0 KiB
Vue
<template>
|
|
<TransitionRoot :appear="appear" :show="isOpen" as="template">
|
|
<HDialog :class="ui.wrapper" v-bind="attrs" @close="(e) => !preventClose && close(e)">
|
|
<TransitionChild v-if="overlay" as="template" :appear="appear" v-bind="ui.overlay.transition">
|
|
<div :class="[ui.overlay.base, ui.overlay.background]" />
|
|
</TransitionChild>
|
|
|
|
<div :class="ui.inner">
|
|
<div :class="[ui.container, ui.padding]">
|
|
<TransitionChild as="template" :appear="appear" v-bind="transitionClass">
|
|
<HDialogPanel
|
|
:class="[
|
|
ui.base,
|
|
ui.background,
|
|
ui.ring,
|
|
ui.shadow,
|
|
fullscreen ? 'w-screen' : ui.width,
|
|
fullscreen ? 'h-screen' : ui.height,
|
|
fullscreen ? 'rounded-none' : ui.rounded,
|
|
fullscreen ? 'm-0' : ui.margin
|
|
]"
|
|
>
|
|
<slot />
|
|
</HDialogPanel>
|
|
</TransitionChild>
|
|
</div>
|
|
</div>
|
|
</HDialog>
|
|
</TransitionRoot>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from 'vue'
|
|
import type { PropType } from 'vue'
|
|
import { Dialog as HDialog, DialogPanel as HDialogPanel, TransitionRoot, TransitionChild } from '@headlessui/vue'
|
|
import { useUI } from '../../composables/useUI'
|
|
import { mergeConfig } from '../../utils'
|
|
import type { Strategy } from '../../types'
|
|
// @ts-expect-error
|
|
import appConfig from '#build/app.config'
|
|
import { modal } from '#ui/ui.config'
|
|
|
|
const config = mergeConfig<typeof modal>(appConfig.ui.strategy, appConfig.ui.modal, modal)
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
HDialog,
|
|
HDialogPanel,
|
|
TransitionRoot,
|
|
TransitionChild
|
|
},
|
|
inheritAttrs: false,
|
|
props: {
|
|
modelValue: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
appear: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
overlay: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
transition: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
preventClose: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
fullscreen: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
ui: {
|
|
type: Object as PropType<Partial<typeof config & { strategy?: Strategy }>>,
|
|
default: undefined
|
|
}
|
|
},
|
|
emits: ['update:modelValue', 'close'],
|
|
setup (props, { emit }) {
|
|
const { ui, attrs } = useUI('modal', props.ui, config, { mergeWrapper: true })
|
|
|
|
const isOpen = computed({
|
|
get () {
|
|
return props.modelValue
|
|
},
|
|
set (value) {
|
|
emit('update:modelValue', value)
|
|
}
|
|
})
|
|
|
|
const transitionClass = computed(() => {
|
|
if (!props.transition) {
|
|
return {}
|
|
}
|
|
|
|
return {
|
|
...ui.value.transition
|
|
}
|
|
})
|
|
|
|
function close (value: boolean) {
|
|
isOpen.value = value
|
|
|
|
emit('close')
|
|
}
|
|
|
|
return {
|
|
// eslint-disable-next-line vue/no-dupe-keys
|
|
ui,
|
|
attrs,
|
|
isOpen,
|
|
transitionClass,
|
|
close
|
|
}
|
|
}
|
|
})
|
|
</script>
|