summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components/avatar.vue
blob: a4648c272e154e9c1868859f1ead384a0a6b02e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<template>
	<router-link class="mk-avatar" :to="user | userPage" :title="user | acct" :target="target" :style="style" v-if="disablePreview"></router-link>
	<router-link class="mk-avatar" :to="user | userPage" :title="user | acct" :target="target" :style="style" v-else v-user-preview="user.id"></router-link>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	props: {
		user: {
			type: Object,
			required: true
		},
		target: {
			required: false,
			default: null
		},
		disablePreview: {
			required: false,
			default: false
		}
	},
	computed: {
		style(): any {
			return {
				backgroundColor: this.user.avatarColor ? `rgb(${ this.user.avatarColor.join(',') })` : null,
				backgroundImage: `url(${ this.user.avatarUrl }?thumbnail)`,
				borderRadius: (this as any).clientSettings.circleIcons ? '100%' : null
			};
		}
	}
});
</script>

<style lang="stylus" scoped>
.mk-avatar
	display inline-block
	vertical-align bottom
	background-size cover
	background-position center center
	transition border-radius 1s ease
</style>