2016-10-27 04:03:55 +11:00
|
|
|
<template>
|
2017-08-22 03:25:01 +10:00
|
|
|
<div class="timeline panel panel-default" v-if="viewing == 'statuses'">
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="panel-heading timeline-heading">
|
2017-03-06 04:00:35 +11:00
|
|
|
<div class="title">
|
|
|
|
{{title}}
|
2016-10-29 00:40:13 +11:00
|
|
|
</div>
|
2018-04-14 06:04:31 +10:00
|
|
|
<div @click.prevent class="loadmore-error alert error" v-if="timelineError">
|
2017-11-08 01:14:37 +11:00
|
|
|
{{$t('timeline.error_fetching')}}
|
2017-06-22 00:15:45 +10:00
|
|
|
</div>
|
2018-09-04 05:12:18 +10:00
|
|
|
<button @click.prevent="showNewStatuses" class="loadmore-button" v-if="timeline.newStatusCount > 0 && !timelineError">
|
|
|
|
{{$t('timeline.show_new')}}{{newStatusCountStr}}
|
|
|
|
</button>
|
2018-11-27 12:54:59 +11:00
|
|
|
<div @click.prevent class="loadmore-text faint" v-if="!timeline.newStatusCount > 0 && !timelineError">
|
2017-11-08 01:14:37 +11:00
|
|
|
{{$t('timeline.up_to_date')}}
|
2017-06-22 00:15:45 +10:00
|
|
|
</div>
|
2017-03-06 04:00:35 +11:00
|
|
|
</div>
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="panel-body">
|
2017-03-02 06:36:37 +11:00
|
|
|
<div class="timeline">
|
2018-04-12 02:34:40 +10:00
|
|
|
<status-or-conversation v-for="status in timeline.visibleStatuses" :key="status.id" v-bind:statusoid="status" class="status-fadein"></status-or-conversation>
|
2016-11-07 03:44:05 +11:00
|
|
|
</div>
|
2017-03-02 06:36:37 +11:00
|
|
|
</div>
|
2018-04-12 02:34:40 +10:00
|
|
|
<div class="panel-footer">
|
|
|
|
<a href="#" v-on:click.prevent='fetchOlderStatuses()' v-if="!timeline.loading">
|
|
|
|
<div class="new-status-notification text-center panel-footer">{{$t('timeline.load_older')}}</div>
|
|
|
|
</a>
|
|
|
|
<div class="new-status-notification text-center panel-footer" v-else>...</div>
|
|
|
|
</div>
|
2016-10-27 04:03:55 +11:00
|
|
|
</div>
|
2017-08-22 03:25:01 +10:00
|
|
|
<div class="timeline panel panel-default" v-else-if="viewing == 'followers'">
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="panel-heading timeline-heading">
|
2017-08-22 03:25:01 +10:00
|
|
|
<div class="title">
|
2017-11-08 01:14:37 +11:00
|
|
|
{{$t('user_card.followers')}}
|
2017-08-22 03:25:01 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="panel-body">
|
2017-08-22 03:25:01 +10:00
|
|
|
<div class="timeline">
|
2018-02-05 02:26:46 +11:00
|
|
|
<user-card v-for="follower in followers" :key="follower.id" :user="follower" :showFollows="false"></user-card>
|
2017-08-22 03:25:01 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="timeline panel panel-default" v-else-if="viewing == 'friends'">
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="panel-heading timeline-heading">
|
2017-08-22 03:25:01 +10:00
|
|
|
<div class="title">
|
2017-11-08 01:14:37 +11:00
|
|
|
{{$t('user_card.followees')}}
|
2017-08-22 03:25:01 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="panel-body">
|
2017-08-22 03:25:01 +10:00
|
|
|
<div class="timeline">
|
2018-02-05 02:26:46 +11:00
|
|
|
<user-card v-for="friend in friends" :key="friend.id" :user="friend" :showFollows="true"></user-card>
|
2017-08-22 03:25:01 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-10-27 04:03:55 +11:00
|
|
|
</template>
|
|
|
|
<script src="./timeline.js"></script>
|
2017-01-16 01:44:56 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 12:28:20 +10:00
|
|
|
@import '../../_variables.scss';
|
2017-01-16 01:44:56 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
.timeline {
|
2018-04-08 02:30:27 +10:00
|
|
|
.loadmore-text {
|
2018-11-26 11:19:04 +11:00
|
|
|
opacity: 1;
|
2018-04-14 06:04:31 +10:00
|
|
|
}
|
2018-04-01 12:28:20 +10:00
|
|
|
}
|
2017-03-06 04:00:35 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
.new-status-notification {
|
2018-04-08 02:30:27 +10:00
|
|
|
position:relative;
|
|
|
|
margin-top: -1px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
border-width: 1px 0 0 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: var(--border, $fallback--border);
|
|
|
|
padding: 10px;
|
|
|
|
z-index: 1;
|
2018-10-08 03:59:22 +11:00
|
|
|
background-color: $fallback--fg;
|
2018-11-22 02:22:05 +11:00
|
|
|
background-color: var(--panel, $fallback--fg);
|
2018-04-08 02:30:27 +10:00
|
|
|
}
|
2017-01-16 01:44:56 +11:00
|
|
|
</style>
|