mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
122 lines
2.5 KiB
Vue
122 lines
2.5 KiB
Vue
<script setup>
|
|
import { computed, ref } from 'vue';
|
|
import { removeEmoji } from 'shared/helpers/emoji';
|
|
|
|
import FluentIcon from 'shared/components/FluentIcon/DashboardIcon.vue';
|
|
|
|
const props = defineProps({
|
|
author: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
name: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
src: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
size: {
|
|
type: Number,
|
|
default: 16,
|
|
},
|
|
showAuthorName: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
iconName: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
const hasImageLoaded = ref(false);
|
|
const imgError = ref(false);
|
|
|
|
const authorInitial = computed(() => {
|
|
if (!props.name) return '';
|
|
const name = removeEmoji(props.name);
|
|
const words = name.split(/\s+/);
|
|
|
|
if (words.length === 1) {
|
|
return name.substring(0, 2).toUpperCase();
|
|
}
|
|
|
|
return words
|
|
.slice(0, 2)
|
|
.map(word => word[0])
|
|
.join('')
|
|
.toUpperCase();
|
|
});
|
|
|
|
const fontSize = computed(() => {
|
|
return props.size / 2;
|
|
});
|
|
|
|
const iconSize = computed(() => {
|
|
return props.size / 2;
|
|
});
|
|
|
|
const shouldShowImage = computed(() => {
|
|
return props.src && !imgError.value;
|
|
});
|
|
|
|
const onImgError = () => {
|
|
imgError.value = true;
|
|
};
|
|
|
|
const onImgLoad = () => {
|
|
hasImageLoaded.value = true;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex items-center justify-center rounded-full bg-slate-100 dark:bg-slate-700/50"
|
|
:style="{ width: `${size}px`, height: `${size}px` }"
|
|
>
|
|
<div v-if="author">
|
|
<img
|
|
v-if="shouldShowImage"
|
|
:src="src"
|
|
:alt="name"
|
|
class="w-full h-full rounded-full"
|
|
@load="onImgLoad"
|
|
@error="onImgError"
|
|
/>
|
|
<template v-else>
|
|
<span
|
|
v-if="showAuthorName"
|
|
class="flex items-center justify-center font-medium text-slate-500 dark:text-slate-400"
|
|
:style="{ fontSize: `${fontSize}px` }"
|
|
>
|
|
{{ authorInitial }}
|
|
</span>
|
|
<div
|
|
v-else
|
|
class="flex items-center justify-center w-full h-full rounded-xl"
|
|
>
|
|
<FluentIcon
|
|
v-if="iconName"
|
|
:icon="iconName"
|
|
icon-lib="lucide"
|
|
:size="iconSize"
|
|
class="text-n-brand"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
<div
|
|
v-else
|
|
class="flex items-center justify-center w-4 h-4 rounded-full bg-slate-100 dark:bg-slate-700/50"
|
|
>
|
|
<FluentIcon
|
|
icon="person"
|
|
type="filled"
|
|
size="10"
|
|
class="text-woot-500 dark:text-woot-400"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|