mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
187 lines
5.5 KiB
Vue
187 lines
5.5 KiB
Vue
<template>
|
|
<div>
|
|
<ds-card v-if="user && user.image">
|
|
<p>PROFILE IMAGE</p>
|
|
</ds-card>
|
|
<no-ssr>
|
|
<ds-space/>
|
|
<ds-flex
|
|
v-if="user"
|
|
:width="{ base: '100%' }"
|
|
gutter="base">
|
|
<ds-flex-item :width="{ base: '100%', sm: 2, md: 2, lg: 1 }">
|
|
<ds-card style="position: relative; height: auto;">
|
|
<ds-avatar
|
|
:image="user.avatar"
|
|
:name="user.name || 'Anonymus'"
|
|
class="profile-avatar"
|
|
size="120px" />
|
|
<h3 style="text-align: center;">{{ user.name }}</h3>
|
|
<ds-space/>
|
|
<ds-flex>
|
|
<ds-flex-item style="text-align: center;">
|
|
<ds-text
|
|
size="x-large"
|
|
style="margin-bottom: 0;">{{ user.followedByCount }}</ds-text>
|
|
<ds-text size="small">Fans</ds-text>
|
|
</ds-flex-item>
|
|
<ds-flex-item style="text-align: center;">
|
|
<ds-text
|
|
size="x-large"
|
|
style="margin-bottom: 0;">{{ user.friendsCount }}</ds-text>
|
|
<ds-text size="small">Freunde</ds-text>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
<ds-space
|
|
margin="small">
|
|
<hc-follow-button
|
|
:follow-id="user.id"
|
|
@update="fetchUser" />
|
|
</ds-space>
|
|
</ds-card>
|
|
<ds-space/>
|
|
<h2 style="text-align: center; margin-bottom: 10px;">Netzwerk</h2>
|
|
<ds-card style="position: relative; height: auto;">
|
|
<template v-if="user.following.length">
|
|
<ds-space
|
|
v-for="follow in user.following"
|
|
:key="follow.id"
|
|
margin="x-small">
|
|
<hc-related-user :post="follow" />
|
|
</ds-space>
|
|
</template>
|
|
<template v-else>
|
|
<p style="text-align: center; opacity: .5;">folgt niemandem</p>
|
|
</template>
|
|
</ds-card>
|
|
</ds-flex-item>
|
|
<ds-flex-item :width="{ base: '100%', sm: 3, md: 5, lg: 3 }">
|
|
<ds-flex
|
|
:width="{ base: '100%' }"
|
|
gutter="small">
|
|
<ds-flex-item>
|
|
<ds-card class="ds-tab-nav">
|
|
<ds-flex>
|
|
<ds-flex-item class="ds-tab-nav-item ds-tab-nav-item-active">
|
|
<ds-space margin="small">
|
|
<ds-text
|
|
size="x-large"
|
|
style="margin-bottom: 0; text-align: center">{{ user.contributionsCount }}</ds-text>
|
|
<ds-text
|
|
size="small"
|
|
style="text-align: center">Beiträge</ds-text>
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
<ds-flex-item class="ds-tab-nav-item">
|
|
<ds-space margin="small">
|
|
<ds-text
|
|
size="x-large"
|
|
style="margin-bottom: 0; text-align: center">{{ user.commentsCount }}</ds-text>
|
|
<ds-text
|
|
size="small"
|
|
style="text-align: center">Kommentiert</ds-text>
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
<ds-flex-item class="ds-tab-nav-item">
|
|
<ds-space margin="small">
|
|
<ds-text
|
|
size="x-large"
|
|
style="margin-bottom: 0; text-align: center">{{ user.shoutedCount }}</ds-text>
|
|
<ds-text
|
|
size="small"
|
|
style="text-align: center">Empfohlen</ds-text>
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
</ds-card>
|
|
</ds-flex-item>
|
|
<ds-flex-item
|
|
v-for="{ Post } in user.contributions"
|
|
:width="{ base: '100%', md: '100%', xl: '50%' }"
|
|
:key="Post.id">
|
|
<hc-post-card
|
|
:post="Post"
|
|
:show-author-popover="false" />
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
</no-ssr>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import HcRelatedUser from '~/components/RelatedUser.vue'
|
|
import HcPostCard from '~/components/PostCard.vue'
|
|
import HcFollowButton from '~/components/FollowButton.vue'
|
|
|
|
export default {
|
|
components: {
|
|
HcRelatedUser,
|
|
HcPostCard,
|
|
HcFollowButton
|
|
},
|
|
transition: {
|
|
name: 'slide-up',
|
|
mode: 'out-in'
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
User: []
|
|
}
|
|
},
|
|
computed: {
|
|
user() {
|
|
return this.User ? this.User[0] : {}
|
|
}
|
|
},
|
|
methods: {
|
|
fetchUser() {
|
|
// TODO: we should use subscriptions instead of fetching the whole user again
|
|
this.$apollo.queries.User.refetch()
|
|
}
|
|
},
|
|
apollo: {
|
|
User: {
|
|
query: require('~/graphql/UserProfileQuery.js').default,
|
|
variables() {
|
|
return {
|
|
slug: this.$route.params.slug
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'vue-cion-design-system/src/system/tokens/generated/tokens.scss';
|
|
|
|
.profile-avatar {
|
|
display: block;
|
|
margin: auto;
|
|
margin-top: -60px;
|
|
border: #fff 5px solid;
|
|
}
|
|
|
|
.ds-tab-nav {
|
|
.ds-card-content {
|
|
padding: 0 !important;
|
|
|
|
.ds-tab-nav-item {
|
|
&.ds-tab-nav-item-active {
|
|
border-bottom: 3px solid #17b53f;
|
|
&:first-child {
|
|
border-bottom-left-radius: $border-radius-large;
|
|
}
|
|
&:last-child {
|
|
border-bottom-right-radius: $border-radius-large;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|