123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { onKeyUp } from '@vueuse/core'
- import { useTemplateRef, nextTick, onMounted, computed } from 'vue'
- import { useRoute, useRouter } from 'vue-router'
- import { useTrapTab } from '#shared/composables/useTrapTab.ts'
- import stopEvent from '#shared/utils/events.ts'
- import { getFirstFocusableElement } from '#shared/utils/getFocusableElements.ts'
- import CommonButton from '#desktop/components/CommonButton/CommonButton.vue'
- import CommonOverlayContainer from '#desktop/components/CommonOverlayContainer/CommonOverlayContainer.vue'
- import CommonDialogActionFooter, {
- type Props as ActionFooterProps,
- } from './CommonDialogActionFooter.vue'
- import { closeDialog } from './useDialog.ts'
- export interface Props {
- name: string
- headerTitle?: string
- headerIcon?: string
- content?: string
- contentPlaceholder?: string[]
- hideFooter?: boolean
- /**
- * Inner wrapper for the dialog content.
- * */
- wrapperTag?: 'div' | 'article'
- footerActionOptions?: ActionFooterProps
- // Don't focus the first element inside a Dialog after being mounted
- // if nothing is focusable, will focus "Close" button when dismissable is active.
- noAutofocus?: boolean
- fullscreen?: boolean
- global?: boolean
- }
- const props = withDefaults(defineProps<Props>(), {
- wrapperTag: 'div',
- })
- defineOptions({
- inheritAttrs: false,
- })
- const emit = defineEmits<{
- close: [cancel?: boolean]
- }>()
- const { path } = useRoute()
- const router = useRouter()
- const isActive = computed(() =>
- props.fullscreen ? true : path === router.currentRoute.value.path,
- )
- const dialogElement = useTemplateRef<HTMLElement>('dialog')
- const footerElement = useTemplateRef('footer')
- const contentElement = useTemplateRef('content')
- const close = async (cancel?: boolean) => {
- emit('close', cancel)
- await closeDialog(props.name, props.global)
- }
- const dialogId = `dialog-${props.name}`
- onKeyUp('Escape', (e) => {
- stopEvent(e)
- close()
- })
- useTrapTab(dialogElement)
- onMounted(() => {
- if (props.noAutofocus) return
- // Will try to find focusable element inside dialog main and footer content.
- // If it won't find it, will try to find inside the header most likely will find "Close" button.
- const firstFocusable =
- getFirstFocusableElement(contentElement.value) ||
- getFirstFocusableElement(footerElement.value) ||
- getFirstFocusableElement(dialogElement.value)
- nextTick(() => {
- firstFocusable?.focus()
- firstFocusable?.scrollIntoView({ block: 'nearest' })
- })
- })
- // It is the same as flyout, but could be changed in the future?
- const transition = VITE_TEST_MODE
- ? undefined
- : {
- enterActiveClass: 'duration-300 ease-out',
- enterFromClass: 'opacity-0 rtl:-translate-x-3/4 ltr:translate-x-3/4',
- enterToClass: 'opacity-100 rtl:-translate-x-0 ltr:translate-x-0',
- leaveActiveClass: 'duration-200 ease-in',
- leaveFromClass: 'opacity-100 rtl:-translate-x-0 ltr:translate-x-0',
- leaveToClass: 'opacity-0 rtl:-translate-x-3/4 ltr:translate-x-3/4',
- }
- </script>
- <template>
- <!-- `display:none` to prevent showing up inactive dialog for cached instance -->
- <Transition :appear="isActive" v-bind="transition">
- <!-- We use teleport here to center it to target node and increase z index on fullscreen to avoid clicking collapse and resize buttons -->
- <Teleport :to="fullscreen ? '#app' : '#main-content'">
- <CommonOverlayContainer
- :id="dialogId"
- tag="div"
- disable-teleport
- class="absolute top-[50%] z-50 h-full w-full translate-y-[-50%] ltr:left-[50%] ltr:translate-x-[-50%] rtl:right-[50%] rtl:-translate-x-[-50%]"
- :class="{ 'z-40': fullscreen, hidden: !isActive }"
- role="dialog"
- backdrop-class="z-40"
- :show-backdrop="isActive"
- :fullscreen="fullscreen"
- :aria-labelledby="`${dialogId}-title`"
- @click-background="close()"
- >
- <component
- :is="wrapperTag"
- ref="dialog"
- data-common-dialog
- class="!absolute top-1/2 z-50 flex w-[500px] -translate-y-1/2 flex-col gap-3 rounded-xl border border-neutral-100 bg-neutral-50 p-3 ltr:left-1/2 ltr:-translate-x-1/2 rtl:right-1/2 rtl:translate-x-1/2 dark:border-gray-900 dark:bg-gray-500"
- >
- <div
- class="flex items-center justify-between bg-neutral-50 dark:bg-gray-500"
- >
- <slot name="header">
- <div
- class="flex items-center gap-2 text-xl leading-snug text-gray-100 dark:text-neutral-400"
- >
- <CommonIcon v-if="headerIcon" size="small" :name="headerIcon" />
- <h3 :id="`${dialogId}-title`">{{ $t(headerTitle) }}</h3>
- </div>
- </slot>
- <CommonButton
- class="ms-auto"
- variant="neutral"
- size="medium"
- icon="x-lg"
- :aria-label="$t('Close dialog')"
- @click="close()"
- />
- </div>
- <div ref="content" v-bind="$attrs" class="py-6 text-center">
- <slot>
- <CommonLabel size="large">{{
- $t(content, ...(contentPlaceholder || []))
- }}</CommonLabel>
- </slot>
- </div>
- <div v-if="$slots.footer || !hideFooter" ref="footer">
- <slot name="footer">
- <CommonDialogActionFooter
- v-bind="footerActionOptions"
- @cancel="close(true)"
- @action="close(false)"
- />
- </slot>
- </div>
- </component>
- </CommonOverlayContainer>
- </Teleport>
- </Transition>
- </template>
|