mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
208 lines
6.9 KiB
Vue
208 lines
6.9 KiB
Vue
<script lang="ts">
|
|
import type { DialogRootProps, DialogRootEmits, DialogContentProps, DialogContentEmits } from 'reka-ui'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import theme from '#build/ui/slideover'
|
|
import type { ButtonProps } from '../types'
|
|
import type { EmitsToProps, ComponentConfig } from '../types/utils'
|
|
|
|
type Slideover = ComponentConfig<typeof theme, AppConfig, 'slideover'>
|
|
|
|
export interface SlideoverProps extends DialogRootProps {
|
|
title?: string
|
|
description?: string
|
|
/** The content of the slideover. */
|
|
content?: Omit<DialogContentProps, 'as' | 'asChild' | 'forceMount'> & Partial<EmitsToProps<DialogContentEmits>>
|
|
/**
|
|
* Render an overlay behind the slideover.
|
|
* @defaultValue true
|
|
*/
|
|
overlay?: boolean
|
|
/**
|
|
* Animate the slideover when opening or closing.
|
|
* @defaultValue true
|
|
*/
|
|
transition?: boolean
|
|
/**
|
|
* The side of the slideover.
|
|
* @defaultValue 'right'
|
|
*/
|
|
side?: Slideover['variants']['side']
|
|
/**
|
|
* Render the slideover in a portal.
|
|
* @defaultValue true
|
|
*/
|
|
portal?: boolean | string | HTMLElement
|
|
/**
|
|
* Display a close button to dismiss the slideover.
|
|
* `{ size: 'md', color: 'neutral', variant: 'ghost' }`{lang="ts-type"}
|
|
* @defaultValue true
|
|
*/
|
|
close?: boolean | Partial<ButtonProps>
|
|
/**
|
|
* The icon displayed in the close button.
|
|
* @defaultValue appConfig.ui.icons.close
|
|
* @IconifyIcon
|
|
*/
|
|
closeIcon?: string
|
|
/**
|
|
* When `false`, the slideover will not close when clicking outside or pressing escape.
|
|
* @defaultValue true
|
|
*/
|
|
dismissible?: boolean
|
|
class?: any
|
|
ui?: Slideover['slots']
|
|
}
|
|
|
|
export interface SlideoverEmits extends DialogRootEmits {
|
|
'after:leave': []
|
|
'after:enter': []
|
|
'close:prevent': []
|
|
}
|
|
|
|
export interface SlideoverSlots {
|
|
default(props: { open: boolean }): any
|
|
content(props: { close: () => void }): any
|
|
header(props: { close: () => void }): any
|
|
title(props?: {}): any
|
|
description(props?: {}): any
|
|
actions(props?: {}): any
|
|
close(props: { close: () => void, ui: { [K in keyof Required<Slideover['slots']>]: (props?: Record<string, any>) => string } }): any
|
|
body(props: { close: () => void }): any
|
|
footer(props: { close: () => void }): any
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, toRef } from 'vue'
|
|
import { DialogRoot, DialogTrigger, DialogPortal, DialogOverlay, DialogContent, DialogTitle, DialogDescription, DialogClose, VisuallyHidden, useForwardPropsEmits } from 'reka-ui'
|
|
import { reactivePick } from '@vueuse/core'
|
|
import { useAppConfig } from '#imports'
|
|
import { useLocale } from '../composables/useLocale'
|
|
import { usePortal } from '../composables/usePortal'
|
|
import { tv } from '../utils/tv'
|
|
import UButton from './Button.vue'
|
|
|
|
const props = withDefaults(defineProps<SlideoverProps>(), {
|
|
close: true,
|
|
portal: true,
|
|
overlay: true,
|
|
transition: true,
|
|
modal: true,
|
|
dismissible: true,
|
|
side: 'right'
|
|
})
|
|
const emits = defineEmits<SlideoverEmits>()
|
|
const slots = defineSlots<SlideoverSlots>()
|
|
|
|
const { t } = useLocale()
|
|
const appConfig = useAppConfig() as Slideover['AppConfig']
|
|
|
|
const rootProps = useForwardPropsEmits(reactivePick(props, 'open', 'defaultOpen', 'modal'), emits)
|
|
const portalProps = usePortal(toRef(() => props.portal))
|
|
const contentProps = toRef(() => props.content)
|
|
const contentEvents = computed(() => {
|
|
const defaultEvents = {
|
|
closeAutoFocus: (e: Event) => e.preventDefault()
|
|
}
|
|
|
|
if (!props.dismissible) {
|
|
const events = ['pointerDownOutside', 'interactOutside', 'escapeKeyDown']
|
|
|
|
return events.reduce((acc, curr) => {
|
|
acc[curr] = (e: Event) => {
|
|
e.preventDefault()
|
|
emits('close:prevent')
|
|
}
|
|
return acc
|
|
}, defaultEvents as Record<typeof events[number] | keyof typeof defaultEvents, (e: Event) => void>)
|
|
}
|
|
|
|
return defaultEvents
|
|
})
|
|
|
|
const ui = computed(() => tv({ extend: tv(theme), ...(appConfig.ui?.slideover || {}) })({
|
|
transition: props.transition,
|
|
side: props.side
|
|
}))
|
|
</script>
|
|
|
|
<!-- eslint-disable vue/no-template-shadow -->
|
|
<template>
|
|
<DialogRoot v-slot="{ open, close }" v-bind="rootProps">
|
|
<DialogTrigger v-if="!!slots.default" as-child :class="props.class">
|
|
<slot :open="open" />
|
|
</DialogTrigger>
|
|
|
|
<DialogPortal v-bind="portalProps">
|
|
<DialogOverlay v-if="overlay" :class="ui.overlay({ class: props.ui?.overlay })" />
|
|
|
|
<DialogContent
|
|
:data-side="side"
|
|
:class="ui.content({ class: [!slots.default && props.class, props.ui?.content] })"
|
|
v-bind="contentProps"
|
|
@after-enter="emits('after:enter')"
|
|
@after-leave="emits('after:leave')"
|
|
v-on="contentEvents"
|
|
>
|
|
<VisuallyHidden v-if="!!slots.content && ((title || !!slots.title) || (description || !!slots.description))">
|
|
<DialogTitle v-if="title || !!slots.title">
|
|
<slot name="title">
|
|
{{ title }}
|
|
</slot>
|
|
</DialogTitle>
|
|
|
|
<DialogDescription v-if="description || !!slots.description">
|
|
<slot name="description">
|
|
{{ description }}
|
|
</slot>
|
|
</DialogDescription>
|
|
</VisuallyHidden>
|
|
|
|
<slot name="content" :close="close">
|
|
<div v-if="!!slots.header || (title || !!slots.title) || (description || !!slots.description) || (props.close || !!slots.close)" :class="ui.header({ class: props.ui?.header })">
|
|
<slot name="header" :close="close">
|
|
<div :class="ui.wrapper({ class: props.ui?.wrapper })">
|
|
<DialogTitle v-if="title || !!slots.title" :class="ui.title({ class: props.ui?.title })">
|
|
<slot name="title">
|
|
{{ title }}
|
|
</slot>
|
|
</DialogTitle>
|
|
|
|
<DialogDescription v-if="description || !!slots.description" :class="ui.description({ class: props.ui?.description })">
|
|
<slot name="description">
|
|
{{ description }}
|
|
</slot>
|
|
</DialogDescription>
|
|
</div>
|
|
|
|
<slot name="actions" />
|
|
|
|
<DialogClose v-if="props.close || !!slots.close" as-child>
|
|
<slot name="close" :close="close" :ui="ui">
|
|
<UButton
|
|
v-if="props.close"
|
|
:icon="closeIcon || appConfig.ui.icons.close"
|
|
color="neutral"
|
|
variant="ghost"
|
|
:aria-label="t('slideover.close')"
|
|
v-bind="(typeof props.close === 'object' ? props.close as Partial<ButtonProps> : {})"
|
|
:class="ui.close({ class: props.ui?.close })"
|
|
/>
|
|
</slot>
|
|
</DialogClose>
|
|
</slot>
|
|
</div>
|
|
|
|
<div :class="ui.body({ class: props.ui?.body })">
|
|
<slot name="body" :close="close" />
|
|
</div>
|
|
|
|
<div v-if="!!slots.footer" :class="ui.footer({ class: props.ui?.footer })">
|
|
<slot name="footer" :close="close" />
|
|
</div>
|
|
</slot>
|
|
</DialogContent>
|
|
</DialogPortal>
|
|
</DialogRoot>
|
|
</template>
|