123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <info-tooltip class='avatar_icon' @hover='loadUser' :noEvents='user === null'>
- <template slot='content'>
- <template v-if='ajaxUser'>
- <div class='avatar_icon__header'>
- <div
- class='avatar_icon__icon avatar_icon__icon--small picture_circle'
- :style='{
- "background-color": user.color,
- "background-image": user.picture ? "url(" + user.picture + ")" : null,
- }'
- @click='goToUser'
- >
- {{userLetter}}
- </div>
- <div class='avatar_icon__header_info'>
- <span class='avatar_icon__username' @click.stop='goToUser'>{{ajaxUser.username}}</span>
- <span class='avatar_icon__date'>Created: {{ajaxUser.createdAt | formatDate('date') }}</span>
- </div>
- </div>
- <div class='avatar_icon__description' v-if='ajaxUser.description'>
- {{ajaxUser.description}}
- </div>
- </template>
- <template v-else>Loading...</template>
- </template>
- <div
- slot='display'
- class='avatar_icon__icon picture_circle'
- :class='{"avatar_icon__icon--small": size === "small"}'
- :style='{ "background-color": userColor, "background-image": userPicture, }'
- @click.stop='goToUser'
- >
- {{userLetter}}
- </div>
- </info-tooltip>
- </template>
- <script>
- import InfoTooltip from './InfoTooltip'
- import AjaxErrorHandler from '../assets/js/errorHandler'
- export default {
- name: 'AvatarIcon',
- props: ['user', 'size'],
- components: { InfoTooltip },
- data () {
- return {
- ajaxUser: null
- }
- },
- computed: {
- userLetter () {
- if(this.user) {
- if(this.userPicture) {
- return ''
- } else {
- return this.user.username[0].toUpperCase()
- }
- } else {
- return ''
- }
- },
- userColor () {
- if(this.user) {
- return this.user.color
- } else {
- return null
- }
- },
- userPicture () {
- if(this.user && this.user.picture) {
- return "url(" + this.user.picture + ")"
- } else {
- return null
- }
- }
- },
- methods: {
- loadUser () {
- if(this.ajaxUser || this.user === null) return
- this.axios
- .get('/api/v1/user/' + this.user.username)
- .then((res) => {
- this.ajaxUser = res.data
- })
- .catch(AjaxErrorHandler(this.$store))
- },
- goToUser () {
- if(this.user === null) return
- this.$router.push('/user/' + this.user.username)
- }
- }
- }
- </script>
- <style lang='scss'>
- @import '../assets/scss/variables.scss';
- .avatar_icon {
- @at-root #{&}__icon {
- font-size: 0.7rem;
- margin-right: 0.25rem;
- color: rgba(0, 0, 0, 0.87);
- }
- @at-root #{&}__header {
- display: flex;
- align-items: center;
- }
- @at-root #{&}__icon {
- height: 3rem;
- width: 3rem;
- line-height: 3rem;
- cursor: pointer;
- @include text($font--role-emphasis, 2rem)
- text-align: center;
- border-radius: 100%;
- background-color: $color__gray--darkest;
- color: #fff;
- @at-root #{&}--small {
- height: 2.5rem;
- width: 2.5rem;
- font-size: 1.75rem;
- line-height: 2.5rem;
- }
- }
- @at-root #{&}__header_info {
- display: flex;
- flex-direction: column;
- height: 2.5rem;
- }
- @at-root #{&}__username {
- cursor: pointer;
- }
- @at-root #{&}__date {
- color: $color__gray--darkest;
- font-size: 0.9rem;
- }
- @at-root #{&}__description {
- margin-top: 0.25rem;
- font-size: 0.9rem;
- }
- }
- </style>
|