pleroma-fe/src/components/user_card_content/user_card_content.vue

93 lines
3.0 KiB
Vue
Raw Normal View History

2016-11-30 22:27:19 +01:00
<template>
<div>
2017-01-16 17:46:22 +01:00
<div class="base00-background panel-heading text-center" v-bind:style="style">
2016-11-30 22:27:19 +01:00
<div class='user-info'>
<img :src="user.profile_image_url">
<span class="glyphicon glyphicon-user"></span>
<div class='user-name'>{{user.name}}</div>
<div class='user-screen-name'>@{{user.screen_name}}</div>
<div v-if="isOtherUser" class="user-interactions">
<div v-if="user.follows_you && loggedIn" class="following base06">
2016-12-08 09:09:21 +01:00
Follows you!
</div>
<div class="follow" v-if="loggedIn">
2016-12-08 09:09:21 +01:00
<span v-if="user.following">
<!--Following them!-->
<button @click="unfollowUser" class="base06 base01-background">
Unfollow
2016-12-23 16:45:57 +01:00
</button>
2016-12-08 09:09:21 +01:00
</span>
<span v-if="!user.following">
<button @click="followUser" class="base01 base04-background">
Follow
2016-12-08 09:09:21 +01:00
</button>
</span>
</div>
<div class='mute' v-if='isOtherUser'>
<span v-if='user.muted'>
<button @click="toggleMute" class="base04 base01-background base06-border">Unmute</button>
</span>
<span v-if='!user.muted'>
<button @click="toggleMute" class="base01 base04-background base01-border">Mute</button>
</span>
</div>
2016-12-08 09:09:21 +01:00
</div>
2016-11-30 22:27:19 +01:00
</div>
</div>
<div class="panel-body base00-background">
2016-11-30 22:27:19 +01:00
<div class="user-counts">
<div class="user-count">
<h5>Statuses</h5>
<span>{{user.statuses_count}}</span>
</div>
<div class="user-count">
<h5>Following</h5>
<span>{{user.friends_count}}</span>
</div>
<div class="user-count">
<h5>Followers</h5>
<span>{{user.followers_count}}</span>
</div>
</div>
<p>{{user.description}}</p>
</div>
</div>
</template>
<script>
export default {
props: [ 'user' ],
computed: {
style () {
return {
color: `#${this.user.profile_link_color}`,
'background-image': `url(${this.user.cover_photo})`
}
2016-12-08 09:09:21 +01:00
},
isOtherUser () {
return this.user !== this.$store.state.users.currentUser
},
loggedIn () {
return this.$store.state.users.currentUser
2016-12-08 09:09:21 +01:00
}
},
methods: {
followUser () {
const store = this.$store
store.state.api.backendInteractor.followUser(this.user.id)
.then((followedUser) => store.commit('addNewUsers', [followedUser]))
2016-12-23 16:45:57 +01:00
},
unfollowUser () {
const store = this.$store
store.state.api.backendInteractor.unfollowUser(this.user.id)
.then((unfollowedUser) => store.commit('addNewUsers', [unfollowedUser]))
2017-02-13 23:22:32 +01:00
},
toggleMute () {
const store = this.$store
store.commit('setMuted', {user: this.user, muted: !this.user.muted})
store.state.api.backendInteractor.setUserMute(this.user)
2016-11-30 22:27:19 +01:00
}
}
}
</script>