mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-16 21:18:05 +01:00
124 lines
2.5 KiB
Vue
124 lines
2.5 KiB
Vue
<template>
|
|
<span :class="wrapperClass">
|
|
<img v-if="url && !error" :class="avatarClass" :src="url" :alt="alt" :onerror="() => onError()">
|
|
<span v-else-if="text || placeholder" :class="placeholderClass">{{ text || placeholder }}</span>
|
|
|
|
<span v-if="chip" :class="chipClass" />
|
|
<slot />
|
|
</span>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, computed, watch } from 'vue'
|
|
import { classNames } from '../../utils'
|
|
import $ui from '#build/ui'
|
|
|
|
const props = defineProps({
|
|
src: {
|
|
type: [String, Boolean],
|
|
default: null
|
|
},
|
|
alt: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
text: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: 'md',
|
|
validator (value: string) {
|
|
return Object.keys($ui.avatar.size).includes(value)
|
|
}
|
|
},
|
|
rounded: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
chip: {
|
|
type: String,
|
|
default: null,
|
|
validator (value: string) {
|
|
return Object.keys($ui.avatar.chip.variant).includes(value)
|
|
}
|
|
},
|
|
chipPosition: {
|
|
type: String,
|
|
default: 'top-right',
|
|
validator (value: string) {
|
|
return Object.keys($ui.avatar.chip.position).includes(value)
|
|
}
|
|
},
|
|
wrapperClass: {
|
|
type: String,
|
|
default: () => $ui.avatar.wrapper
|
|
},
|
|
backgroundClass: {
|
|
type: String,
|
|
default: () => $ui.avatar.background
|
|
},
|
|
placeholderClass: {
|
|
type: String,
|
|
default: () => $ui.avatar.placeholder
|
|
},
|
|
roundedClass: {
|
|
type: String,
|
|
default: () => $ui.avatar.rounded
|
|
}
|
|
})
|
|
|
|
const wrapperClass = computed(() => {
|
|
return classNames(
|
|
props.wrapperClass,
|
|
props.backgroundClass,
|
|
$ui.avatar.size[props.size],
|
|
props.rounded ? 'rounded-full' : props.roundedClass
|
|
)
|
|
})
|
|
|
|
const avatarClass = computed(() => {
|
|
return classNames(
|
|
$ui.avatar.size[props.size],
|
|
props.rounded ? 'rounded-full' : props.roundedClass
|
|
)
|
|
})
|
|
|
|
const chipClass = computed(() => {
|
|
return classNames(
|
|
$ui.avatar.chip.base,
|
|
$ui.avatar.chip.variant[props.chip],
|
|
$ui.avatar.chip.position[props.chipPosition],
|
|
$ui.avatar.chip.size[props.size]
|
|
)
|
|
})
|
|
|
|
const url = computed(() => {
|
|
if (typeof props.src === 'boolean') {
|
|
return null
|
|
}
|
|
return props.src
|
|
})
|
|
|
|
const placeholder = computed(() => {
|
|
return (props.alt || '').split(' ').map(word => word.charAt(0)).join('').substring(0, 2)
|
|
})
|
|
|
|
const error = ref(false)
|
|
|
|
watch(() => props.src, () => {
|
|
if (error.value) {
|
|
error.value = false
|
|
}
|
|
})
|
|
|
|
function onError () {
|
|
error.value = true
|
|
}
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default { name: 'UAvatar' }
|
|
</script>
|