forked from AkkomaGang/akkoma-fe
303 lines
9.1 KiB
Vue
303 lines
9.1 KiB
Vue
<template>
|
|
<div
|
|
class="user-card"
|
|
:class="classes"
|
|
>
|
|
<div
|
|
:class="{ 'hide-bio': hideBio }"
|
|
:style="style"
|
|
class="background-image"
|
|
/>
|
|
<div class="panel-heading -flexible-height">
|
|
<div class="user-info">
|
|
<div class="container">
|
|
<a
|
|
v-if="allowZoomingAvatar"
|
|
class="user-info-avatar-link"
|
|
@click="zoomAvatar"
|
|
>
|
|
<UserAvatar
|
|
:better-shadow="betterShadow"
|
|
:user="user"
|
|
/>
|
|
<div class="user-info-avatar-link-overlay">
|
|
<FAIcon
|
|
class="fa-scale-110 fa-old-padding"
|
|
icon="search-plus"
|
|
/>
|
|
</div>
|
|
</a>
|
|
<router-link
|
|
v-else
|
|
:to="userProfileLink(user)"
|
|
>
|
|
<UserAvatar
|
|
:better-shadow="betterShadow"
|
|
:user="user"
|
|
/>
|
|
</router-link>
|
|
<div class="user-summary">
|
|
<div class="top-line">
|
|
<RichContent
|
|
:title="user.name"
|
|
class="user-name"
|
|
:html="user.name"
|
|
:emoji="user.emoji"
|
|
/>
|
|
<button
|
|
v-if="!isOtherUser && user.is_local"
|
|
class="button-unstyled edit-profile-button"
|
|
@click.stop="openProfileTab"
|
|
>
|
|
<FAIcon
|
|
fixed-width
|
|
class="icon"
|
|
icon="edit"
|
|
:title="$t('user_card.edit_profile')"
|
|
/>
|
|
</button>
|
|
<a
|
|
v-if="isOtherUser && !user.is_local"
|
|
:href="user.statusnet_profile_url"
|
|
target="_blank"
|
|
class="button-unstyled external-link-button"
|
|
>
|
|
<FAIcon
|
|
class="icon"
|
|
icon="external-link-alt"
|
|
/>
|
|
</a>
|
|
<AccountActions
|
|
v-if="isOtherUser && loggedIn"
|
|
:user="user"
|
|
:relationship="relationship"
|
|
/>
|
|
</div>
|
|
<div class="bottom-line">
|
|
<router-link
|
|
class="user-screen-name"
|
|
:title="user.screen_name_ui"
|
|
:to="userProfileLink(user)"
|
|
>
|
|
@{{ user.screen_name_ui }}
|
|
</router-link>
|
|
<template v-if="!hideBio">
|
|
<span
|
|
v-if="user.deactivated"
|
|
class="alert user-role"
|
|
>
|
|
{{ $t('user_card.deactivated') }}
|
|
</span>
|
|
<span
|
|
v-if="!!visibleRole"
|
|
class="alert user-role"
|
|
>
|
|
{{ $t(`general.role.${visibleRole}`) }}
|
|
</span>
|
|
<span
|
|
v-if="user.bot"
|
|
class="alert user-role"
|
|
>
|
|
{{ $t('user_card.bot') }}
|
|
</span>
|
|
</template>
|
|
<span v-if="user.locked">
|
|
<FAIcon
|
|
class="lock-icon"
|
|
icon="lock"
|
|
size="sm"
|
|
/>
|
|
</span>
|
|
<span
|
|
v-if="!mergedConfig.hideUserStats && !hideBio"
|
|
class="dailyAvg"
|
|
>{{ dailyAvg }} {{ $t('user_card.per_day') }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="user-meta">
|
|
<div
|
|
v-if="relationship.followed_by && 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"
|
|
>
|
|
{{ ' ' }}
|
|
<Select
|
|
:id="'userHighlightSel'+user.id"
|
|
v-model="userHighlightType"
|
|
class="userHighlightSel"
|
|
>
|
|
<option value="disabled">
|
|
{{ $t('user_card.highlight.disabled') }}
|
|
</option>
|
|
<option value="solid">
|
|
{{ $t('user_card.highlight.solid') }}
|
|
</option>
|
|
<option value="striped">
|
|
{{ $t('user_card.highlight.striped') }}
|
|
</option>
|
|
<option value="side">
|
|
{{ $t('user_card.highlight.side') }}
|
|
</option>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-if="loggedIn && isOtherUser"
|
|
class="user-interactions"
|
|
>
|
|
<div class="btn-group">
|
|
<FollowButton
|
|
:relationship="relationship"
|
|
:user="user"
|
|
/>
|
|
<template v-if="relationship.following">
|
|
<ProgressButton
|
|
v-if="!relationship.subscribing"
|
|
class="btn button-default"
|
|
:click="subscribeUser"
|
|
:title="$t('user_card.subscribe')"
|
|
>
|
|
<FAIcon icon="bell" />
|
|
</ProgressButton>
|
|
<ProgressButton
|
|
v-else
|
|
class="btn button-default toggled"
|
|
:click="unsubscribeUser"
|
|
:title="$t('user_card.unsubscribe')"
|
|
>
|
|
<FALayers>
|
|
<FAIcon
|
|
icon="rss"
|
|
transform="left-5 shrink-6 up-3 rotate-20"
|
|
flip="horizontal"
|
|
/>
|
|
<FAIcon
|
|
icon="rss"
|
|
transform="right-5 shrink-6 up-3 rotate-20"
|
|
/>
|
|
<FAIcon icon="bell" />
|
|
</FALayers>
|
|
</ProgressButton>
|
|
</template>
|
|
</div>
|
|
<div>
|
|
<button
|
|
v-if="relationship.muting"
|
|
class="btn button-default btn-block toggled"
|
|
:disabled="user.deactivated"
|
|
@click="unmuteUser"
|
|
>
|
|
{{ $t('user_card.muted') }}
|
|
</button>
|
|
<button
|
|
v-else
|
|
class="btn button-default btn-block"
|
|
:disabled="user.deactivated"
|
|
@click="muteUser"
|
|
>
|
|
{{ $t('user_card.mute') }}
|
|
</button>
|
|
</div>
|
|
<div>
|
|
<button
|
|
v-if="relationship.domain_blocking"
|
|
class="btn button-default btn-block toggled"
|
|
@click="unmuteDomain"
|
|
>
|
|
{{ $t('user_card.domain_muted') }}
|
|
</button>
|
|
<button
|
|
v-else
|
|
class="btn button-default btn-block"
|
|
@click="muteDomain"
|
|
>
|
|
{{ $t('user_card.mute_domain') }}
|
|
</button>
|
|
</div>
|
|
<div>
|
|
<button
|
|
class="btn button-default btn-block"
|
|
:disabled="user.deactivated"
|
|
@click="mentionUser"
|
|
>
|
|
{{ $t('user_card.mention') }}
|
|
</button>
|
|
</div>
|
|
<ModerationTools
|
|
v-if="loggedIn.role === "admin""
|
|
:user="user"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-if="!loggedIn && user.is_local"
|
|
class="user-interactions"
|
|
>
|
|
<RemoteFollow :user="user" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-if="!hideBio"
|
|
class="panel-body"
|
|
>
|
|
<div
|
|
v-if="!mergedConfig.hideUserStats && switcher"
|
|
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>
|
|
<span>{{ hideFollowsCount ? $t('user_card.hidden') : user.friends_count }}</span>
|
|
</div>
|
|
<div
|
|
class="user-count"
|
|
@click.prevent="setProfileView('followers')"
|
|
>
|
|
<h5>{{ $t('user_card.followers') }}</h5>
|
|
<span>{{ hideFollowersCount ? $t('user_card.hidden') : user.followers_count }}</span>
|
|
</div>
|
|
</div>
|
|
<RichContent
|
|
v-if="!hideBio"
|
|
class="user-card-bio"
|
|
:html="user.description_html"
|
|
:emoji="user.emoji"
|
|
:handle-links="true"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./user_card.js"></script>
|
|
|
|
<style lang="scss" src="./user_card.scss" />
|