elk/pages/notifications.vue

58 lines
1.4 KiB
Vue
Raw Normal View History

2022-11-15 22:21:54 +01:00
<script setup lang="ts">
2023-01-24 19:52:48 +01:00
import type { CommonRouteTabOption } from '~/components/common/CommonRouteTabs.vue'
2022-11-15 22:21:54 +01:00
definePageMeta({
middleware: 'auth',
})
2022-11-28 15:25:32 +01:00
const { t } = useI18n()
const pwaEnabled = useAppConfig().pwaEnabled
2022-11-28 15:25:32 +01:00
2023-01-24 19:52:48 +01:00
const tabs = $computed<CommonRouteTabOption[]>(() => [
2022-11-30 00:25:29 +01:00
{
name: 'all',
to: '/notifications',
display: isHydrated.value ? t('tab.notifications_all') : '',
2022-11-30 00:25:29 +01:00
},
{
name: 'mention',
to: '/notifications/mention',
display: isHydrated.value ? t('tab.notifications_mention') : '',
2022-11-30 00:25:29 +01:00
},
2023-01-24 19:52:48 +01:00
])
2022-11-15 22:21:54 +01:00
</script>
<template>
2022-12-30 19:16:23 +01:00
<MainContent>
2022-11-15 22:21:54 +01:00
<template #title>
2023-01-05 00:17:30 +01:00
<NuxtLink to="/notifications" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
2022-11-29 21:15:53 +01:00
<div i-ri:notification-4-line />
2022-12-27 18:49:15 +01:00
<span>{{ t('nav.notifications') }}</span>
2022-11-29 21:15:53 +01:00
</NuxtLink>
2022-11-15 22:21:54 +01:00
</template>
2022-11-24 07:42:26 +01:00
<template #actions>
<NuxtLink
flex rounded-4 p1
hover:bg-active cursor-pointer transition-100
:title="t('settings.notifications.show_btn')"
to="/settings/notifications"
>
<span aria-hidden="true" i-ri:notification-badge-line />
</NuxtLink>
</template>
2022-11-23 09:08:49 +01:00
<template #header>
<CommonRouteTabs replace :options="tabs" />
2022-11-23 09:08:49 +01:00
</template>
<slot>
<template v-if="pwaEnabled">
<NotificationPreferences />
</template>
<NuxtPage />
</slot>
2022-11-15 22:21:54 +01:00
</MainContent>
</template>