123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { watch, computed } from 'vue'
- import { useUserDetail } from '#shared/entities/user/composables/useUserDetail.ts'
- import { useApplicationStore } from '#shared/stores/application.ts'
- import {
- type TicketSidebarProps,
- type TicketSidebarEmits,
- TicketSidebarButtonBadgeType,
- TicketSidebarScreenType,
- type TicketSidebarButtonBadgeDetails,
- } from '#desktop/pages/ticket/types/sidebar.ts'
- import TicketSidebarWrapper from '../TicketSidebarWrapper.vue'
- import TicketSidebarCustomerContent from './TicketSidebarCustomerContent.vue'
- const props = defineProps<TicketSidebarProps>()
- const emit = defineEmits<TicketSidebarEmits>()
- const application = useApplicationStore()
- // TODO: only for now, implement correct situtation for create/detail view.
- const customerId = computed(() => Number(props.context.formValues.customer_id))
- const {
- user: customer,
- secondaryOrganizations,
- objectAttributes,
- loadAllSecondaryOrganizations,
- } = useUserDetail(customerId)
- const calculateBadgeType = (value: number) => {
- if (!application.config.ui_sidebar_open_ticket_indicator_colored)
- return TicketSidebarButtonBadgeType.Info
- if (props.context.screenType === TicketSidebarScreenType.TicketDetailView)
- value -= 1
- switch (value) {
- case 0:
- return TicketSidebarButtonBadgeType.Info
- case 1:
- return TicketSidebarButtonBadgeType.Warning
- case 2:
- default:
- return TicketSidebarButtonBadgeType.Danger
- }
- }
- const badge = computed<TicketSidebarButtonBadgeDetails | undefined>(() => {
- const label = __('Open tickets')
- const value = customer.value?.ticketsCount?.open
- if (!value) return
- const type = calculateBadgeType(Number(value))
- return { label, value, type }
- })
- // When customerId is present, show the sidebar (for unknown customers the check is
- // already inside the available sidebar plugin).
- watch(customerId, (newValue) => {
- if (!newValue) {
- emit('hide')
- return
- }
- emit('show')
- })
- // On initial setup we show the sidebar if customerId is present.
- if (customerId.value) {
- emit('show')
- }
- </script>
- <template>
- <TicketSidebarWrapper
- :key="sidebar"
- :sidebar="sidebar"
- :sidebar-plugin="sidebarPlugin"
- :selected="selected"
- :badge="badge"
- >
- <TicketSidebarCustomerContent
- v-if="customer"
- :context="context"
- :sidebar-plugin="sidebarPlugin"
- :customer="customer"
- :secondary-organizations="secondaryOrganizations"
- :object-attributes="objectAttributes"
- @load-more-secondary-organizations="loadAllSecondaryOrganizations"
- />
- </TicketSidebarWrapper>
- </template>
|