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 } }">
|
2018-03-11 23:31:33 +00:00
|
|
|
<StillImage class="avatar" :src="user.profile_image_url_original"/>
|
2017-08-21 20:14:05 +00:00
|
|
|
</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">
|
2018-03-31 18:14:36 +00:00
|
|
|
<div v-if="user.follows_you && loggedIn" class="following">
|
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!-->
|
2018-03-31 18:14:36 +00:00
|
|
|
<button @click="unfollowUser" class="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">
|
2018-03-31 18:14:36 +00:00
|
|
|
<button @click="followUser">
|
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'>
|
2018-03-31 18:14:36 +00:00
|
|
|
<button @click="toggleMute" class="pressed">
|
2017-11-07 14:14:37 +00:00
|
|
|
{{ $t('user_card.muted') }}
|
|
|
|
</button>
|
2017-02-18 13:48:27 +00:00
|
|
|
</span>
|
|
|
|
<span v-if='!user.muted'>
|
2018-03-31 18:14:36 +00:00
|
|
|
<button @click="toggleMute">
|
2017-11-07 14:14:37 +00:00
|
|
|
{{ $t('user_card.mute') }}
|
|
|
|
</button>
|
2017-02-18 13:48:27 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2018-02-01 19:30:49 +00:00
|
|
|
<div class="remote-follow" v-if='!loggedIn && user.is_local'>
|
|
|
|
<form method="POST" :action='subscribeUrl'>
|
|
|
|
<input type="hidden" name="nickname" :value="user.screen_name">
|
|
|
|
<input type="hidden" name="profile" value="">
|
2018-03-31 18:14:36 +00:00
|
|
|
<button click="submit" class="remote-button">
|
2018-02-01 19:30:49 +00:00
|
|
|
{{ $t('user_card.remote_follow') }}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2017-11-09 08:33:10 +00:00
|
|
|
<div class='block' v-if='isOtherUser && loggedIn'>
|
2017-11-07 20:38:28 +00:00
|
|
|
<span v-if='user.statusnet_blocking'>
|
2018-03-31 18:14:36 +00:00
|
|
|
<button @click="unblockUser" class="pressed">
|
2017-11-07 20:38:28 +00:00
|
|
|
{{ $t('user_card.blocked') }}
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
<span v-if='!user.statusnet_blocking'>
|
2018-03-31 18:14:36 +00:00
|
|
|
<button @click="blockUser">
|
2017-11-07 20:38:28 +00:00
|
|
|
{{ $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>
|
2018-04-01 02:28:20 +00:00
|
|
|
<div class="panel-body profile-panel-body">
|
2016-11-30 21:27:19 +00:00
|
|
|
<div class="user-counts">
|
2017-08-27 10:10:25 +00:00
|
|
|
<div class="user-count">
|
2018-03-31 18:14:36 +00:00
|
|
|
<a href="#" v-on:click.prevent="setProfileView('statuses')" v-if="switcher"><h5>{{ $t('user_card.statuses') }}</h5></a>
|
2017-11-07 14:14:37 +00:00
|
|
|
<h5 v-else>{{ $t('user_card.statuses') }}</h5>
|
2018-03-31 18:14:36 +00:00
|
|
|
<span>{{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">
|
2018-03-31 18:14:36 +00:00
|
|
|
<a href="#" v-on:click.prevent="setProfileView('friends')" v-if="switcher"><h5>{{ $t('user_card.followees') }}</h5></a>
|
2017-11-07 14:14:37 +00:00
|
|
|
<h5 v-else>{{ $t('user_card.followees') }}</h5>
|
2018-03-31 18:14:36 +00:00
|
|
|
<span>{{user.friends_count}}</span>
|
2016-11-30 21:27:19 +00:00
|
|
|
</div>
|
|
|
|
<div class="user-count">
|
2018-03-31 18:14:36 +00:00
|
|
|
<a href="#" v-on:click.prevent="setProfileView('followers')" v-if="switcher"><h5>{{ $t('user_card.followers') }}</h5></a>
|
2017-11-07 14:14:37 +00:00
|
|
|
<h5 v-else>{{ $t('user_card.followers') }}</h5>
|
2018-03-31 18:14:36 +00:00
|
|
|
<span>{{user.followers_count}}</span>
|
2016-11-30 21:27:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p>{{user.description}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2017-11-20 20:45:09 +00:00
|
|
|
<script src="./user_card_content.js"></script>
|
2017-02-22 21:08:14 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2017-08-21 17:25:01 +00:00
|
|
|
@import '../../_variables.scss';
|
2017-11-09 08:33:10 +00:00
|
|
|
|
2017-02-22 21:08:14 +00:00
|
|
|
.profile-panel-background {
|
2018-04-07 16:30:27 +00:00
|
|
|
background-size: cover;
|
|
|
|
border-radius: $fallback--panelRadius;
|
|
|
|
border-radius: var(--panelRadius, $fallback--panelRadius);
|
2017-02-26 20:36:54 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.panel-heading {
|
|
|
|
padding: 0.6em 0em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.profile-panel-body {
|
2018-04-07 16:30:27 +00:00
|
|
|
top: -0em;
|
|
|
|
padding-top: 4em;
|
|
|
|
word-wrap: break-word;
|
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), $fallback--bg 80%);
|
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg, $fallback--bg) 80%)
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-info {
|
2018-04-07 16:30:27 +00:00
|
|
|
color: white;
|
|
|
|
padding: 0 16px 16px 16px;
|
|
|
|
margin-bottom: -4em;
|
2017-08-02 19:09:40 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.container {
|
|
|
|
padding: 16px 10px 4px 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-direction: column;
|
|
|
|
align-content: flex-start;
|
|
|
|
justify-content: center;
|
|
|
|
max-height: 56px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.avatar {
|
2018-04-07 23:39:39 +00:00
|
|
|
border-radius: $fallback--avatarRadius;
|
|
|
|
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
2018-04-07 16:30:27 +00:00
|
|
|
flex: 1 0 100%;
|
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
|
|
|
box-shadow: 0px 1px 8px rgba(0,0,0,0.75);
|
|
|
|
object-fit: cover;
|
2018-04-07 13:48:49 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
&.animated::before {
|
|
|
|
display: none;
|
2018-04-07 13:48:49 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2018-04-07 13:48:49 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
&:hover .animated.avatar {
|
|
|
|
canvas {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
visibility: visible;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
text-shadow: 0px 1px 1.5px rgba(0, 0, 0, 1.0);
|
2018-02-01 19:30:49 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.name-and-screen-name {
|
|
|
|
display: block;
|
|
|
|
margin-left: 0.6em;
|
|
|
|
text-align: left;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.user-name{
|
|
|
|
color: white;
|
|
|
|
}
|
2018-02-01 19:30:49 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.user-screen-name {
|
|
|
|
color: white;
|
|
|
|
font-weight: lighter;
|
|
|
|
font-size: 15px;
|
|
|
|
padding-right: 0.1em;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2018-02-01 19:30:49 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.user-interactions {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: space-between;
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
div {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
margin-top: 0.7em;
|
|
|
|
margin-bottom: -1.0em;
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.following {
|
|
|
|
color: white;
|
|
|
|
font-size: 14px;
|
|
|
|
flex: 0 0 100%;
|
|
|
|
margin: -0.7em 0.0em 0.3em 0.0em;
|
|
|
|
padding-left: 16px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.mute {
|
|
|
|
max-width: 220px;
|
|
|
|
min-height: 28px;
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.remote-follow {
|
|
|
|
max-width: 220px;
|
|
|
|
min-height: 28px;
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.follow {
|
|
|
|
max-width: 220px;
|
|
|
|
min-height: 28px;
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
button {
|
|
|
|
width: 92%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.remote-button {
|
|
|
|
height: 28px !important;
|
|
|
|
width: 92%;
|
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
.pressed {
|
|
|
|
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
|
|
|
}
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-counts {
|
2018-04-07 16:30:27 +00:00
|
|
|
display: flex;
|
|
|
|
line-height:16px;
|
|
|
|
padding: 1em 1.5em 0em 1em;
|
|
|
|
text-align: center;
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-count {
|
2018-04-07 16:30:27 +00:00
|
|
|
flex: 1;
|
2017-02-22 21:08:14 +00:00
|
|
|
|
2018-04-07 16:30:27 +00:00
|
|
|
h5 {
|
|
|
|
color: white;
|
|
|
|
font-size:1em;
|
|
|
|
font-weight: bolder;
|
|
|
|
margin: 0 0 0.25em;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
2017-03-10 20:37:13 +00:00
|
|
|
|
|
|
|
.dailyAvg {
|
2018-04-07 16:30:27 +00:00
|
|
|
font-size: 0.8em;
|
|
|
|
opacity: 0.5;
|
2017-03-10 20:37:13 +00:00
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
</style>
|