Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/pleroma-fe/pulls/244
125 lines
3.3 KiB
Vue
125 lines
3.3 KiB
Vue
<template>
|
|
<div :class="['Timeline', classes.root]">
|
|
<div :class="classes.header">
|
|
<template v-if="!embedded">
|
|
<TimelineMenuTabs v-if="showPanelNavShortcuts" />
|
|
<TimelineMenu v-else />
|
|
</template>
|
|
|
|
<button
|
|
v-if="showLoadButton"
|
|
class="button-default loadmore-button"
|
|
@click.prevent="showNewStatuses"
|
|
>
|
|
{{ loadButtonString }}
|
|
</button>
|
|
<div
|
|
v-else-if="!embedded"
|
|
class="loadmore-text faint"
|
|
@click.prevent
|
|
>
|
|
{{ $t('timeline.up_to_date') }}
|
|
</div>
|
|
<TimelineQuickSettings v-if="!embedded" />
|
|
<div
|
|
v-if="currentUser && tag !== undefined && tagData && !tagFollowed"
|
|
class="followTag"
|
|
>
|
|
<button
|
|
class="button-default"
|
|
:title="$t('timeline.follow_tag')"
|
|
@click="followTag(tag)"
|
|
>
|
|
<FAIcon
|
|
size="sm"
|
|
icon="plus"
|
|
/>
|
|
</button>
|
|
</div>
|
|
<div
|
|
v-if="currentUser && tag !== undefined && tagData && tagFollowed"
|
|
class="followTag"
|
|
>
|
|
<button
|
|
class="button-default"
|
|
:title="$t('timeline.unfollow_tag')"
|
|
@click="unfollowTag(tag)"
|
|
>
|
|
<FAIcon
|
|
size="sm"
|
|
icon="minus"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div :class="classes.body">
|
|
<div
|
|
ref="timeline"
|
|
class="timeline"
|
|
>
|
|
<conversation
|
|
v-for="statusId in filteredPinnedStatusIds"
|
|
:key="statusId + '-pinned'"
|
|
class="status-fadein"
|
|
:status-id="statusId"
|
|
:collapsable="true"
|
|
:pinned-status-ids-object="pinnedStatusIdsObject"
|
|
:in-profile="inProfile"
|
|
:profile-user-id="userId"
|
|
/>
|
|
<conversation
|
|
v-for="status in filteredVisibleStatuses"
|
|
:key="status.id"
|
|
class="status-fadein"
|
|
:status-id="status.id"
|
|
:collapsable="true"
|
|
:in-profile="inProfile"
|
|
:profile-user-id="userId"
|
|
:virtual-hidden="virtualScrollingEnabled && !statusesToDisplay.includes(status.id)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div :class="classes.footer">
|
|
<teleport
|
|
:to="footerSlipgate"
|
|
:disabled="!embedded || !footerSlipgate"
|
|
>
|
|
<div
|
|
v-if="count===0"
|
|
class="new-status-notification text-center faint"
|
|
>
|
|
{{ $t('timeline.no_statuses') }}
|
|
</div>
|
|
<div
|
|
v-else-if="bottomedOut"
|
|
class="new-status-notification text-center faint"
|
|
>
|
|
{{ $t('timeline.no_more_statuses') }}
|
|
</div>
|
|
<button
|
|
v-else-if="!timeline.loading"
|
|
class="button-unstyled -link"
|
|
@click.prevent="fetchOlderStatuses()"
|
|
>
|
|
<div class="new-status-notification text-center">
|
|
{{ $t('timeline.load_older') }}
|
|
</div>
|
|
</button>
|
|
<div
|
|
v-else
|
|
class="new-status-notification text-center"
|
|
>
|
|
<FAIcon
|
|
icon="circle-notch"
|
|
spin
|
|
size="lg"
|
|
/>
|
|
</div>
|
|
</teleport>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./timeline.js"></script>
|
|
|
|
<style src="./timeline.scss" lang="scss"> </style>
|