123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { computed } from 'vue'
- import { useApplicationStore } from '#shared/stores/application.ts'
- import { getInitials } from '#shared/utils/formatter.ts'
- import { i18n } from '#shared/i18n.ts'
- import {
- SYSTEM_USER_ID,
- SYSTEM_USER_INTERNAL_ID,
- } from '#shared/utils/constants.ts'
- import { getIdFromGraphQLId } from '#shared/graphql/utils.ts'
- import CommonAvatar from '../CommonAvatar/CommonAvatar.vue'
- import type { AvatarSize } from '../CommonAvatar/index.ts'
- import type { AvatarUser } from './types.ts'
- import logo from './assets/logo.svg'
- export interface Props {
- entity: AvatarUser
- size?: AvatarSize
- personal?: boolean
- decorative?: boolean
- }
- const props = defineProps<Props>()
- const initials = computed(() => {
- const { lastname, firstname, email } = props.entity
- return getInitials(firstname, lastname, email)
- })
- const colors = [
- 'bg-gray',
- 'bg-red-bright',
- 'bg-yellow',
- 'bg-blue',
- 'bg-green',
- 'bg-pink',
- 'bg-orange',
- ]
- const fullName = computed(() => {
- const { lastname, firstname } = props.entity
- return [firstname, lastname].filter(Boolean).join(' ')
- })
- const colorClass = computed(() => {
- const { id } = props.entity
- const internalId = getIdFromGraphQLId(id)
- if (internalId === SYSTEM_USER_INTERNAL_ID) return 'bg-white'
- // get color based on mod of the fullname length
- // so it stays consistent between different interfaces and logins
- return colors[internalId % (colors.length - 1)]
- })
- const sources = ['facebook', 'twitter']
- const icon = computed(() => {
- const { source } = props.entity
- if (source && sources.includes(source)) return source
- return null
- })
- const application = useApplicationStore()
- const image = computed(() => {
- if (icon.value) return null
- if (props.entity.id === SYSTEM_USER_ID) return logo
- if (!props.entity.image) return null
- // Support the inline data URI as an image source.
- if (props.entity.image.startsWith('data:')) return props.entity.image
- // we're using the REST api here to get the image and to also use the browser image cache
- // TODO: this should be re-evaluated when the desktop app is going to be implemented
- const apiUrl = String(application.config.api_path)
- return `${apiUrl}/users/image/${props.entity.image}`
- })
- const isVip = computed(() => {
- return !props.personal && props.entity.vip
- })
- const className = computed(() => {
- const classes = [colorClass.value]
- if (props.entity.outOfOffice) {
- classes.push('opacity-100 grayscale-[70%]')
- } else if (props.entity.active === false) {
- classes.push('opacity-20 grayscale')
- }
- return classes
- })
- const label = computed(() => {
- let label = i18n.t('Avatar')
- const name = fullName.value || props.entity.email
- if (name) label += ` (${name})`
- if (isVip.value) label += ` (${i18n.t('VIP')})`
- return label
- })
- </script>
- <template>
- <CommonAvatar
- :initials="initials"
- :size="size"
- :icon="icon"
- :class="className"
- :image="image"
- :vip-icon="isVip ? 'vip-user' : undefined"
- :decorative="decorative"
- :aria-label="label"
- />
- </template>
|