pleroma-fe/src/components/timeline/timeline.vue

110 lines
2.8 KiB
Vue
Raw Normal View History

2016-10-26 19:03:55 +02:00
<template>
2020-07-28 00:27:11 +02:00
<div :class="[classes.root, 'timeline']">
<div :class="classes.header">
<div class="title">
2019-07-05 09:17:44 +02:00
{{ title }}
2016-10-28 15:40:13 +02:00
</div>
2019-07-05 09:17:44 +02:00
<div
v-if="timelineError"
class="loadmore-error alert error"
@click.prevent
>
{{ $t('timeline.error_fetching') }}
</div>
2019-12-05 03:48:37 +01:00
<div
2019-12-09 01:02:34 +01:00
v-else-if="errorData"
2019-12-05 03:48:37 +01:00
class="loadmore-error alert error"
@click.prevent
>
2019-12-09 02:31:57 +01:00
{{ errorData.statusText }}
2019-12-05 03:48:37 +01:00
</div>
2019-07-05 09:17:44 +02:00
<button
2020-06-30 16:02:38 +02:00
v-else-if="showLoadButton"
2019-07-05 09:17:44 +02:00
class="loadmore-button"
@click.prevent="showNewStatuses"
>
{{ loadButtonString }}
</button>
2019-07-05 09:17:44 +02:00
<div
2020-06-30 16:02:38 +02:00
v-else
2019-07-05 09:17:44 +02:00
class="loadmore-text faint"
@click.prevent
>
{{ $t('timeline.up_to_date') }}
</div>
</div>
<div :class="classes.body">
<div class="timeline">
<template v-for="statusId in pinnedStatusIds">
<conversation
v-if="timeline.statusesObject[statusId]"
2019-07-20 04:46:11 +02:00
:key="statusId + '-pinned'"
class="status-fadein"
2019-09-03 19:19:14 +02:00
:status-id="statusId"
:collapsable="true"
2019-08-15 19:16:55 +02:00
:pinned-status-ids-object="pinnedStatusIdsObject"
2019-09-13 22:55:17 +02:00
:in-profile="inProfile"
:profile-user-id="userId"
/>
</template>
2019-07-20 22:54:30 +02:00
<template v-for="status in timeline.visibleStatuses">
<conversation
v-if="!excludedStatusIdsObject[status.id]"
:key="status.id"
class="status-fadein"
2019-09-03 19:19:14 +02:00
:status-id="status.id"
2019-07-20 22:54:30 +02:00
:collapsable="true"
2019-09-13 22:55:17 +02:00
:in-profile="inProfile"
:profile-user-id="userId"
2019-07-20 22:54:30 +02:00
/>
</template>
2016-11-06 17:44:05 +01:00
</div>
</div>
<div :class="classes.footer">
2019-07-05 09:17:44 +02:00
<div
v-if="count===0"
class="new-status-notification text-center panel-footer faint"
>
{{ $t('timeline.no_statuses') }}
</div>
2019-07-05 09:17:44 +02:00
<div
v-else-if="bottomedOut"
class="new-status-notification text-center panel-footer faint"
>
{{ $t('timeline.no_more_statuses') }}
</div>
2019-07-05 09:17:44 +02:00
<a
2019-12-09 01:02:34 +01:00
v-else-if="!timeline.loading && !errorData"
2019-07-05 09:17:44 +02:00
href="#"
@click.prevent="fetchOlderStatuses()"
>
<div class="new-status-notification text-center panel-footer">{{ $t('timeline.load_older') }}</div>
</a>
2019-12-05 03:48:37 +01:00
<a
2019-12-09 01:02:34 +01:00
v-else-if="errorData"
2019-12-05 03:48:37 +01:00
href="#"
>
2019-12-09 02:31:57 +01:00
<div class="new-status-notification text-center panel-footer">{{ errorData.error }}</div>
2019-12-05 03:48:37 +01:00
</a>
2019-07-05 09:17:44 +02:00
<div
v-else
class="new-status-notification text-center panel-footer"
>
<i class="icon-spin3 animate-spin" />
</div>
</div>
2016-10-26 19:03:55 +02:00
</div>
</template>
2016-10-26 19:03:55 +02:00
<script src="./timeline.js"></script>
<style lang="scss">
@import '../../_variables.scss';
.timeline {
2018-04-07 18:30:27 +02:00
.loadmore-text {
2018-11-26 01:19:04 +01:00
opacity: 1;
}
}
</style>