12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import { useRoute } from 'vue-router'
- import {
- closeOverlayContainer,
- getOpenedOverlayContainers,
- getOverlayContainerMeta,
- isOverlayContainerOpened,
- openOverlayContainer,
- useOverlayContainer,
- type OverlayContainerOptions,
- } from '#desktop/composables/useOverlayContainer.ts'
- import { getCurrentApp } from '#desktop/currentApp.ts'
- const OVERLAY_CONTAINER_TYPE = 'dialog'
- export const getOpenedDialogs = () =>
- getOpenedOverlayContainers(OVERLAY_CONTAINER_TYPE)
- export const isDialogOpened = (name?: string) =>
- isOverlayContainerOpened(OVERLAY_CONTAINER_TYPE, name)
- export const getDialogMeta = () => {
- const overlayContainerMeta = getOverlayContainerMeta(OVERLAY_CONTAINER_TYPE)
- return {
- dialogsOptions: overlayContainerMeta.options,
- openedDialogs: overlayContainerMeta.opened,
- }
- }
- export const openDialog = async (
- name: string,
- props: Record<string, unknown>,
- global: boolean = false,
- ) => {
- let currentName = name
- if (!global) {
- getCurrentApp().runWithContext(() => {
- const route = useRoute()
- currentName = `${name}_${route.path}`
- })
- }
- return openOverlayContainer(OVERLAY_CONTAINER_TYPE, currentName, props)
- }
- export const closeDialog = async (name: string, global: boolean = false) => {
- let currentName = name
- if (!global) {
- getCurrentApp().runWithContext(() => {
- const route = useRoute()
- currentName = `${name}_${route.path}`
- })
- }
- return closeOverlayContainer(OVERLAY_CONTAINER_TYPE, currentName)
- }
- export const useDialog = (options: OverlayContainerOptions) => {
- return useOverlayContainer(OVERLAY_CONTAINER_TYPE, options)
- }
|