elk/pages/notifications.vue
2023-01-09 22:27:03 +02:00

55 lines
1.2 KiB
Vue

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const { $t } = useFluent()
const pwaEnabled = useRuntimeConfig().public.pwaEnabled
const tabs = $computed(() => [
{
name: 'all',
to: '/notifications',
display: $t('tab_notifications_all'),
},
{
name: 'mention',
to: '/notifications/mention',
display: $t('tab_notifications_mention'),
},
] as const)
</script>
<template>
<MainContent>
<template #title>
<NuxtLink to="/notifications" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
<div i-ri:notification-4-line />
<span>{{ $t('nav_notifications') }}</span>
</NuxtLink>
</template>
<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>
<template #header>
<CommonRouteTabs replace :options="tabs" />
</template>
<slot>
<template v-if="pwaEnabled">
<NotificationPreferences />
</template>
<NuxtPage />
</slot>
</MainContent>
</template>