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

71 lines
2 KiB
Vue
Raw Normal View History

2016-11-27 18:44:56 +00:00
<template>
2019-07-05 07:17:44 +00:00
<div
:class="{ minimal: minimalMode }"
class="notifications"
>
<div :class="mainClass">
2019-07-05 07:17:44 +00:00
<div
v-if="!noHeading"
class="panel-heading"
>
2018-08-28 13:14:32 +00:00
<div class="title">
2019-07-05 07:17:44 +00:00
{{ $t('notifications.notifications') }}
<span
v-if="unseenCount"
class="badge badge-notification unseen-count"
>{{ unseenCount }}</span>
2018-08-28 13:14:32 +00:00
</div>
2019-07-05 07:17:44 +00:00
<button
v-if="unseenCount"
class="button-default read-button"
2019-07-05 07:17:44 +00:00
@click.prevent="markAsSeen"
>
{{ $t('notifications.read') }}
</button>
2021-03-01 14:21:35 +00:00
<NotificationFilters />
</div>
<div class="panel-body">
2019-07-05 07:17:44 +00:00
<div
2020-01-14 13:28:57 +00:00
v-for="notification in notificationsToDisplay"
2019-07-05 07:17:44 +00:00
:key="notification.id"
class="notification"
:class="{&quot;unseen&quot;: !minimalMode && !notification.seen}"
>
<div class="notification-overlay" />
<notification :notification="notification" />
2016-11-27 18:44:56 +00:00
</div>
</div>
<div class="panel-footer">
2019-07-05 07:17:44 +00:00
<div
v-if="bottomedOut"
class="new-status-notification text-center panel-footer faint"
>
{{ $t('notifications.no_more_notifications') }}
</div>
<button
2019-07-05 07:17:44 +00:00
v-else-if="!loading"
2020-11-26 16:25:21 +00:00
class="button-unstyled -link -fullwidth"
2019-07-05 07:17:44 +00:00
@click.prevent="fetchOlderNotifications()"
>
<div class="new-status-notification text-center panel-footer">
2019-07-05 07:17:44 +00:00
{{ minimalMode ? $t('interactions.load_older') : $t('notifications.load_older') }}
</div>
</button>
2019-07-05 07:17:44 +00:00
<div
v-else
class="new-status-notification text-center panel-footer"
>
2020-10-20 21:31:16 +00:00
<FAIcon
icon="circle-notch"
spin
size="lg"
/>
</div>
</div>
2016-11-27 18:44:56 +00:00
</div>
</div>
</template>
<script src="./notifications.js"></script>
<style lang="scss" src="./notifications.scss"></style>