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

270 lines
7.1 KiB
Vue
Raw Normal View History

2016-11-30 22:27:19 +01:00
<template>
<div id="heading" class="profile-panel-background" :style="headingStyle">
<div class="panel-heading text-center">
2016-11-30 22:27:19 +01:00
<div class='user-info'>
2017-08-25 13:59:55 +02:00
<router-link to='/user-settings' style="float: right; margin-top:16px;" v-if="!isOtherUser">
<i class="icon-cog usersettings"></i>
</router-link>
<a :href="user.statusnet_profile_url" target="_blank" style="float: right; margin-top:16px;" v-if="isOtherUser">
<i class="icon-link-ext usersettings"></i>
</a>
<div class='container'>
<router-link :to="{ name: 'user-profile', params: { id: user.id } }">
<StillImage class="avatar" :src="user.profile_image_url_original"/>
</router-link>
<div class="name-and-screen-name">
<div :title="user.name" class='user-name'>{{user.name}}</div>
<router-link :to="{ name: 'user-profile', params: { id: user.id } }">
<div class='user-screen-name'>@{{user.screen_name}}</div>
</router-link>
</div>
</div>
<div v-if="isOtherUser" class="user-interactions">
<div v-if="user.follows_you && loggedIn" class="following">
2017-11-07 15:14:37 +01:00
{{ $t('user_card.follows_you') }}
2016-12-08 09:09:21 +01:00
</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="pressed">
2017-11-07 15:14:37 +01:00
{{ $t('user_card.following') }}
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">
2017-11-07 15:14:37 +01:00
{{ $t('user_card.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="pressed">
2017-11-07 15:14:37 +01:00
{{ $t('user_card.muted') }}
</button>
</span>
<span v-if='!user.muted'>
<button @click="toggleMute">
2017-11-07 15:14:37 +01:00
{{ $t('user_card.mute') }}
</button>
</span>
</div>
<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="">
<button click="submit" class="remote-button">
{{ $t('user_card.remote_follow') }}
</button>
</form>
</div>
<div class='block' v-if='isOtherUser && loggedIn'>
2017-11-07 21:38:28 +01:00
<span v-if='user.statusnet_blocking'>
<button @click="unblockUser" class="pressed">
2017-11-07 21:38:28 +01:00
{{ $t('user_card.blocked') }}
</button>
</span>
<span v-if='!user.statusnet_blocking'>
<button @click="blockUser">
2017-11-07 21:38:28 +01:00
{{ $t('user_card.block') }}
</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 profile-panel-body">
2016-11-30 22:27:19 +01:00
<div class="user-counts">
2017-08-27 12:10:25 +02:00
<div class="user-count">
<a href="#" v-on:click.prevent="setProfileView('statuses')" v-if="switcher"><h5>{{ $t('user_card.statuses') }}</h5></a>
2017-11-07 15:14:37 +01:00
<h5 v-else>{{ $t('user_card.statuses') }}</h5>
<span>{{user.statuses_count}} <br><span class="dailyAvg">{{dailyAvg}} {{ $t('user_card.per_day') }}</span></span>
2016-11-30 22:27:19 +01:00
</div>
<div class="user-count">
<a href="#" v-on:click.prevent="setProfileView('friends')" v-if="switcher"><h5>{{ $t('user_card.followees') }}</h5></a>
2017-11-07 15:14:37 +01:00
<h5 v-else>{{ $t('user_card.followees') }}</h5>
<span>{{user.friends_count}}</span>
2016-11-30 22:27:19 +01:00
</div>
<div class="user-count">
<a href="#" v-on:click.prevent="setProfileView('followers')" v-if="switcher"><h5>{{ $t('user_card.followers') }}</h5></a>
2017-11-07 15:14:37 +01:00
<h5 v-else>{{ $t('user_card.followers') }}</h5>
<span>{{user.followers_count}}</span>
2016-11-30 22:27:19 +01:00
</div>
</div>
<p v-if="!hideBio">{{user.description}}</p>
2016-11-30 22:27:19 +01:00
</div>
</div>
</template>
<script src="./user_card_content.js"></script>
<style lang="scss">
2017-08-21 19:25:01 +02:00
@import '../../_variables.scss';
.profile-panel-background {
2018-04-07 18:30:27 +02:00
background-size: cover;
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
2018-04-07 18:30:27 +02:00
.panel-heading {
padding: 0.6em 0em;
text-align: center;
}
}
.profile-panel-body {
2018-04-07 18:30:27 +02:00
word-wrap: break-word;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), $fallback--bg 80px);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg, $fallback--bg) 80px)
}
.user-info {
2018-04-07 18:30:27 +02:00
color: white;
padding: 0 16px 16px 16px;
2018-04-07 18:30:27 +02:00
.container {
padding: 16px 10px 4px 10px;
display: flex;
max-height: 56px;
overflow: hidden;
2018-04-07 15:48:49 +02:00
.avatar {
border-radius: $fallback--avatarRadius;
border-radius: var(--avatarRadius, $fallback--avatarRadius);
flex: 1 0 100%;
width: 56px;
height: 56px;
box-shadow: 0px 1px 8px rgba(0,0,0,0.75);
object-fit: cover;
&.animated::before {
display: none;
}
2018-04-07 15:48:49 +02:00
}
2018-04-07 18:30:27 +02:00
}
2018-04-07 15:48:49 +02:00
2018-04-07 18:30:27 +02:00
&:hover .animated.avatar {
canvas {
display: none;
}
img {
visibility: visible;
}
2018-04-07 18:30:27 +02:00
}
text-shadow: 0px 1px 1.5px rgba(0, 0, 0, 1.0),
1px 1px 0px rgba(0, 0, 0, .2),
-1px 1px 0px rgba(0, 0, 0, .2),
1px -1px 0px rgba(0, 0, 0, .2),
-1px -1px 0px rgba(0, 0, 0, .2);
.usersettings {
color: #fff;
opacity: .8;
}
2018-04-07 18:30:27 +02:00
.name-and-screen-name {
display: block;
margin-left: 0.6em;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 0;
2018-04-07 18:30:27 +02:00
}
2018-04-07 18:30:27 +02:00
.user-name{
color: white;
text-overflow: ellipsis;
overflow: hidden;
2018-04-07 18:30:27 +02:00
}
2018-04-07 18:30:27 +02:00
.user-screen-name {
color: white;
font-weight: lighter;
font-size: 15px;
padding-right: 0.1em;
}
2018-04-07 18:30:27 +02:00
.user-interactions {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
2018-04-07 18:30:27 +02:00
div {
flex: 1;
}
margin-top: 0.7em;
margin-bottom: -1.0em;
2018-04-07 18:30:27 +02: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-07 18:30:27 +02:00
.mute {
max-width: 220px;
min-height: 28px;
}
2018-04-07 18:30:27 +02:00
.remote-follow {
max-width: 220px;
min-height: 28px;
}
2018-04-07 18:30:27 +02:00
.follow {
max-width: 220px;
min-height: 28px;
}
2018-04-07 18:30:27 +02:00
button {
width: 92%;
height: 100%;
}
2018-04-07 18:30:27 +02:00
.remote-button {
height: 28px !important;
width: 92%;
}
2018-04-07 18:30:27 +02:00
.pressed {
border-bottom-color: rgba(255, 255, 255, 0.2);
border-top-color: rgba(0, 0, 0, 0.2);
}
2018-04-07 18:30:27 +02:00
}
}
.user-counts {
2018-04-07 18:30:27 +02:00
display: flex;
line-height:16px;
padding: 1em 1.5em 0em 1em;
text-align: center;
text-shadow: 0px 1px 1.5px rgba(0, 0, 0, 1.0),
1px 1px 0px rgba(0, 0, 0, .2),
-1px 1px 0px rgba(0, 0, 0, .2),
1px -1px 0px rgba(0, 0, 0, .2),
-1px -1px 0px rgba(0, 0, 0, .2);
}
.user-count {
2018-04-07 18:30:27 +02:00
flex: 1;
2018-04-07 18:30:27 +02:00
h5 {
font-size:1em;
font-weight: bolder;
margin: 0 0 0.25em;
}
a {
text-decoration: none;
}
}
.dailyAvg {
2018-04-07 18:30:27 +02:00
font-size: 0.8em;
opacity: 0.5;
}
</style>