123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { computed, useTemplateRef, toRef, watch } from 'vue'
- import { useTicketUpdatesSubscription } from '#shared/entities/ticket/graphql/subscriptions/ticketUpdates.api.ts'
- import { EnumTicketStateColorCode, type Ticket } from '#shared/graphql/types.ts'
- import SubscriptionHandler from '#shared/server/apollo/handler/SubscriptionHandler.ts'
- import { useSessionStore } from '#shared/stores/session.ts'
- import CommonTicketStateIndicatorIcon from '#desktop/components/CommonTicketStateIndicatorIcon/CommonTicketStateIndicatorIcon.vue'
- import CommonUpdateIndicator from '#desktop/components/CommonUpdateIndicator/CommonUpdateIndicator.vue'
- import { useUserCurrentTaskbarTabsStore } from '#desktop/entities/user/current/stores/taskbarTabs.ts'
- import { useTicketNumber } from '#desktop/pages/ticket/composables/useTicketNumber.ts'
- import type { UserTaskbarTabEntityProps } from '../types.ts'
- const props = defineProps<UserTaskbarTabEntityProps<Ticket>>()
- const { ticketNumberWithTicketHook } = useTicketNumber(
- toRef(props.taskbarTab, 'entity'),
- )
- const ticketUpdatesSubscription = new SubscriptionHandler(
- useTicketUpdatesSubscription({
- ticketId: props.taskbarTab.entity!.id,
- initial: true,
- }),
- )
- const ticketLink = useTemplateRef('ticket-link')
- const isTicketUpdated = computed(() => {
- if (ticketLink.value?.isExactActive) return false
- return props.taskbarTab.notify
- })
- const { updateTaskbarTab } = useUserCurrentTaskbarTabsStore()
- const updateNotifyFlag = (notify: boolean) => {
- if (!props.taskbarTab.taskbarTabId) return
- updateTaskbarTab(props.taskbarTab.taskbarTabId, {
- ...props.taskbarTab,
- notify,
- })
- }
- const { user } = useSessionStore()
- // Set the notify flag whenever the result is received from the subscription.
- ticketUpdatesSubscription.onSubscribed().then(() => {
- ticketUpdatesSubscription.onResult((result) => {
- if (
- !result.data?.ticketUpdates ||
- !props.taskbarTab.entity ||
- props.taskbarTab.notify
- )
- return
- const { ticket } = result.data.ticketUpdates
- // Skip setting the notify flag if:
- // - the ticket entity is in the same state
- // - the ticket was updated by the current user
- if (
- props.taskbarTab.entity.updatedAt === ticket?.updatedAt ||
- ticket?.updatedBy?.id === user?.id
- )
- return
- updateNotifyFlag(true)
- })
- })
- watch(
- () => ticketLink.value?.isExactActive,
- (isExactActive) => {
- if (!isExactActive) return
- // Reset the notify flag when the tab becomes active.
- if (props.taskbarTab.notify) updateNotifyFlag(false)
- // Scroll the tab into view when it becomes active.
- ticketLink.value?.$el?.scrollIntoView?.()
- },
- )
- const currentState = computed(() => {
- return props.taskbarTab.entity?.state?.name || ''
- })
- const currentTitle = computed(() => {
- return props.taskbarTab.entity?.title || ''
- })
- const currentStateColorCode = computed(() => {
- return (
- props.taskbarTab.entity?.stateColorCode || EnumTicketStateColorCode.Open
- )
- })
- const activeBackgroundColor = computed(() => {
- switch (currentStateColorCode.value) {
- case EnumTicketStateColorCode.Closed:
- return '!bg-green-400 text-white dark:text-white'
- case EnumTicketStateColorCode.Pending:
- return '!bg-stone-400 text-white dark:text-white'
- case EnumTicketStateColorCode.Escalating:
- return '!bg-red-300 text-white dark:text-white'
- case EnumTicketStateColorCode.Open:
- default:
- return '!bg-yellow-500 text-white dark:text-white'
- }
- })
- const currentViewTitle = computed(
- () => `${ticketNumberWithTicketHook.value} - ${currentTitle.value}`,
- )
- </script>
- <template>
- <CommonLink
- v-if="taskbarTabLink"
- ref="ticket-link"
- v-tooltip="currentViewTitle"
- class="flex grow gap-2 rounded-md px-2 py-3 hover:no-underline focus-visible:rounded-md focus-visible:outline-none group-hover/tab:bg-blue-600 group-hover/tab:dark:bg-blue-900"
- :link="taskbarTabLink"
- :exact-active-class="activeBackgroundColor"
- internal
- >
- <div class="relative">
- <CommonUpdateIndicator v-if="isTicketUpdated" />
- <CommonTicketStateIndicatorIcon
- class="group-focus-visible/link:text-white"
- :color-code="currentStateColorCode"
- :label="currentState"
- icon-size="small"
- />
- </div>
- <CommonLabel
- class="-:text-gray-300 -:dark:text-neutral-400 block truncate group-focus-visible/link:text-white group-hover/tab:dark:text-white"
- >
- {{ currentTitle }}
- </CommonLabel>
- </CommonLink>
- </template>
- <style scoped>
- a.router-link-active span {
- @apply text-white;
- }
- </style>
|