123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { computed } from 'vue'
- import type { TicketById } from '#shared/entities/ticket/types.ts'
- import { EnumTicketStateColorCode } from '#shared/graphql/types.ts'
- import CommonTicketStateIndicatorIcon from '#desktop/components/CommonTicketStateIndicatorIcon/CommonTicketStateIndicatorIcon.vue'
- interface Props {
- ticket?: Partial<TicketById> | null
- unauthorized?: boolean
- classes?: {
- indicator?: string
- label?: string
- }
- }
- const props = defineProps<Props>()
- const ticketId = computed(() => `ticket-${props.ticket?.internalId}`)
- const ticketState = computed(() => {
- return props.ticket?.state?.name || ''
- })
- const ticketColorCode = computed(() => {
- return props.ticket?.stateColorCode || EnumTicketStateColorCode.Open
- })
- </script>
- <template>
- <div v-if="unauthorized" class="flex grow items-center gap-2">
- <CommonIcon class="shrink-0 text-red-500" size="tiny" name="x-lg" />
- <CommonLabel class="text-black dark:text-white">{{
- $t('Access denied')
- }}</CommonLabel>
- </div>
- <CommonLink
- v-else
- class="flex grow items-start gap-2 break-words rounded-md hover:no-underline focus-visible:rounded-md focus-visible:outline-none group-hover/tab:bg-blue-600 group-hover/tab:dark:bg-blue-900"
- style="word-break: break-word"
- :link="`/tickets/${ticket?.internalId}`"
- internal
- >
- <CommonTicketStateIndicatorIcon
- class="-:mt-1 ms-0.5 shrink-0"
- :class="classes?.indicator || ''"
- :color-code="ticketColorCode"
- :label="ticketState"
- :aria-labelledby="ticketId"
- icon-size="tiny"
- />
- <CommonLabel
- :id="ticketId"
- class="-:mt-0.5 text-blue-800"
- :class="classes?.label"
- >
- {{ ticket?.title }}
- </CommonLabel>
- </CommonLink>
- </template>
|