mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
184 lines
5.1 KiB
Vue
184 lines
5.1 KiB
Vue
<template>
|
|
<div class="user" v-if="displayAnonymous">
|
|
<hc-avatar v-if="showAvatar" class="avatar" />
|
|
<div>
|
|
<b class="username">{{ $t('profile.userAnonym') }}</b>
|
|
</div>
|
|
</div>
|
|
<dropdown v-else :class="{ 'disabled-content': user.disabled }" placement="top-start" offset="0">
|
|
<template slot="default" slot-scope="{ openMenu, closeMenu, isOpen }">
|
|
<nuxt-link :to="userLink" :class="['user', isOpen && 'active']">
|
|
<div @mouseover="openMenu(true)" @mouseleave="closeMenu(true)">
|
|
<hc-avatar v-if="showAvatar" class="avatar" :user="user" />
|
|
<div>
|
|
<ds-text class="userinfo">
|
|
<b>{{ userSlug }}</b>
|
|
</ds-text>
|
|
</div>
|
|
<ds-text class="username" align="left" size="small" color="soft">
|
|
{{ userName | truncate(18) }}
|
|
<template v-if="dateTime">
|
|
<base-icon name="clock" />
|
|
<hc-relative-date-time :date-time="dateTime" />
|
|
<slot name="dateTime"></slot>
|
|
</template>
|
|
</ds-text>
|
|
</div>
|
|
</nuxt-link>
|
|
</template>
|
|
<template slot="popover">
|
|
<div style="min-width: 250px">
|
|
<hc-badges v-if="user.badges && user.badges.length" :badges="user.badges" />
|
|
<ds-text
|
|
v-if="user.location"
|
|
align="center"
|
|
color="soft"
|
|
size="small"
|
|
style="margin-top: 5px"
|
|
bold
|
|
>
|
|
<base-icon name="map-marker" />
|
|
{{ user.location.name }}
|
|
</ds-text>
|
|
<ds-flex style="margin-top: -10px">
|
|
<ds-flex-item class="ds-tab-nav-item">
|
|
<ds-space margin="small">
|
|
<ds-number
|
|
:count="user.followedByCount"
|
|
:label="$t('profile.followers')"
|
|
size="x-large"
|
|
/>
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
<ds-flex-item class="ds-tab-nav-item ds-tab-nav-item-active">
|
|
<ds-space margin="small">
|
|
<ds-number
|
|
:count="user.contributionsCount"
|
|
:label="$t('common.post', null, user.contributionsCount)"
|
|
/>
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
<ds-flex-item class="ds-tab-nav-item">
|
|
<ds-space margin="small">
|
|
<ds-number
|
|
:count="user.commentedCount"
|
|
:label="$t('common.comment', null, user.commentedCount)"
|
|
/>
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
<ds-flex v-if="!itsMe" gutter="x-small" style="margin-bottom: 0;">
|
|
<ds-flex-item>
|
|
<hc-follow-button
|
|
:follow-id="user.id"
|
|
:is-followed="user.followedByCurrentUser"
|
|
@optimistic="optimisticFollow"
|
|
@update="updateFollow"
|
|
/>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
<!--<ds-space margin-bottom="x-small" />-->
|
|
</div>
|
|
</template>
|
|
</dropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
|
|
import HcRelativeDateTime from '~/components/RelativeDateTime'
|
|
import HcFollowButton from '~/components/FollowButton'
|
|
import HcBadges from '~/components/Badges'
|
|
import HcAvatar from '~/components/Avatar/Avatar.vue'
|
|
import Dropdown from '~/components/Dropdown'
|
|
|
|
export default {
|
|
name: 'HcUser',
|
|
components: {
|
|
HcRelativeDateTime,
|
|
HcFollowButton,
|
|
HcAvatar,
|
|
HcBadges,
|
|
Dropdown,
|
|
},
|
|
props: {
|
|
user: { type: Object, default: null },
|
|
showAvatar: { type: Boolean, default: true },
|
|
trunc: { type: Number, default: 18 }, // "-1" is no trunc
|
|
dateTime: { type: [Date, String], default: null },
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
isModerator: 'auth/isModerator',
|
|
}),
|
|
itsMe() {
|
|
return this.user.slug === this.$store.getters['auth/user'].slug
|
|
},
|
|
displayAnonymous() {
|
|
const { user, isModerator } = this
|
|
return !user || user.deleted || (user.disabled && !isModerator)
|
|
},
|
|
userLink() {
|
|
const { id, slug } = this.user
|
|
if (!(id && slug)) return ''
|
|
return { name: 'profile-id-slug', params: { slug, id } }
|
|
},
|
|
userSlug() {
|
|
const { slug } = this.user || {}
|
|
return slug && `@${slug}`
|
|
},
|
|
userName() {
|
|
const { name } = this.user || {}
|
|
return name || this.$t('profile.userAnonym')
|
|
},
|
|
},
|
|
methods: {
|
|
optimisticFollow({ followedByCurrentUser }) {
|
|
const inc = followedByCurrentUser ? 1 : -1
|
|
this.user.followedByCurrentUser = followedByCurrentUser
|
|
this.user.followedByCount += inc
|
|
},
|
|
updateFollow({ followedByCurrentUser, followedByCount }) {
|
|
this.user.followedByCount = followedByCount
|
|
this.user.followedByCurrentUser = followedByCurrentUser
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.avatar {
|
|
float: left;
|
|
margin-right: 4px;
|
|
height: 100%;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.userinfo {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
> .ds-text {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: $space-xx-small;
|
|
}
|
|
}
|
|
|
|
.user {
|
|
white-space: nowrap;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:hover,
|
|
&.active {
|
|
z-index: 999;
|
|
}
|
|
}
|
|
|
|
.user-slug {
|
|
margin-bottom: $space-xx-small;
|
|
}
|
|
</style>
|