yandere_fe/src/components/user_card/user_card.vue

576 lines
14 KiB
Vue
Raw Normal View History

2016-11-30 13:27:19 -08:00
<template>
2019-07-10 17:59:10 -07:00
<div
class="user-card"
:class="classes"
>
2019-09-25 10:23:55 -07:00
<div
:class="{ 'hide-bio': hideBio }"
:style="style"
class="background-image"
/>
2019-07-10 17:59:10 -07:00
<div class="panel-heading">
<div class="user-info">
<div class="container">
2019-07-22 13:58:20 -07:00
<a
v-if="allowZoomingAvatar"
2019-07-22 13:58:20 -07:00
class="user-info-avatar-link"
@click="zoomAvatar"
2019-07-22 13:58:20 -07:00
>
<UserAvatar
:better-shadow="betterShadow"
:user="user"
/>
2019-07-25 12:49:02 -07:00
<div class="user-info-avatar-link-overlay">
<i class="button-icon icon-zoom-in" />
</div>
2019-07-22 13:58:20 -07:00
</a>
<router-link
v-else
:to="userProfileLink(user)"
>
2019-07-10 17:59:10 -07:00
<UserAvatar
:better-shadow="betterShadow"
:user="user"
/>
</router-link>
<div class="user-summary">
<div class="top-line">
<!-- eslint-disable vue/no-v-html -->
<div
v-if="user.name_html"
:title="user.name"
class="user-name"
v-html="user.name_html"
/>
2019-07-12 12:11:54 -07:00
<!-- eslint-enable vue/no-v-html -->
2019-07-10 17:59:10 -07:00
<div
v-else
:title="user.name"
class="user-name"
>
{{ user.name }}
</div>
<router-link
v-if="!isOtherUser"
:to="{ name: 'user-settings' }"
>
<i
class="button-icon icon-wrench usersettings"
:title="$t('tool_tip.user_settings')"
/>
</router-link>
<a
v-if="isOtherUser && !user.is_local"
:href="user.statusnet_profile_url"
target="_blank"
>
<i class="icon-link-ext usersettings" />
</a>
2019-10-11 06:52:26 -07:00
<AccountActions
v-if="isOtherUser && loggedIn"
:user="user"
/>
2019-07-10 17:59:10 -07:00
</div>
<div class="bottom-line">
<router-link
class="user-screen-name"
:to="userProfileLink(user)"
>
@{{ user.screen_name }}
</router-link>
<span
v-if="!hideBio && !!visibleRole"
class="alert staff"
>{{ visibleRole }}</span>
<span v-if="user.locked"><i class="icon icon-lock" /></span>
<span
v-if="!mergedConfig.hideUserStats && !hideBio"
2019-07-10 17:59:10 -07:00
class="dailyAvg"
>{{ dailyAvg }} {{ $t('user_card.per_day') }}</span>
</div>
2019-05-15 19:01:04 -07:00
</div>
2018-06-19 07:14:33 -07:00
</div>
2019-07-10 17:59:10 -07:00
<div class="user-meta">
<div
v-if="user.follows_you && loggedIn && isOtherUser"
class="following"
>
{{ $t('user_card.follows_you') }}
</div>
<div
v-if="isOtherUser && (loggedIn || !switcher)"
class="highlighter"
>
<!-- id's need to be unique, otherwise vue confuses which user-card checkbox belongs to -->
<input
v-if="userHighlightType !== 'disabled'"
:id="'userHighlightColorTx'+user.id"
v-model="userHighlightColor"
class="userHighlightText"
type="text"
>
<input
v-if="userHighlightType !== 'disabled'"
:id="'userHighlightColor'+user.id"
v-model="userHighlightColor"
class="userHighlightCl"
type="color"
>
<label
for="style-switcher"
class="userHighlightSel select"
>
<select
:id="'userHighlightSel'+user.id"
v-model="userHighlightType"
class="userHighlightSel"
>
<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>
</div>
2018-06-18 01:36:58 -07:00
</div>
2019-07-10 17:59:10 -07:00
<div
v-if="loggedIn && isOtherUser"
class="user-interactions"
>
2019-10-08 00:21:48 -07:00
<div class="btn-group">
<FollowButton :user="user" />
<template v-if="user.following">
<ProgressButton
v-if="!user.subscribed"
class="btn btn-default"
:click="subscribeUser"
:title="$t('user_card.subscribe')"
>
<i class="icon-bell-alt" />
</ProgressButton>
<ProgressButton
v-else
2020-01-13 12:19:19 -08:00
class="btn btn-default toggled"
2019-10-08 00:21:48 -07:00
:click="unsubscribeUser"
:title="$t('user_card.unsubscribe')"
>
<i class="icon-bell-ringing-o" />
</ProgressButton>
</template>
2019-09-17 12:59:17 -07:00
</div>
2019-07-10 17:59:10 -07:00
<div>
<button
v-if="user.muted"
2020-01-13 12:19:19 -08:00
class="btn btn-default btn-block toggled"
2019-07-10 17:59:10 -07:00
@click="unmuteUser"
>
{{ $t('user_card.muted') }}
</button>
<button
v-else
class="btn btn-default btn-block"
@click="muteUser"
>
{{ $t('user_card.mute') }}
</button>
</div>
<div>
<button
class="btn btn-default btn-block"
@click="mentionUser"
>
{{ $t('user_card.mention') }}
</button>
</div>
2019-07-10 17:59:10 -07:00
<ModerationTools
v-if="loggedIn.role === &quot;admin&quot;"
:user="user"
/>
</div>
<div
v-if="!loggedIn && user.is_local"
class="user-interactions"
>
<RemoteFollow :user="user" />
</div>
2019-04-16 07:13:26 -07:00
</div>
</div>
2019-07-10 17:59:10 -07:00
<div
v-if="!hideBio"
class="panel-body"
>
<div
v-if="!mergedConfig.hideUserStats && switcher"
2019-07-10 17:59:10 -07:00
class="user-counts"
>
<div
class="user-count"
@click.prevent="setProfileView('statuses')"
>
<h5>{{ $t('user_card.statuses') }}</h5>
<span>{{ user.statuses_count }} <br></span>
</div>
<div
class="user-count"
@click.prevent="setProfileView('friends')"
>
<h5>{{ $t('user_card.followees') }}</h5>
2019-11-12 10:31:30 -08:00
<span>{{ hideFollowsCount ? $t('user_card.hidden') : user.friends_count }}</span>
2019-07-10 17:59:10 -07:00
</div>
<div
class="user-count"
@click.prevent="setProfileView('followers')"
>
<h5>{{ $t('user_card.followers') }}</h5>
2019-11-12 10:31:30 -08:00
<span>{{ hideFollowersCount ? $t('user_card.hidden') : user.followers_count }}</span>
2019-07-10 17:59:10 -07:00
</div>
2018-11-25 06:24:58 -08:00
</div>
2019-07-10 17:59:10 -07:00
<!-- eslint-disable vue/no-v-html -->
<p
v-if="!hideBio && user.description_html"
class="user-card-bio"
@click.prevent="linkClicked"
v-html="user.description_html"
/>
2019-07-12 12:11:54 -07:00
<!-- eslint-enable vue/no-v-html -->
2019-07-10 17:59:10 -07:00
<p
v-else-if="!hideBio"
class="user-card-bio"
>
{{ user.description }}
</p>
2018-11-25 06:24:58 -08:00
</div>
</div>
2016-11-30 13:27:19 -08:00
</template>
2019-03-05 11:01:49 -08:00
<script src="./user_card.js"></script>
<style lang="scss">
2017-08-21 10:25:01 -07:00
@import '../../_variables.scss';
2019-03-05 11:01:49 -08:00
.user-card {
position: relative;
2018-04-07 09:30:27 -07:00
.panel-heading {
2019-01-09 05:31:53 -08:00
padding: .5em 0;
2018-04-07 09:30:27 -07:00
text-align: center;
box-shadow: none;
2019-03-04 23:32:23 -08:00
background: transparent;
flex-direction: column;
align-items: stretch;
// create new stacking context
position: relative;
2018-04-07 09:30:27 -07:00
}
2019-03-04 23:32:23 -08:00
.panel-body {
word-wrap: break-word;
border-bottom-right-radius: inherit;
border-bottom-left-radius: inherit;
// create new stacking context
position: relative;
}
.background-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
mask: linear-gradient(to top, white, transparent) bottom no-repeat,
linear-gradient(to top, white, white);
// Autoprefixed seem to ignore this one, and also syntax is different
-webkit-mask-composite: xor;
mask-composite: exclude;
background-size: cover;
mask-size: 100% 60%;
border-top-left-radius: calc(var(--panelRadius) - 1px);
border-top-right-radius: calc(var(--panelRadius) - 1px);
background-color: var(--profileBg);
&.hide-bio {
mask-size: 100% 40px;
}
2019-03-04 23:32:23 -08:00
}
2018-08-21 11:16:03 -07:00
2019-03-04 23:32:23 -08:00
p {
margin-bottom: 0;
}
&-bio {
2018-08-21 11:16:03 -07:00
text-align: center;
a {
color: $fallback--link;
color: var(--postLink, $fallback--link);
}
img {
object-fit: contain;
vertical-align: middle;
max-width: 100%;
max-height: 400px;
&.emoji {
width: 32px;
height: 32px;
}
}
2018-08-21 11:16:03 -07:00
}
2019-03-04 23:32:23 -08:00
// Modifiers
2019-03-05 18:52:04 -08:00
&-rounded-t {
2019-03-05 10:25:31 -08: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-04 23:32:23 -08:00
}
2019-03-05 18:52:04 -08:00
&-rounded {
2019-03-04 23:32:23 -08:00
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
}
2019-03-05 18:52:04 -08:00
&-bordered {
2019-03-04 23:32:23 -08:00
border-width: 1px;
border-style: solid;
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
}
}
.user-info {
2018-10-07 09:59:22 -07:00
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
2018-12-26 01:19:25 -08:00
padding: 0 26px;
2018-04-07 09:30:27 -07:00
.container {
2018-12-26 01:19:25 -08:00
padding: 16px 0 6px;
2018-04-07 09:30:27 -07:00
display: flex;
2019-07-25 12:49:02 -07:00
align-items: flex-start;
2018-04-07 09:30:27 -07:00
max-height: 56px;
2018-04-07 06:48:49 -07: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 06:48:49 -07:00
}
2018-04-07 09:30:27 -07:00
}
2018-04-07 06:48:49 -07:00
2018-04-07 09:30:27 -07:00
&:hover .animated.avatar {
canvas {
display: none;
}
img {
visibility: visible;
}
2018-04-07 09:30:27 -07:00
}
2019-07-22 13:58:20 -07:00
&-avatar-link {
2019-07-25 12:49:02 -07:00
position: relative;
2019-07-22 13:58:20 -07:00
cursor: pointer;
2019-07-25 12:49:02 -07:00
&-overlay {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
border-radius: $fallback--avatarRadius;
border-radius: var(--avatarRadius, $fallback--avatarRadius);
opacity: 0;
transition: opacity .2s ease;
i {
color: #FFF;
}
}
&:hover &-overlay {
opacity: 1;
}
2019-07-22 13:58:20 -07:00
}
.usersettings {
2018-10-07 09:59:22 -07:00
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
opacity: .8;
}
2019-05-15 19:01:04 -07:00
.user-summary {
2018-04-07 09:30:27 -07:00
display: block;
margin-left: 0.6em;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 0;
2018-11-25 06:42:41 -08: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-15 19:01:04 -07:00
2018-12-26 01:19:25 -08:00
.top-line {
display: flex;
}
2018-04-07 09:30:27 -07:00
}
.user-name {
text-overflow: ellipsis;
overflow: hidden;
flex: 1 1 auto;
margin-right: 1em;
font-size: 15px;
2019-02-26 04:13:09 -08:00
img {
object-fit: contain;
height: 16px;
width: 16px;
vertical-align: middle;
}
2018-04-07 09:30:27 -07:00
}
2019-05-15 19:01:04 -07:00
.bottom-line {
display: flex;
font-weight: light;
2018-04-07 09:30:27 -07:00
font-size: 15px;
2018-12-26 01:19:25 -08:00
2019-05-19 11:25:02 -07:00
.user-screen-name {
2019-05-15 19:01:31 -07:00
min-width: 1px;
flex: 0 1 auto;
text-overflow: ellipsis;
overflow: hidden;
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
}
2019-05-15 19:01:31 -07: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-15 19:01:04 -07:00
2019-05-15 19:01:31 -07:00
.staff {
2019-05-19 11:25:02 -07:00
flex: none;
2019-05-15 19:01:31 -07:00
text-transform: capitalize;
color: $fallback--text;
2020-01-27 16:03:21 -08:00
color: var(--alertNeutralText, $fallback--text);
2019-05-15 19:01:31 -07:00
background-color: $fallback--fg;
2020-01-27 16:03:21 -08:00
background-color: var(--alertNeutral, $fallback--fg);
2019-05-15 19:01:31 -07:00
}
2018-04-07 09:30:27 -07:00
}
2018-06-19 07:14:33 -07:00
.user-meta {
2018-12-26 01:19:25 -08:00
margin-bottom: .15em;
display: flex;
align-items: baseline;
font-size: 14px;
line-height: 22px;
flex-wrap: wrap;
2018-06-19 07:14:33 -07:00
.following {
2018-12-26 01:19:25 -08:00
flex: 1 0 auto;
2018-06-19 07:14:33 -07:00
margin: 0;
2018-12-26 01:19:25 -08:00
margin-bottom: .25em;
2018-06-19 07:14:33 -07:00
text-align: left;
}
2018-12-26 01:19:25 -08: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 07:14:33 -07:00
}
}
2018-04-07 09:30:27 -07:00
.user-interactions {
2019-07-11 08:01:12 -07:00
position: relative;
2018-04-07 09:30:27 -07:00
display: flex;
flex-flow: row wrap;
2018-12-26 01:19:25 -08:00
margin-right: -.75em;
2019-04-25 21:39:43 -07:00
> * {
margin: 0 .75em .6em 0;
2018-12-26 01:19:25 -08:00
white-space: nowrap;
2019-10-08 23:04:18 -07:00
min-width: 95px;
2018-04-07 09:30:27 -07:00
}
2019-04-26 00:33:25 -07:00
button {
2019-04-25 21:39:43 -07:00
margin: 0;
}
2018-04-07 09:30:27 -07:00
}
}
.user-counts {
2018-04-07 09:30:27 -07:00
display: flex;
line-height:16px;
padding: .5em 1.5em 0em 1.5em;
2018-04-07 09:30:27 -07:00
text-align: center;
justify-content: space-between;
2018-10-07 09:59:22 -07:00
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
2018-12-26 01:19:25 -08:00
flex-wrap: wrap;
}
.user-count {
2018-12-26 01:19:25 -08:00
flex: 1 0 auto;
padding: .5em 0 .5em 0;
margin: 0 .5em;
2018-04-07 09:30:27 -07:00
h5 {
font-size:1em;
font-weight: bolder;
margin: 0 0 0.25em;
}
a {
text-decoration: none;
}
}
</style>