2016-12-01 09:32:22 +11:00
|
|
|
<template>
|
2018-12-18 03:14:38 +11:00
|
|
|
<div>
|
2018-12-20 15:54:55 +11:00
|
|
|
<div v-if="user.id" class="user-profile panel panel-default">
|
2019-02-01 02:00:31 +11:00
|
|
|
<user-card-content
|
|
|
|
:user="user"
|
|
|
|
:switcher="true"
|
|
|
|
:selected="timeline.viewing"
|
|
|
|
/>
|
|
|
|
<tab-switcher :renderOnlyFocused="true">
|
|
|
|
<Timeline
|
|
|
|
:label="$t('user_card.statuses')"
|
|
|
|
:embedded="true"
|
|
|
|
:title="$t('user_profile.timeline_title')"
|
|
|
|
:timeline="timeline"
|
|
|
|
:timeline-name="'user'"
|
|
|
|
:user-id="fetchBy"
|
|
|
|
/>
|
2018-12-18 03:21:05 +11:00
|
|
|
<div :label="$t('user_card.followees')">
|
2019-02-03 07:29:10 +11:00
|
|
|
<FriendsList v-if="user.friends_count > 0" :userId="userId" />
|
2018-12-18 03:14:38 +11:00
|
|
|
<div class="userlist-placeholder" v-else>
|
|
|
|
<i class="icon-spin3 animate-spin"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-18 03:21:05 +11:00
|
|
|
<div :label="$t('user_card.followers')">
|
2019-02-03 07:29:10 +11:00
|
|
|
<FollowersList v-if="user.followers_count > 0" :userId="userId" />
|
2018-12-18 03:14:38 +11:00
|
|
|
<div class="userlist-placeholder" v-else>
|
|
|
|
<i class="icon-spin3 animate-spin"></i>
|
2018-12-13 23:34:51 +11:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-01 02:00:31 +11:00
|
|
|
<Timeline
|
|
|
|
:label="$t('user_card.media')"
|
|
|
|
:embedded="true" :title="$t('user_card.media')"
|
|
|
|
timeline-name="media"
|
|
|
|
:timeline="media"
|
|
|
|
:user-id="fetchBy"
|
|
|
|
/>
|
|
|
|
<Timeline
|
|
|
|
v-if="isUs"
|
|
|
|
:label="$t('user_card.favorites')"
|
|
|
|
:embedded="true"
|
|
|
|
:title="$t('user_card.favorites')"
|
|
|
|
timeline-name="favorites"
|
|
|
|
:timeline="favorites"
|
|
|
|
/>
|
2018-12-18 03:14:38 +11:00
|
|
|
</tab-switcher>
|
|
|
|
</div>
|
|
|
|
<div v-else class="panel user-profile-placeholder">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<div class="title">
|
|
|
|
{{ $t('settings.profile_tab') }}
|
2018-12-13 23:34:51 +11:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-18 03:14:38 +11:00
|
|
|
<div class="panel-body">
|
|
|
|
<i class="icon-spin3 animate-spin"></i>
|
|
|
|
</div>
|
2016-12-01 09:32:22 +11:00
|
|
|
</div>
|
2018-12-18 03:14:38 +11:00
|
|
|
</div>
|
2016-12-01 09:32:22 +11:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_profile.js"></script>
|
2016-12-08 19:09:21 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
2017-02-23 08:08:14 +11:00
|
|
|
.user-profile {
|
2018-04-08 02:30:27 +10:00
|
|
|
flex: 2;
|
|
|
|
flex-basis: 500px;
|
2018-12-18 03:14:38 +11:00
|
|
|
|
2018-12-31 07:41:31 +11:00
|
|
|
.profile-panel-background .panel-heading {
|
2018-04-08 02:30:27 +10:00
|
|
|
background: transparent;
|
2018-08-31 05:59:52 +10:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
2018-04-08 02:30:27 +10:00
|
|
|
}
|
2018-12-18 03:14:38 +11: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-23 08:08:14 +11:00
|
|
|
}
|
2018-12-13 23:34:51 +11:00
|
|
|
.user-profile-placeholder {
|
|
|
|
.panel-body {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: middle;
|
|
|
|
padding: 7em;
|
|
|
|
}
|
|
|
|
}
|
2016-12-08 19:09:21 +11:00
|
|
|
</style>
|