1234567891011121314151617181920212223242526272829303132333435363738 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { computed } from 'vue'
- import type { TicketArticle } from '#shared/entities/ticket/types.ts'
- import CommonSectionMenuItem from '#mobile/components/CommonSectionMenu/CommonSectionMenuItem.vue'
- interface Props {
- address?: TicketArticle['from']
- label: string
- }
- const props = defineProps<Props>()
- const show = computed(() => {
- const { address } = props
- if (!address) return false
- return (address.raw && address.raw !== '- <>') || address.parsed?.length
- })
- </script>
- <template>
- <CommonSectionMenuItem v-if="address && show" :label="label">
- <div v-if="!address.parsed">{{ address.raw }}</div>
- <div
- v-for="(contact, idx) of address.parsed || []"
- :key="idx"
- data-test-id="metadataAddress"
- >
- <div>{{ contact.name }}</div>
- <div class="text-sm text-white/75">
- <{{ contact.emailAddress }}>
- </div>
- </div>
- </CommonSectionMenuItem>
- </template>
|