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">
|
2018-12-18 03:14:38 +11:00
|
|
|
<user-card-content :user="user" :switcher="true" :selected="timeline.viewing"></user-card-content>
|
|
|
|
<tab-switcher>
|
2019-01-09 22:18:36 +11:00
|
|
|
<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')">
|
|
|
|
<div v-if="friends">
|
|
|
|
<user-card v-for="friend in friends" :key="friend.id" :user="friend" :showFollows="true"></user-card>
|
2018-12-18 03:14:38 +11:00
|
|
|
</div>
|
|
|
|
<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')">
|
|
|
|
<div v-if="followers">
|
|
|
|
<user-card v-for="follower in followers" :key="follower.id" :user="follower" :showFollows="false"></user-card>
|
2018-12-18 03:14:38 +11:00
|
|
|
</div>
|
|
|
|
<div class="userlist-placeholder" v-else>
|
|
|
|
<i class="icon-spin3 animate-spin"></i>
|
2018-12-13 23:34:51 +11:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-01-24 21:48:40 +11:00
|
|
|
<Timeline :label="$t('user_card.media')" :embedded="true" :title="$t('user_profile.media_title')" timeline-name="media" :timeline="media" :user-id="fetchBy" />
|
2019-01-18 06:25:50 +11:00
|
|
|
<Timeline v-if="isUs" :label="$t('user_card.favorites')" :embedded="true" :title="$t('user_profile.favorites_title')" 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>
|