elk/pages/notifications.vue

56 lines
1.5 KiB
Vue
Raw Normal View History

2022-11-15 22:21:54 +01:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
2022-11-28 15:25:32 +01:00
const { t } = useI18n()
2022-12-11 23:40:40 +01:00
// Default limit is 20 notifications, and servers are normally caped to 30
const paginatorAll = useMasto().notifications.iterate({ limit: 30 })
const paginatorMention = useMasto().notifications.iterate({ limit: 30, types: ['mention'] })
2022-11-19 16:15:19 +01:00
const { clearNotifications } = useNotifications()
onActivated(clearNotifications)
const stream = await useMasto().stream.streamUser()
2022-11-30 00:25:29 +01:00
const tabs = $computed(() => [
{
name: 'all',
display: t('tab.notifications_all'),
paginator: paginatorAll,
},
{
name: 'mention',
display: t('tab.notifications_mention'),
paginator: paginatorMention,
},
] as const)
// Don't use local storage because it is better to default to Posts every time you visit a user's profile.
const tab = $ref(tabs[0].name)
const paginator = $computed(() => tabs.find(t => t.name === tab)!.paginator)
2022-11-25 12:48:48 +01:00
useHeadFixed({
2022-11-28 15:25:32 +01:00
title: () => t('nav_side.notifications'),
2022-11-25 12:48:48 +01:00
})
2022-11-15 22:21:54 +01:00
</script>
<template>
<MainContent>
<template #title>
2022-11-29 21:15:53 +01:00
<NuxtLink to="/notifications" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:notification-4-line />
<span>{{ t('nav_side.notifications') }}</span>
</NuxtLink>
2022-11-15 22:21:54 +01:00
</template>
2022-11-24 07:42:26 +01:00
2022-11-23 09:08:49 +01:00
<template #header>
2022-11-30 00:25:29 +01:00
<CommonTabs v-model="tab" :options="tabs" />
2022-11-23 09:08:49 +01:00
</template>
<slot>
<NotificationPaginator :key="tab" v-bind="{ paginator, stream }" />
2022-11-15 22:21:54 +01:00
</slot>
</MainContent>
</template>