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

120 lines
3 KiB
Vue
Raw Normal View History

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