2016-11-30 21:27:19 +00:00
|
|
|
<template>
|
2017-02-22 22:24:37 +00:00
|
|
|
<div id="heading" class="profile-panel-background" :style="headingStyle">
|
2017-02-22 21:08:14 +00:00
|
|
|
<div class="panel-heading text-center">
|
2016-11-30 21:27:19 +00:00
|
|
|
<div class='user-info'>
|
2017-08-25 11:59:55 +00:00
|
|
|
<router-link to='/user-settings' style="float: right; margin-top:16px;" v-if="!isOtherUser">
|
2017-08-02 19:09:40 +00:00
|
|
|
<i class="icon-cog usersettings"></i>
|
|
|
|
</router-link>
|
2017-02-22 21:08:14 +00:00
|
|
|
<div class='container'>
|
2017-08-21 20:14:05 +00:00
|
|
|
<router-link :to="{ name: 'user-profile', params: { id: user.id } }">
|
|
|
|
<img :src="user.profile_image_url_original">
|
|
|
|
</router-link>
|
2017-02-22 21:08:14 +00:00
|
|
|
<span class="glyphicon glyphicon-user"></span>
|
2017-06-23 14:43:34 +00:00
|
|
|
<div class="name-and-screen-name">
|
|
|
|
<div class='user-name'>{{user.name}}</div>
|
2017-08-21 20:14:05 +00:00
|
|
|
<router-link :to="{ name: 'user-profile', params: { id: user.id } }">
|
|
|
|
<div class='user-screen-name'>@{{user.screen_name}}</div>
|
|
|
|
</router-link>
|
2017-06-23 14:43:34 +00:00
|
|
|
</div>
|
2017-02-22 21:08:14 +00:00
|
|
|
</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">
|
2017-11-07 14:14:37 +00:00
|
|
|
{{ $t('user_card.follows_you') }}
|
2016-12-08 08:09:21 +00:00
|
|
|
</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-24 17:12:57 +00:00
|
|
|
<button @click="unfollowUser" class="base04 base00-background pressed">
|
2017-11-07 14:14:37 +00:00
|
|
|
{{ $t('user_card.following') }}
|
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-24 17:12:57 +00:00
|
|
|
<button @click="followUser" class="base05 base02-background">
|
2017-11-07 14:14:37 +00:00
|
|
|
{{ $t('user_card.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'>
|
2017-11-07 14:14:37 +00:00
|
|
|
<button @click="toggleMute" class="base04 base00-background pressed">
|
|
|
|
{{ $t('user_card.muted') }}
|
|
|
|
</button>
|
2017-02-18 13:48:27 +00:00
|
|
|
</span>
|
|
|
|
<span v-if='!user.muted'>
|
2017-11-07 14:14:37 +00:00
|
|
|
<button @click="toggleMute" class="base05 base02-background">
|
|
|
|
{{ $t('user_card.mute') }}
|
|
|
|
</button>
|
2017-02-18 13:48:27 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2017-11-07 20:38:28 +00:00
|
|
|
<div class='block' v-if='isOtherUser'>
|
|
|
|
<span v-if='user.statusnet_blocking'>
|
|
|
|
<button @click="unblockUser" class="base04 base00-background pressed">
|
|
|
|
{{ $t('user_card.blocked') }}
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
<span v-if='!user.statusnet_blocking'>
|
|
|
|
<button @click="blockUser" class="base05 base02-background">
|
|
|
|
{{ $t('user_card.block') }}
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
2016-12-08 08:09:21 +00:00
|
|
|
</div>
|
2016-11-30 21:27:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-22 21:08:14 +00:00
|
|
|
<div class="panel-body profile-panel-body" :style="bodyStyle">
|
2016-11-30 21:27:19 +00:00
|
|
|
<div class="user-counts">
|
2017-08-27 10:10:25 +00:00
|
|
|
<div class="user-count">
|
2017-11-07 14:14:37 +00:00
|
|
|
<a href="#" v-on:click.prevent="setProfileView('statuses')" v-if="switcher"><h5 class="base05">{{ $t('user_card.statuses') }}</h5></a>
|
|
|
|
<h5 v-else>{{ $t('user_card.statuses') }}</h5>
|
|
|
|
<span class="base05">{{user.statuses_count}} <br><span class="dailyAvg">{{dailyAvg}} {{ $t('user_card.per_day') }}</span></span>
|
2016-11-30 21:27:19 +00:00
|
|
|
</div>
|
|
|
|
<div class="user-count">
|
2017-11-07 14:14:37 +00:00
|
|
|
<a href="#" v-on:click.prevent="setProfileView('friends')" v-if="switcher"><h5 class="base05">{{ $t('user_card.followees') }}</h5></a>
|
|
|
|
<h5 v-else>{{ $t('user_card.followees') }}</h5>
|
2017-08-21 17:25:01 +00:00
|
|
|
<span class="base05">{{user.friends_count}}</span>
|
2016-11-30 21:27:19 +00:00
|
|
|
</div>
|
|
|
|
<div class="user-count">
|
2017-11-07 14:14:37 +00:00
|
|
|
<a href="#" v-on:click.prevent="setProfileView('followers')" v-if="switcher"><h5 class="base05">{{ $t('user_card.followers') }}</h5></a>
|
|
|
|
<h5 v-else>{{ $t('user_card.followers') }}</h5>
|
2017-08-21 17:25:01 +00:00
|
|
|
<span class="base05">{{user.followers_count}}</span>
|
2016-11-30 21:27:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p>{{user.description}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2017-08-21 17:25:01 +00:00
|
|
|
props: [ 'user', 'switcher' ],
|
2016-11-30 21:27:19 +00:00
|
|
|
computed: {
|
2017-02-22 21:08:14 +00:00
|
|
|
headingStyle () {
|
2017-06-12 13:59:54 +00:00
|
|
|
let color = this.$store.state.config.colors['base00']
|
|
|
|
if (color) {
|
|
|
|
let rgb = this.$store.state.config.colors['base00'].match(/\d+/g)
|
|
|
|
return {
|
|
|
|
backgroundColor: `rgb(${Math.floor(rgb[0] * 0.53)}, ${Math.floor(rgb[1] * 0.56)}, ${Math.floor(rgb[2] * 0.59)})`,
|
|
|
|
backgroundImage: `url(${this.user.cover_photo})`
|
|
|
|
}
|
2016-11-30 21:27:19 +00:00
|
|
|
}
|
2016-12-08 08:09:21 +00:00
|
|
|
},
|
2017-02-22 21:08:14 +00:00
|
|
|
bodyStyle () {
|
|
|
|
return {
|
2017-02-25 12:34:05 +00:00
|
|
|
background: `linear-gradient(to bottom, rgba(0, 0, 0, 0), ${this.$store.state.config.colors['base00']} 80%)`
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
},
|
2016-12-08 08:09:21 +00:00
|
|
|
isOtherUser () {
|
2017-11-08 17:32:11 +00:00
|
|
|
return this.user.id !== this.$store.state.users.currentUser.id
|
2017-02-22 09:54:09 +00:00
|
|
|
},
|
|
|
|
loggedIn () {
|
|
|
|
return this.$store.state.users.currentUser
|
2017-03-10 20:37:13 +00:00
|
|
|
},
|
|
|
|
dailyAvg () {
|
2017-04-11 09:47:19 +00:00
|
|
|
const days = Math.ceil((new Date() - new Date(this.user.created_at)) / (60 * 60 * 24 * 1000))
|
|
|
|
return Math.round(this.user.statuses_count / days)
|
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
|
|
|
},
|
2017-11-07 20:38:28 +00:00
|
|
|
blockUser () {
|
|
|
|
const store = this.$store
|
|
|
|
store.state.api.backendInteractor.blockUser(this.user.id)
|
|
|
|
.then((blockedUser) => store.commit('addNewUsers', [blockedUser]))
|
|
|
|
},
|
|
|
|
unblockUser () {
|
|
|
|
const store = this.$store
|
|
|
|
store.state.api.backendInteractor.unblockUser(this.user.id)
|
|
|
|
.then((unblockedUser) => store.commit('addNewUsers', [unblockedUser]))
|
|
|
|
},
|
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)
|
2017-08-21 17:25:01 +00:00
|
|
|
},
|
|
|
|
setProfileView (v) {
|
|
|
|
const store = this.$store
|
|
|
|
store.commit('setProfileView', { v })
|
2016-11-30 21:27:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2017-02-22 21:08:14 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2017-08-21 17:25:01 +00:00
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
2017-02-22 21:08:14 +00:00
|
|
|
.profile-panel-background {
|
|
|
|
background-size: cover;
|
2017-02-24 15:32:41 +00:00
|
|
|
border-radius: 10px;
|
2017-02-26 20:36:54 +00:00
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
padding: 0.6em 0em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.profile-panel-body {
|
|
|
|
top: -0em;
|
|
|
|
padding-top: 4em;
|
2017-07-27 13:54:34 +00:00
|
|
|
|
|
|
|
word-wrap: break-word;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-info {
|
|
|
|
color: white;
|
2017-08-22 09:38:12 +00:00
|
|
|
padding: 0 16px 16px 16px;
|
2017-02-22 21:08:14 +00:00
|
|
|
margin-bottom: -4em;
|
|
|
|
|
2017-08-02 19:09:40 +00:00
|
|
|
.usersettings {
|
|
|
|
color: white;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
2017-02-22 21:08:14 +00:00
|
|
|
.container{
|
2017-08-22 09:38:12 +00:00
|
|
|
padding: 16px 10px 4px 10px;
|
2017-02-22 21:08:14 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-direction: column;
|
|
|
|
align-content: flex-start;
|
|
|
|
justify-content: center;
|
2017-08-22 09:38:12 +00:00
|
|
|
max-height: 56px;
|
2017-06-23 14:43:34 +00:00
|
|
|
overflow: hidden;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2017-06-23 14:43:34 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
flex: 1 0 100%;
|
2017-08-22 09:38:12 +00:00
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
|
|
|
box-shadow: 0px 1px 8px rgba(0,0,0,0.75);
|
2017-06-23 14:43:34 +00:00
|
|
|
object-fit: cover;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
2017-02-22 22:24:37 +00:00
|
|
|
text-shadow: 0px 1px 1.5px rgba(0, 0, 0, 1.0);
|
2017-02-22 21:08:14 +00:00
|
|
|
|
2017-06-23 14:43:34 +00:00
|
|
|
.name-and-screen-name {
|
|
|
|
display: block;
|
2017-02-22 21:08:14 +00:00
|
|
|
margin-left: 0.6em;
|
2017-06-23 14:43:34 +00:00
|
|
|
text-align: left;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-name{
|
2017-08-22 09:38:12 +00:00
|
|
|
color: white;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-screen-name {
|
2017-08-22 09:38:12 +00:00
|
|
|
color: white;
|
2017-02-22 21:08:14 +00:00
|
|
|
font-weight: lighter;
|
|
|
|
font-size: 15px;
|
|
|
|
padding-right: 0.1em;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2017-02-22 22:24:37 +00:00
|
|
|
|
2017-02-22 21:08:14 +00:00
|
|
|
.user-interactions {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2017-02-22 22:24:37 +00:00
|
|
|
justify-content: space-between;
|
2017-02-22 21:08:14 +00:00
|
|
|
|
|
|
|
div {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2017-02-22 22:24:37 +00:00
|
|
|
margin-top: 0.7em;
|
|
|
|
margin-bottom: -1.0em;
|
2017-02-22 21:08:14 +00:00
|
|
|
|
|
|
|
.following {
|
2017-02-22 22:24:37 +00:00
|
|
|
color: white;
|
2017-02-22 21:08:14 +00:00
|
|
|
font-size: 14px;
|
|
|
|
flex: 0 0 100%;
|
2017-02-22 22:24:37 +00:00
|
|
|
margin: -0.7em 0.0em 0.3em 0.0em;
|
|
|
|
padding-left: 16px;
|
|
|
|
text-align: left;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mute {
|
2017-02-22 22:24:37 +00:00
|
|
|
max-width: 220px;
|
|
|
|
min-height: 28px;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.follow {
|
2017-02-22 22:24:37 +00:00
|
|
|
max-width: 220px;
|
|
|
|
min-height: 28px;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2017-02-22 22:24:37 +00:00
|
|
|
width: 92%;
|
2017-02-22 21:08:14 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
2017-02-24 17:12:57 +00:00
|
|
|
.pressed {
|
2017-08-22 09:38:12 +00:00
|
|
|
border-bottom-color: rgba(255, 255, 255, 0.2);
|
|
|
|
border-top-color: rgba(0, 0, 0, 0.2);
|
2017-02-24 17:12:57 +00:00
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-counts {
|
|
|
|
display: flex;
|
|
|
|
line-height:16px;
|
|
|
|
padding: 1em 1.5em 0em 1em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-count {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size:1em;
|
|
|
|
font-weight: bolder;
|
|
|
|
margin: 0 0 0.25em;
|
|
|
|
}
|
2017-08-21 17:25:01 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
2017-03-10 20:37:13 +00:00
|
|
|
|
|
|
|
.dailyAvg {
|
|
|
|
font-size: 0.8em;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
</style>
|