1234567891011121314151617181920212223 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import { computed, type Ref } from 'vue'
- import { type TicketById } from '#shared/entities/ticket/types.ts'
- import { getTicketChannelPlugin } from '../channel/plugins/index.ts'
- export const useTicketChannel = (ticket: Ref<TicketById | undefined>) => {
- const channelPlugin = getTicketChannelPlugin(ticket.value?.initialChannel)
- const channelAlert = computed(() => {
- if (!ticket.value) return null
- return channelPlugin?.channelAlert(ticket.value)
- })
- const hasChannelAlert = computed(
- () => Boolean(channelAlert.value) && Boolean(channelAlert.value?.text),
- )
- return { channelPlugin, channelAlert, hasChannelAlert }
- }
|