2016-11-30 21:27:19 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2017-01-16 16:46:22 +00:00
|
|
|
<div class="base00-background panel-heading text-center" v-bind:style="style">
|
2016-11-30 21:27:19 +00: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>
|
2017-02-18 13:48:27 +00:00
|
|
|
<div v-if="isOtherUser" class="user-interactions">
|
2017-02-22 09:54:09 +00:00
|
|
|
<div v-if="user.follows_you && loggedIn" class="following base06">
|
2016-12-08 08:09:21 +00:00
|
|
|
Follows you!
|
|
|
|
</div>
|
2017-02-22 09:54:09 +00:00
|
|
|
<div class="follow" v-if="loggedIn">
|
2016-12-08 08:09:21 +00:00
|
|
|
<span v-if="user.following">
|
2017-02-18 13:48:27 +00:00
|
|
|
<!--Following them!-->
|
2017-02-22 09:54:09 +00:00
|
|
|
<button @click="unfollowUser" class="base06 base01-background">
|
2017-02-18 13:48:27 +00:00
|
|
|
Unfollow
|
2016-12-23 15:45:57 +00:00
|
|
|
</button>
|
2016-12-08 08:09:21 +00:00
|
|
|
</span>
|
2017-02-18 13:48:27 +00:00
|
|
|
<span v-if="!user.following">
|
2017-02-22 09:54:09 +00:00
|
|
|
<button @click="followUser" class="base01 base04-background">
|
2017-02-18 13:48:27 +00:00
|
|
|
Follow
|
2016-12-08 08:09:21 +00:00
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
2017-02-18 13:48:27 +00:00
|
|
|
<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 08:09:21 +00:00
|
|
|
</div>
|
2016-11-30 21:27:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-01-15 14:44:56 +00:00
|
|
|
<div class="panel-body base00-background">
|
2016-11-30 21:27:19 +00: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 08:09:21 +00:00
|
|
|
},
|
|
|
|
isOtherUser () {
|
|
|
|
return this.user !== this.$store.state.users.currentUser
|
2017-02-22 09:54:09 +00:00
|
|
|
},
|
|
|
|
loggedIn () {
|
|
|
|
return this.$store.state.users.currentUser
|
2016-12-08 08:09:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
followUser () {
|
2016-12-23 15:16:02 +00:00
|
|
|
const store = this.$store
|
|
|
|
store.state.api.backendInteractor.followUser(this.user.id)
|
|
|
|
.then((followedUser) => store.commit('addNewUsers', [followedUser]))
|
2016-12-23 15:45:57 +00:00
|
|
|
},
|
|
|
|
unfollowUser () {
|
|
|
|
const store = this.$store
|
|
|
|
store.state.api.backendInteractor.unfollowUser(this.user.id)
|
|
|
|
.then((unfollowedUser) => store.commit('addNewUsers', [unfollowedUser]))
|
2017-02-13 22:22:32 +00:00
|
|
|
},
|
|
|
|
toggleMute () {
|
|
|
|
const store = this.$store
|
|
|
|
store.commit('setMuted', {user: this.user, muted: !this.user.muted})
|
2017-02-20 17:01:45 +00:00
|
|
|
store.state.api.backendInteractor.setUserMute(this.user)
|
2016-11-30 21:27:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|