2016-10-26 17:03:55 +00:00
|
|
|
<template>
|
2018-12-17 16:14:38 +00:00
|
|
|
<div :class="classes.root">
|
|
|
|
<div :class="classes.header">
|
2017-03-05 17:00:35 +00:00
|
|
|
<div class="title">
|
2019-07-05 07:17:44 +00:00
|
|
|
{{ title }}
|
2016-10-28 13:40:13 +00:00
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
v-if="timelineError"
|
|
|
|
class="loadmore-error alert error"
|
|
|
|
@click.prevent
|
|
|
|
>
|
|
|
|
{{ $t('timeline.error_fetching') }}
|
2017-06-21 14:15:45 +00:00
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<button
|
|
|
|
v-if="timeline.newStatusCount > 0 && !timelineError"
|
|
|
|
class="loadmore-button"
|
|
|
|
@click.prevent="showNewStatuses"
|
|
|
|
>
|
|
|
|
{{ $t('timeline.show_new') }}{{ newStatusCountStr }}
|
2018-09-03 19:12:18 +00:00
|
|
|
</button>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
v-if="!timeline.newStatusCount > 0 && !timelineError"
|
|
|
|
class="loadmore-text faint"
|
|
|
|
@click.prevent
|
|
|
|
>
|
|
|
|
{{ $t('timeline.up_to_date') }}
|
2017-06-21 14:15:45 +00:00
|
|
|
</div>
|
2017-03-05 17:00:35 +00:00
|
|
|
</div>
|
2018-12-17 16:14:38 +00:00
|
|
|
<div :class="classes.body">
|
2019-07-20 02:40:37 +00:00
|
|
|
<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'"
|
2019-07-20 02:40:37 +00:00
|
|
|
class="status-fadein"
|
2019-09-03 17:19:14 +00:00
|
|
|
:status-id="statusId"
|
2019-07-20 02:40:37 +00:00
|
|
|
:collapsable="true"
|
2019-08-15 17:16:55 +00:00
|
|
|
:pinned-status-ids-object="pinnedStatusIdsObject"
|
2019-09-13 19:34:17 +00:00
|
|
|
:force-unmute="forceUnmute"
|
2019-07-20 02:40:37 +00:00
|
|
|
/>
|
|
|
|
</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 19:34:17 +00:00
|
|
|
:force-unmute="forceUnmute"
|
2019-07-20 20:54:30 +00:00
|
|
|
/>
|
|
|
|
</template>
|
2016-11-06 16:44:05 +00:00
|
|
|
</div>
|
2017-03-01 19:36:37 +00:00
|
|
|
</div>
|
2018-12-17 16:14:38 +00:00
|
|
|
<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') }}
|
2019-02-20 15:13:28 +00:00
|
|
|
</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') }}
|
2019-01-29 19:04:52 +00:00
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<a
|
|
|
|
v-else-if="!timeline.loading"
|
|
|
|
href="#"
|
|
|
|
@click.prevent="fetchOlderStatuses()"
|
|
|
|
>
|
|
|
|
<div class="new-status-notification text-center panel-footer">{{ $t('timeline.load_older') }}</div>
|
2018-04-11 16:34:40 +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" />
|
2019-01-29 19:04:52 +00:00
|
|
|
</div>
|
2018-04-11 16:34:40 +00:00
|
|
|
</div>
|
2016-10-26 17:03:55 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2018-12-17 16:14:38 +00:00
|
|
|
|
2016-10-26 17:03:55 +00:00
|
|
|
<script src="./timeline.js"></script>
|
2017-01-15 14:44:56 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 02:28:20 +00:00
|
|
|
@import '../../_variables.scss';
|
2017-01-15 14:44:56 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.timeline {
|
2018-04-07 16:30:27 +00:00
|
|
|
.loadmore-text {
|
2018-11-26 00:19:04 +00:00
|
|
|
opacity: 1;
|
2018-04-13 20:04:31 +00:00
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-03-05 17:00:35 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.new-status-notification {
|
2018-04-07 16:30:27 +00: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-07 16:59:22 +00:00
|
|
|
background-color: $fallback--fg;
|
2018-11-21 15:22:05 +00:00
|
|
|
background-color: var(--panel, $fallback--fg);
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2017-01-15 14:44:56 +00:00
|
|
|
</style>
|