88 lines
1.7 KiB
Vue
88 lines
1.7 KiB
Vue
<template>
|
|
<div :class="containerClass">
|
|
<slot>
|
|
<span class="p-avatar-text" v-if="label">{{label}}</span>
|
|
<span :class="iconClass" v-else-if="icon"></span>
|
|
<img :src="image" v-else-if="image" @error="onError">
|
|
</slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Avatar',
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
image: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: 'normal'
|
|
},
|
|
shape: {
|
|
type: String,
|
|
default: "square"
|
|
}
|
|
},
|
|
methods: {
|
|
onError() {
|
|
this.$emit('error');
|
|
}
|
|
},
|
|
computed: {
|
|
containerClass() {
|
|
return ['p-avatar p-component', {
|
|
'p-avatar-image': this.image != null,
|
|
'p-avatar-circle': this.shape === 'circle',
|
|
'p-avatar-lg': this.size === 'large',
|
|
'p-avatar-xl': this.size === 'xlarge'
|
|
}];
|
|
},
|
|
iconClass() {
|
|
return ['p-avatar-icon', this.icon];
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.p-avatar {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.p-avatar.p-avatar-image {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.p-avatar.p-avatar-circle {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.p-avatar-circle img {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.p-avatar .p-avatar-icon {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.p-avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|