Sharkey/src/client/app/common/views/components/avatar.vue

61 lines
1.7 KiB
Vue
Raw Normal View History

2018-04-29 11:17:15 +03:00
<template>
2018-08-09 18:51:40 +03:00
<span class="mk-avatar" :title="user | acct" :style="style" v-if="disableLink && !disablePreview" v-user-preview="user.id" @click="onClick"></span>
<span class="mk-avatar" :title="user | acct" :style="style" v-else-if="disableLink && disablePreview" @click="onClick"></span>
<router-link class="mk-avatar" :to="user | userPage" :title="user | acct" :target="target" :style="style" v-else-if="!disableLink && !disablePreview" v-user-preview="user.id"></router-link>
<router-link class="mk-avatar" :to="user | userPage" :title="user | acct" :target="target" :style="style" v-else-if="!disableLink && disablePreview"></router-link>
2018-04-29 11:17:15 +03:00
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: {
user: {
type: Object,
2018-04-29 11:17:15 +03:00
required: true
},
target: {
required: false,
default: null
},
2018-08-09 18:51:40 +03:00
disableLink: {
required: false,
default: false
},
2018-04-29 11:17:15 +03:00
disablePreview: {
required: false,
default: false
}
},
computed: {
2018-05-20 11:37:30 +03:00
lightmode(): boolean {
2018-05-20 20:13:39 +03:00
return this.$store.state.device.lightmode;
2018-05-20 11:37:30 +03:00
},
style(): any {
return {
2018-05-22 05:34:40 +03:00
backgroundColor: this.lightmode
? `rgb(${ this.user.avatarColor.slice(0, 3).join(',') })`
: this.user.avatarColor && this.user.avatarColor.length == 3
? `rgb(${ this.user.avatarColor.join(',') })`
: null,
2018-07-24 17:43:14 +03:00
backgroundImage: this.lightmode ? null : `url(${ this.user.avatarUrl })`,
2018-05-27 07:49:09 +03:00
borderRadius: this.$store.state.settings.circleIcons ? '100%' : null
};
}
2018-08-09 18:51:40 +03:00
},
methods: {
onClick(e) {
this.$emit('click', e);
}
2018-04-29 11:17:15 +03:00
}
});
</script>
<style lang="stylus" scoped>
.mk-avatar
2018-05-04 11:40:50 +03:00
display inline-block
2018-05-06 19:43:51 +03:00
vertical-align bottom
background-size cover
background-position center center
transition border-radius 1s ease
2018-04-29 11:17:15 +03:00
</style>