mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-19 06:21:46 +01:00
215 lines
5.1 KiB
Vue
215 lines
5.1 KiB
Vue
<script lang="ts">
|
|
import { tv } from 'tailwind-variants'
|
|
import type { DialogRootProps, DialogRootEmits, DialogContentProps } from 'radix-vue'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import _appConfig from '#build/app.config'
|
|
import theme from '#build/ui/slideover'
|
|
import type { ButtonProps } from '#ui/components/Button.vue'
|
|
|
|
const appConfig = _appConfig as AppConfig & { ui: { slideover: Partial<typeof theme> } }
|
|
|
|
const slideover = tv({ extend: tv(theme), ...(appConfig.ui?.slideover || {}) })
|
|
|
|
export interface SlideoverProps extends DialogRootProps {
|
|
title?: string
|
|
description?: string
|
|
content?: Omit<DialogContentProps, 'as' | 'asChild' | 'forceMount'>
|
|
overlay?: boolean
|
|
transition?: boolean
|
|
side?: 'left' | 'right' | 'top' | 'bottom'
|
|
preventClose?: boolean
|
|
portal?: boolean
|
|
close?: ButtonProps | null
|
|
class?: any
|
|
ui?: Partial<typeof slideover.slots>
|
|
}
|
|
|
|
export interface SlideoverEmits extends DialogRootEmits {}
|
|
|
|
export interface SlideoverSlots {
|
|
default(): any
|
|
content(): any
|
|
header(): any
|
|
title(): any
|
|
description(): any
|
|
close(): any
|
|
body(): any
|
|
footer(): any
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, toRef } from 'vue'
|
|
import { DialogRoot, DialogTrigger, DialogPortal, DialogOverlay, DialogContent, DialogTitle, DialogDescription, DialogClose, useForwardPropsEmits } from 'radix-vue'
|
|
import { reactivePick } from '@vueuse/core'
|
|
import { useAppConfig } from '#app'
|
|
import UButton from '#ui/components/Button.vue'
|
|
|
|
const props = withDefaults(defineProps<SlideoverProps>(), {
|
|
portal: true,
|
|
overlay: true,
|
|
transition: true,
|
|
side: 'right'
|
|
})
|
|
const emits = defineEmits<SlideoverEmits>()
|
|
defineSlots<SlideoverSlots>()
|
|
|
|
const rootProps = useForwardPropsEmits(reactivePick(props, 'open', 'defaultOpen', 'modal'), emits)
|
|
const contentProps = toRef(() => props.content)
|
|
const contentEvents = computed(() => {
|
|
if (props.preventClose) {
|
|
return {
|
|
'pointerDownOutside': (e: Event) => e.preventDefault(),
|
|
'interactOutside': (e: Event) => e.preventDefault()
|
|
}
|
|
}
|
|
|
|
return {}
|
|
})
|
|
|
|
const appConfig = useAppConfig()
|
|
|
|
const ui = computed(() => tv({ extend: slideover, slots: props.ui })({
|
|
transition: props.transition,
|
|
side: props.side
|
|
}))
|
|
</script>
|
|
|
|
<template>
|
|
<DialogRoot v-bind="rootProps">
|
|
<DialogTrigger v-if="$slots.default" as-child>
|
|
<slot />
|
|
</DialogTrigger>
|
|
|
|
<DialogPortal :disabled="!portal">
|
|
<DialogOverlay v-if="overlay" :class="ui.overlay()" />
|
|
|
|
<DialogContent :data-side="side" :class="ui.content({ class: props.class })" v-bind="contentProps" v-on="contentEvents">
|
|
<slot name="content">
|
|
<div :class="ui.header()">
|
|
<slot name="header">
|
|
<DialogTitle v-if="title || $slots.title" :class="ui.title()">
|
|
<slot name="title">
|
|
{{ title }}
|
|
</slot>
|
|
</DialogTitle>
|
|
|
|
<DialogDescription v-if="description || $slots.description" :class="ui.description()">
|
|
<slot name="description">
|
|
{{ description }}
|
|
</slot>
|
|
</DialogDescription>
|
|
|
|
<DialogClose as-child>
|
|
<slot name="close" :class="ui.close()">
|
|
<UButton
|
|
v-if="close !== null"
|
|
:icon="appConfig.ui.icons.close"
|
|
size="sm"
|
|
color="gray"
|
|
variant="ghost"
|
|
aria-label="Close"
|
|
v-bind="close"
|
|
:class="ui.close()"
|
|
/>
|
|
</slot>
|
|
</DialogClose>
|
|
</slot>
|
|
</div>
|
|
|
|
<div :class="ui.body()">
|
|
<slot name="body" />
|
|
</div>
|
|
|
|
<div v-if="$slots.footer" :class="ui.footer()">
|
|
<slot name="footer" />
|
|
</div>
|
|
</slot>
|
|
</DialogContent>
|
|
</DialogPortal>
|
|
</DialogRoot>
|
|
</template>
|
|
|
|
<style>
|
|
@keyframes slideover-overlay-open {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes slideover-overlay-closed {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
@keyframes slideover-content-right-open {
|
|
from {
|
|
transform: translateX(100%);
|
|
}
|
|
to {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
@keyframes slideover-content-right-closed {
|
|
from {
|
|
transform: translateX(0);
|
|
}
|
|
to {
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
@keyframes slideover-content-left-open {
|
|
from {
|
|
transform: translateX(-100%);
|
|
}
|
|
to {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
@keyframes slideover-content-left-closed {
|
|
from {
|
|
transform: translateX(0);
|
|
}
|
|
to {
|
|
transform: translateX(-100%);
|
|
}
|
|
}
|
|
@keyframes slideover-content-top-open {
|
|
from {
|
|
transform: translateY(-100%);
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
@keyframes slideover-content-top-closed {
|
|
from {
|
|
transform: translateY(0);
|
|
}
|
|
to {
|
|
transform: translateY(-100%);
|
|
}
|
|
}
|
|
@keyframes slideover-content-bottom-open {
|
|
from {
|
|
transform: translateY(100%);
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
@keyframes slideover-content-bottom-closed {
|
|
from {
|
|
transform: translateY(0);
|
|
}
|
|
to {
|
|
transform: translateY(100%);
|
|
}
|
|
}
|
|
</style>
|