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

420 lines
11 KiB
Vue
Raw Normal View History

2016-11-30 22:27:19 +01:00
<template>
2019-04-16 16:13:26 +02:00
<div class="user-card" :class="classes" :style="style">
<div class="panel-heading">
<div class='user-info'>
<div class='container'>
<router-link :to="userProfileLink(user)">
<UserAvatar :betterShadow="betterShadow" :user="user"/>
</router-link>
<div class="user-summary">
<div class="top-line">
<div :title="user.name" class='user-name' v-if="user.name_html" v-html="user.name_html"></div>
<div :title="user.name" class='user-name' v-else>{{user.name}}</div>
<router-link :to="{ name: 'user-settings' }" v-if="!isOtherUser">
<i class="button-icon icon-wrench usersettings" :title="$t('tool_tip.user_settings')"></i>
</router-link>
<a :href="user.statusnet_profile_url" target="_blank" v-if="isOtherUser && !user.is_local">
<i class="icon-link-ext usersettings"></i>
</a>
</div>
2018-12-26 10:19:25 +01:00
2019-04-16 16:13:26 +02:00
<div class="bottom-line">
<router-link class="user-screen-name" :to="userProfileLink(user)">@{{user.screen_name}}</router-link>
<span class="alert staff" v-if="!hideBio && !!visibleRole">{{visibleRole}}</span>
<span v-if="user.locked"><i class="icon icon-lock"></i></span>
<span v-if="!hideUserStatsLocal && !hideBio" class="dailyAvg">{{dailyAvg}} {{ $t('user_card.per_day') }}</span>
2019-05-16 04:01:04 +02:00
</div>
2018-06-19 16:14:33 +02:00
</div>
2019-04-16 16:13:26 +02:00
</div>
<div class="user-meta">
<div v-if="user.follows_you && loggedIn && isOtherUser" class="following">
{{ $t('user_card.follows_you') }}
2018-06-19 16:14:33 +02:00
</div>
2019-04-16 16:13:26 +02:00
<div class="highlighter" v-if="isOtherUser && (loggedIn || !switcher)">
<!-- id's need to be unique, otherwise vue confuses which user-card checkbox belongs to -->
<input class="userHighlightText" type="text" :id="'userHighlightColorTx'+user.id" v-if="userHighlightType !== 'disabled'" v-model="userHighlightColor"/>
<input class="userHighlightCl" type="color" :id="'userHighlightColor'+user.id" v-if="userHighlightType !== 'disabled'" v-model="userHighlightColor"/>
<label for="style-switcher" class='userHighlightSel select'>
<select class="userHighlightSel" :id="'userHighlightSel'+user.id" v-model="userHighlightType">
<option value="disabled">No highlight</option>
<option value="solid">Solid bg</option>
<option value="striped">Striped bg</option>
<option value="side">Side stripe</option>
</select>
<i class="icon-down-open"/>
</label>
2018-06-18 10:36:58 +02:00
</div>
2018-06-19 16:14:33 +02:00
</div>
2019-04-26 05:32:56 +02:00
<div v-if="loggedIn && isOtherUser" class="user-interactions">
2019-04-26 05:35:11 +02:00
<div>
2019-04-26 05:32:56 +02:00
<button @click="unfollowUser" class="pressed" :disabled="followRequestInProgress" :title="$t('user_card.follow_unfollow')" v-if="user.following">
<template v-if="followRequestInProgress">
{{ $t('user_card.follow_progress') }}
</template>
<template v-else>
{{ $t('user_card.following') }}
</template>
</button>
<button @click="followUser" :disabled="followRequestInProgress" :title="followRequestSent ? $t('user_card.follow_again') : ''" v-else>
<template v-if="followRequestInProgress">
{{ $t('user_card.follow_progress') }}
</template>
<template v-else-if="followRequestSent">
{{ $t('user_card.follow_sent') }}
</template>
<template v-else>
{{ $t('user_card.follow') }}
</template>
</button>
2019-04-16 16:13:26 +02:00
</div>
2019-04-26 05:32:56 +02:00
<div>
2019-04-25 18:33:50 +02:00
<ProgressButton :click="subscribeUser" v-if="!user.subscribed">
2019-04-25 10:40:37 +02:00
{{ $t('user_card.subscribe') }}
</ProgressButton>
<ProgressButton class="pressed" :click="unsubscribeUser" v-else>
2019-04-25 18:32:26 +02:00
{{ $t('user_card.subscribed') }}
</ProgressButton>
</div>
2019-04-26 05:35:11 +02:00
<div>
2019-04-16 16:13:26 +02:00
<span v-if='user.muted'>
<button @click="unmuteUser" class="pressed">
{{ $t('user_card.muted') }}
</button>
</span>
<span v-if='!user.muted'>
<button @click="muteUser">
{{ $t('user_card.mute') }}
</button>
</span>
2016-11-30 22:27:19 +01:00
</div>
2019-04-26 05:35:11 +02:00
<div>
2019-04-16 16:13:26 +02:00
<span v-if='user.statusnet_blocking'>
<button @click="unblockUser" class="pressed">
{{ $t('user_card.blocked') }}
</button>
</span>
<span v-if='!user.statusnet_blocking'>
<button @click="blockUser">
{{ $t('user_card.block') }}
</button>
</span>
2019-03-19 09:53:11 +01:00
</div>
2019-04-26 05:32:56 +02:00
<div class='block'>
2019-04-16 16:13:26 +02:00
<span>
<button @click="reportUser">
{{ $t('user_card.report') }}
</button>
</span>
</div>
2019-04-26 05:32:56 +02:00
<ModerationTools :user='user' v-if='loggedIn.role === "admin"' />
</div>
<div class="user-interactions" v-if="!loggedIn && user.is_local">
<RemoteFollow :user="user" />
2019-04-16 16:13:26 +02:00
</div>
</div>
</div>
<div class="panel-body" v-if="!hideBio">
<div v-if="!hideUserStatsLocal && switcher" class="user-counts">
<div class="user-count" v-on:click.prevent="setProfileView('statuses')">
<h5>{{ $t('user_card.statuses') }}</h5>
<span>{{user.statuses_count}} <br></span>
</div>
<div class="user-count" v-on:click.prevent="setProfileView('friends')">
<h5>{{ $t('user_card.followees') }}</h5>
<span>{{user.friends_count}}</span>
</div>
<div class="user-count" v-on:click.prevent="setProfileView('followers')">
<h5>{{ $t('user_card.followers') }}</h5>
<span>{{user.followers_count}}</span>
2018-11-25 15:24:58 +01:00
</div>
</div>
2019-04-16 16:13:26 +02:00
<p @click.prevent="linkClicked" v-if="!hideBio && user.description_html" class="user-card-bio" v-html="user.description_html"></p>
<p v-else-if="!hideBio" class="user-card-bio">{{ user.description }}</p>
2018-11-25 15:24:58 +01:00
</div>
2019-04-16 16:13:26 +02:00
</div>
2016-11-30 22:27:19 +01:00
</template>
2019-03-05 20:01:49 +01:00
<script src="./user_card.js"></script>
<style lang="scss">
2017-08-21 19:25:01 +02:00
@import '../../_variables.scss';
2019-03-05 20:01:49 +01:00
.user-card {
2018-04-07 18:30:27 +02:00
background-size: cover;
2018-11-25 15:42:41 +01:00
overflow: hidden;
2018-04-07 18:30:27 +02:00
.panel-heading {
2019-01-09 14:31:53 +01:00
padding: .5em 0;
2018-04-07 18:30:27 +02:00
text-align: center;
box-shadow: none;
2019-03-05 08:32:23 +01:00
background: transparent;
flex-direction: column;
align-items: stretch;
2018-04-07 18:30:27 +02:00
}
2019-03-05 08:32:23 +01:00
.panel-body {
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%);
}
2018-08-21 20:16:03 +02:00
2019-03-05 08:32:23 +01:00
p {
margin-bottom: 0;
}
&-bio {
2018-08-21 20:16:03 +02:00
text-align: center;
img {
object-fit: contain;
vertical-align: middle;
max-width: 100%;
max-height: 400px;
&.emoji {
width: 32px;
height: 32px;
}
}
2018-08-21 20:16:03 +02:00
}
2019-03-05 08:32:23 +01:00
// Modifiers
2019-03-06 03:52:04 +01:00
&-rounded-t {
2019-03-05 19:25:31 +01:00
border-top-left-radius: $fallback--panelRadius;
border-top-left-radius: var(--panelRadius, $fallback--panelRadius);
border-top-right-radius: $fallback--panelRadius;
border-top-right-radius: var(--panelRadius, $fallback--panelRadius);
2019-03-05 08:32:23 +01:00
}
2019-03-06 03:52:04 +01:00
&-rounded {
2019-03-05 08:32:23 +01:00
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
}
2019-03-06 03:52:04 +01:00
&-bordered {
2019-03-05 08:32:23 +01:00
border-width: 1px;
border-style: solid;
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
}
}
.user-info {
2018-10-07 18:59:22 +02:00
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
2018-12-26 10:19:25 +01:00
padding: 0 26px;
2018-04-07 18:30:27 +02:00
.container {
2018-12-26 10:19:25 +01:00
padding: 16px 0 6px;
2018-04-07 18:30:27 +02:00
display: flex;
max-height: 56px;
2018-04-07 15:48:49 +02:00
.avatar {
flex: 1 0 100%;
width: 56px;
height: 56px;
box-shadow: 0px 1px 8px rgba(0,0,0,0.75);
box-shadow: var(--avatarShadow);
object-fit: cover;
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
}
.usersettings {
2018-10-07 18:59:22 +02:00
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
opacity: .8;
}
2019-05-16 04:01:04 +02:00
.user-summary {
2018-04-07 18:30:27 +02:00
display: block;
margin-left: 0.6em;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 0;
2018-11-25 15:42:41 +01:00
// This is so that text doesn't get overlapped by avatar's shadow if it has
// big one
z-index: 1;
img {
width: 26px;
height: 26px;
vertical-align: middle;
object-fit: contain
}
2019-05-16 04:01:04 +02:00
2018-12-26 10:19:25 +01:00
.top-line {
display: flex;
}
2018-04-07 18:30:27 +02:00
}
.user-name {
text-overflow: ellipsis;
overflow: hidden;
flex: 1 1 auto;
margin-right: 1em;
font-size: 15px;
2019-02-26 13:13:09 +01:00
img {
object-fit: contain;
height: 16px;
width: 16px;
vertical-align: middle;
}
2018-04-07 18:30:27 +02:00
}
2019-05-16 04:01:04 +02:00
.bottom-line {
display: flex;
font-weight: light;
2018-04-07 18:30:27 +02:00
font-size: 15px;
2018-12-26 10:19:25 +01:00
2019-05-19 20:25:02 +02:00
.user-screen-name {
2019-05-16 04:01:31 +02:00
min-width: 1px;
flex: 0 1 auto;
text-overflow: ellipsis;
overflow: hidden;
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
}
2019-05-16 04:01:31 +02:00
.dailyAvg {
min-width: 1px;
flex: 0 0 auto;
margin-left: 1em;
font-size: 0.7em;
color: $fallback--text;
color: var(--text, $fallback--text);
}
2019-05-16 04:01:04 +02:00
2019-05-16 04:01:31 +02:00
// TODO use proper colors
.staff {
2019-05-19 20:25:02 +02:00
flex: none;
2019-05-16 04:01:31 +02:00
text-transform: capitalize;
color: $fallback--text;
color: var(--btnText, $fallback--text);
background-color: $fallback--fg;
background-color: var(--btn, $fallback--fg);
}
2018-04-07 18:30:27 +02:00
}
2018-06-19 16:14:33 +02:00
.user-meta {
2018-12-26 10:19:25 +01:00
margin-bottom: .15em;
display: flex;
align-items: baseline;
font-size: 14px;
line-height: 22px;
flex-wrap: wrap;
2018-06-19 16:14:33 +02:00
.following {
2018-12-26 10:19:25 +01:00
flex: 1 0 auto;
2018-06-19 16:14:33 +02:00
margin: 0;
2018-12-26 10:19:25 +01:00
margin-bottom: .25em;
2018-06-19 16:14:33 +02:00
text-align: left;
}
2018-12-26 10:19:25 +01:00
.highlighter {
flex: 0 1 auto;
display: flex;
flex-wrap: wrap;
margin-right: -.5em;
align-self: start;
.userHighlightCl {
padding: 2px 10px;
flex: 1 0 auto;
}
.userHighlightSel,
.userHighlightSel.select {
padding-top: 0;
padding-bottom: 0;
flex: 1 0 auto;
}
.userHighlightSel.select i {
line-height: 22px;
}
.userHighlightText {
width: 70px;
flex: 1 0 auto;
}
.userHighlightCl,
.userHighlightText,
.userHighlightSel,
.userHighlightSel.select {
height: 22px;
vertical-align: top;
margin-right: .5em;
margin-bottom: .25em;
}
2018-06-19 16:14:33 +02:00
}
}
2018-04-07 18:30:27 +02:00
.user-interactions {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
2018-12-26 10:19:25 +01:00
margin-right: -.75em;
2019-04-26 05:35:11 +02:00
> div {
2018-12-26 10:19:25 +01:00
flex: 1 0 0;
margin-right: .75em;
margin-bottom: .6em;
white-space: nowrap;
2018-04-07 18:30:27 +02:00
}
2018-04-07 18:30:27 +02:00
button {
2018-12-26 10:19:25 +01:00
width: 100%;
2018-04-07 18:30:27 +02:00
height: 100%;
2018-12-26 10:19:25 +01:00
margin: 0;
2018-04-07 18:30:27 +02:00
}
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: .5em 1.5em 0em 1.5em;
2018-04-07 18:30:27 +02:00
text-align: center;
justify-content: space-between;
2018-10-07 18:59:22 +02:00
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
2018-12-26 10:19:25 +01:00
flex-wrap: wrap;
}
.user-count {
2018-12-26 10:19:25 +01:00
flex: 1 0 auto;
padding: .5em 0 .5em 0;
margin: 0 .5em;
2018-04-07 18:30:27 +02:00
h5 {
font-size:1em;
font-weight: bolder;
margin: 0 0 0.25em;
}
a {
text-decoration: none;
}
}
</style>