mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
167 lines
4.0 KiB
Vue
167 lines
4.0 KiB
Vue
<template>
|
|
<span :class="wrapperClass">
|
|
<img
|
|
v-if="url && !error"
|
|
:class="imgClass"
|
|
:alt="alt"
|
|
:src="url"
|
|
v-bind="attrs"
|
|
@error="onError"
|
|
>
|
|
<span v-else-if="text" :class="ui.text">{{ text }}</span>
|
|
<UIcon v-else-if="icon" :name="icon" :class="iconClass" />
|
|
<span v-else-if="placeholder" :class="ui.placeholder">{{ placeholder }}</span>
|
|
|
|
<span v-if="chipColor" :class="chipClass">
|
|
{{ chipText }}
|
|
</span>
|
|
<slot />
|
|
</span>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, ref, computed, watch } from 'vue'
|
|
import type { PropType } from 'vue'
|
|
import { twMerge, twJoin } from 'tailwind-merge'
|
|
import UIcon from '../elements/Icon.vue'
|
|
import { useUI } from '../../composables/useUI'
|
|
import { mergeConfig } from '../../utils'
|
|
import type { AvatarSize, AvatarChipColor, AvatarChipPosition, Strategy } from '../../types'
|
|
// @ts-expect-error
|
|
import appConfig from '#build/app.config'
|
|
import { avatar } from '#ui/ui.config'
|
|
|
|
const config = mergeConfig<typeof avatar>(appConfig.ui.strategy, appConfig.ui.avatar, avatar)
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
UIcon
|
|
},
|
|
inheritAttrs: false,
|
|
props: {
|
|
src: {
|
|
type: [String, Boolean],
|
|
default: null
|
|
},
|
|
alt: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
text: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: () => config.default.icon
|
|
},
|
|
size: {
|
|
type: String as PropType<AvatarSize>,
|
|
default: () => config.default.size,
|
|
validator (value: string) {
|
|
return Object.keys(config.size).includes(value)
|
|
}
|
|
},
|
|
chipColor: {
|
|
type: String as PropType<AvatarChipColor>,
|
|
default: () => config.default.chipColor,
|
|
validator (value: string) {
|
|
return ['gray', ...appConfig.ui.colors].includes(value)
|
|
}
|
|
},
|
|
chipPosition: {
|
|
type: String as PropType<AvatarChipPosition>,
|
|
default: () => config.default.chipPosition,
|
|
validator (value: string) {
|
|
return Object.keys(config.chip.position).includes(value)
|
|
}
|
|
},
|
|
chipText: {
|
|
type: [String, Number],
|
|
default: null
|
|
},
|
|
imgClass: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
ui: {
|
|
type: Object as PropType<Partial<typeof config & { strategy?: Strategy }>>,
|
|
default: undefined
|
|
}
|
|
},
|
|
setup (props) {
|
|
const { ui, attrs, attrsClass } = useUI('avatar', props.ui, config)
|
|
|
|
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 wrapperClass = computed(() => {
|
|
return twMerge(twJoin(
|
|
ui.value.wrapper,
|
|
(error.value || !url.value) && ui.value.background,
|
|
ui.value.rounded,
|
|
ui.value.size[props.size]
|
|
), attrsClass)
|
|
})
|
|
|
|
const imgClass = computed(() => {
|
|
return twMerge(twJoin(
|
|
ui.value.rounded,
|
|
ui.value.size[props.size]
|
|
), props.imgClass)
|
|
})
|
|
|
|
const iconClass = computed(() => {
|
|
return twJoin(
|
|
ui.value.icon.base,
|
|
ui.value.icon.size[props.size]
|
|
)
|
|
})
|
|
|
|
const chipClass = computed(() => {
|
|
return twJoin(
|
|
ui.value.chip.base,
|
|
ui.value.chip.size[props.size],
|
|
ui.value.chip.position[props.chipPosition],
|
|
ui.value.chip.background.replaceAll('{color}', props.chipColor)
|
|
)
|
|
})
|
|
|
|
const error = ref(false)
|
|
|
|
watch(() => props.src, () => {
|
|
if (error.value) {
|
|
error.value = false
|
|
}
|
|
})
|
|
|
|
function onError () {
|
|
error.value = true
|
|
}
|
|
|
|
return {
|
|
// eslint-disable-next-line vue/no-dupe-keys
|
|
ui,
|
|
attrs,
|
|
wrapperClass,
|
|
// eslint-disable-next-line vue/no-dupe-keys
|
|
imgClass,
|
|
iconClass,
|
|
chipClass,
|
|
url,
|
|
placeholder,
|
|
error,
|
|
onError
|
|
}
|
|
}
|
|
})
|
|
</script>
|