2016-11-30 22:32:22 +00:00
|
|
|
<template>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
v-if="user"
|
|
|
|
class="user-profile panel panel-default"
|
|
|
|
>
|
|
|
|
<UserCard
|
2020-04-23 11:44:55 +00:00
|
|
|
:user-id="userId"
|
2019-07-05 07:17:44 +00:00
|
|
|
:switcher="true"
|
|
|
|
:selected="timeline.viewing"
|
2019-07-25 19:14:44 +00:00
|
|
|
:allow-zooming-avatar="true"
|
2019-07-05 07:17:44 +00:00
|
|
|
rounded="top"
|
|
|
|
/>
|
2019-11-15 18:12:16 +00:00
|
|
|
<div
|
|
|
|
v-if="user.fields_html && user.fields_html.length > 0"
|
|
|
|
class="user-profile-fields"
|
|
|
|
>
|
|
|
|
<dl
|
|
|
|
v-for="(field, index) in user.fields_html"
|
|
|
|
:key="index"
|
2019-11-20 09:59:37 +00:00
|
|
|
class="user-profile-field"
|
2019-11-15 18:12:16 +00:00
|
|
|
>
|
|
|
|
<dt
|
2020-02-19 12:00:39 +00:00
|
|
|
:title="user.fields_text[index].name"
|
2019-11-15 18:12:16 +00:00
|
|
|
class="user-profile-field-name"
|
2021-08-13 10:06:42 +00:00
|
|
|
>
|
|
|
|
<RichContent
|
|
|
|
:html="field.name"
|
|
|
|
:emoji="user.emoji"
|
|
|
|
/>
|
|
|
|
</dt>
|
2019-11-15 18:12:16 +00:00
|
|
|
<dd
|
2020-02-19 12:00:39 +00:00
|
|
|
:title="user.fields_text[index].value"
|
2019-11-15 18:12:16 +00:00
|
|
|
class="user-profile-field-value"
|
2021-08-13 10:06:42 +00:00
|
|
|
>
|
|
|
|
<RichContent
|
|
|
|
:html="field.value"
|
|
|
|
:emoji="user.emoji"
|
|
|
|
/>
|
|
|
|
</dd>
|
2019-11-15 18:12:16 +00:00
|
|
|
</dl>
|
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<tab-switcher
|
2019-08-10 18:49:37 +00:00
|
|
|
:active-tab="tab"
|
2019-07-05 07:17:44 +00:00
|
|
|
:render-only-focused="true"
|
2019-08-10 18:49:37 +00:00
|
|
|
:on-switch="onTabSwitch"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
2019-08-10 18:49:37 +00:00
|
|
|
<Timeline
|
|
|
|
key="statuses"
|
|
|
|
:label="$t('user_card.statuses')"
|
|
|
|
:count="user.statuses_count"
|
|
|
|
:embedded="true"
|
|
|
|
:title="$t('user_profile.timeline_title')"
|
|
|
|
:timeline="timeline"
|
|
|
|
timeline-name="user"
|
|
|
|
:user-id="userId"
|
|
|
|
:pinned-status-ids="user.pinnedStatusIds"
|
2019-09-13 20:55:17 +00:00
|
|
|
:in-profile="true"
|
2019-08-10 18:49:37 +00:00
|
|
|
/>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
v-if="followsTabVisible"
|
2019-08-10 18:49:37 +00:00
|
|
|
key="followees"
|
2019-07-05 07:17:44 +00:00
|
|
|
:label="$t('user_card.followees')"
|
|
|
|
:disabled="!user.friends_count"
|
|
|
|
>
|
|
|
|
<FriendList :user-id="userId">
|
2021-04-07 19:42:34 +00:00
|
|
|
<template v-slot:item="{item}">
|
2019-07-05 07:17:44 +00:00
|
|
|
<FollowCard :user="item" />
|
|
|
|
</template>
|
|
|
|
</FriendList>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-if="followersTabVisible"
|
2019-08-10 18:49:37 +00:00
|
|
|
key="followers"
|
2019-07-05 07:17:44 +00:00
|
|
|
:label="$t('user_card.followers')"
|
|
|
|
:disabled="!user.followers_count"
|
|
|
|
>
|
|
|
|
<FollowerList :user-id="userId">
|
2021-04-07 19:42:34 +00:00
|
|
|
<template v-slot:item="{item}">
|
2019-07-05 07:17:44 +00:00
|
|
|
<FollowCard
|
|
|
|
:user="item"
|
|
|
|
:no-follows-you="isUs"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</FollowerList>
|
2019-04-24 17:56:53 +00:00
|
|
|
</div>
|
2019-04-04 19:10:34 +00:00
|
|
|
<Timeline
|
2019-08-10 18:49:37 +00:00
|
|
|
key="media"
|
2019-07-05 07:17:44 +00:00
|
|
|
:label="$t('user_card.media')"
|
|
|
|
:disabled="!media.visibleStatuses.length"
|
2019-04-04 19:10:34 +00:00
|
|
|
:embedded="true"
|
2019-07-05 07:17:44 +00:00
|
|
|
:title="$t('user_card.media')"
|
|
|
|
timeline-name="media"
|
|
|
|
:timeline="media"
|
2019-04-04 19:10:34 +00:00
|
|
|
:user-id="userId"
|
2019-09-13 20:55:17 +00:00
|
|
|
:in-profile="true"
|
2019-04-04 19:10:34 +00:00
|
|
|
/>
|
2019-07-05 07:17:44 +00:00
|
|
|
<Timeline
|
|
|
|
v-if="isUs"
|
2019-08-10 18:49:37 +00:00
|
|
|
key="favorites"
|
2019-07-05 07:17:44 +00:00
|
|
|
:label="$t('user_card.favorites')"
|
|
|
|
:disabled="!favorites.visibleStatuses.length"
|
|
|
|
:embedded="true"
|
|
|
|
:title="$t('user_card.favorites')"
|
|
|
|
timeline-name="favorites"
|
|
|
|
:timeline="favorites"
|
2019-09-13 20:55:17 +00:00
|
|
|
:in-profile="true"
|
2019-07-05 07:17:44 +00:00
|
|
|
/>
|
|
|
|
</tab-switcher>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="panel user-profile-placeholder"
|
|
|
|
>
|
|
|
|
<div class="panel-heading">
|
|
|
|
<div class="title">
|
|
|
|
{{ $t('settings.profile_tab') }}
|
|
|
|
</div>
|
2019-04-04 19:10:34 +00:00
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div class="panel-body">
|
|
|
|
<span v-if="error">{{ error }}</span>
|
2020-10-20 21:01:28 +00:00
|
|
|
<FAIcon
|
2019-07-05 07:17:44 +00:00
|
|
|
v-else
|
2020-10-20 21:01:28 +00:00
|
|
|
spin
|
|
|
|
icon="circle-notch"
|
2019-07-05 07:17:44 +00:00
|
|
|
/>
|
2018-12-13 12:34:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-11-30 22:32:22 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_profile.js"></script>
|
2016-12-08 08:09:21 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2020-06-17 15:26:06 +00:00
|
|
|
@import '../../_variables.scss';
|
2016-12-08 08:09:21 +00:00
|
|
|
|
2017-02-22 21:08:14 +00:00
|
|
|
.user-profile {
|
2018-04-07 16:30:27 +00:00
|
|
|
flex: 2;
|
|
|
|
flex-basis: 500px;
|
2018-12-17 16:14:38 +00:00
|
|
|
|
2019-11-15 18:12:16 +00:00
|
|
|
.user-profile-fields {
|
2020-06-17 15:26:06 +00:00
|
|
|
margin: 0 0.5em;
|
2020-10-20 21:01:28 +00:00
|
|
|
|
2019-11-17 15:27:14 +00:00
|
|
|
img {
|
|
|
|
object-fit: contain;
|
|
|
|
vertical-align: middle;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 400px;
|
|
|
|
|
|
|
|
&.emoji {
|
2020-06-17 15:34:24 +00:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2019-11-17 15:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 09:59:37 +00:00
|
|
|
.user-profile-field {
|
2019-11-17 17:16:37 +00:00
|
|
|
display: flex;
|
2020-09-24 10:05:51 +00:00
|
|
|
margin: 0.25em;
|
2020-06-18 11:08:00 +00:00
|
|
|
border: 1px solid var(--border, $fallback--border);
|
|
|
|
border-radius: $fallback--inputRadius;
|
|
|
|
border-radius: var(--inputRadius, $fallback--inputRadius);
|
2019-11-15 18:12:16 +00:00
|
|
|
|
2019-11-20 09:59:37 +00:00
|
|
|
.user-profile-field-name {
|
2020-06-17 15:26:06 +00:00
|
|
|
flex: 0 1 30%;
|
2019-11-17 17:16:37 +00:00
|
|
|
font-weight: 500;
|
2019-11-20 10:25:11 +00:00
|
|
|
text-align: right;
|
2019-11-17 17:16:37 +00:00
|
|
|
color: var(--lightText);
|
|
|
|
min-width: 120px;
|
2020-06-18 11:08:00 +00:00
|
|
|
border-right: 1px solid var(--border, $fallback--border);
|
2019-11-17 17:16:37 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 09:59:37 +00:00
|
|
|
.user-profile-field-value {
|
2020-06-18 11:13:44 +00:00
|
|
|
flex: 1 1 70%;
|
2019-11-17 17:16:37 +00:00
|
|
|
color: var(--text);
|
2020-06-17 15:26:06 +00:00
|
|
|
margin: 0 0 0 0.25em;
|
2019-11-17 17:16:37 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 09:59:37 +00:00
|
|
|
.user-profile-field-name, .user-profile-field-value {
|
2019-11-17 17:16:37 +00:00
|
|
|
line-height: 18px;
|
2019-11-15 18:12:16 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2020-06-17 15:26:06 +00:00
|
|
|
padding: 0.5em 1.5em;
|
|
|
|
box-sizing: border-box;
|
2019-11-15 18:12:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-17 16:14:38 +00:00
|
|
|
.userlist-placeholder {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: middle;
|
|
|
|
padding: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-heading {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.loadmore-button, .alert {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loadmore-button {
|
|
|
|
height: 28px;
|
|
|
|
margin: 10px .6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title, .loadmore-text {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
}
|
2017-02-22 21:08:14 +00:00
|
|
|
}
|
2018-12-13 12:34:51 +00:00
|
|
|
.user-profile-placeholder {
|
|
|
|
.panel-body {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: middle;
|
|
|
|
padding: 7em;
|
|
|
|
}
|
|
|
|
}
|
2016-12-08 08:09:21 +00:00
|
|
|
</style>
|