2022-11-15 21:21:54 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-11-28 14:25:32 +00:00
|
|
|
const { t } = useI18n()
|
2022-12-17 23:29:16 +00:00
|
|
|
const showSettings = ref(false)
|
|
|
|
const pwaEnabled = useRuntimeConfig().public.pwaEnabled
|
2022-11-28 14:25:32 +00:00
|
|
|
|
2022-11-29 23:25:29 +00:00
|
|
|
const tabs = $computed(() => [
|
|
|
|
{
|
|
|
|
name: 'all',
|
2022-12-13 13:50:42 +00:00
|
|
|
to: '/notifications',
|
2022-11-29 23:25:29 +00:00
|
|
|
display: t('tab.notifications_all'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'mention',
|
2022-12-13 13:50:42 +00:00
|
|
|
to: '/notifications/mention',
|
2022-11-29 23:25:29 +00:00
|
|
|
display: t('tab.notifications_mention'),
|
|
|
|
},
|
|
|
|
] as const)
|
2022-12-17 23:29:16 +00:00
|
|
|
|
|
|
|
onActivated(() => {
|
|
|
|
showSettings.value = false
|
|
|
|
})
|
2022-11-15 21:21:54 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-30 18:16:23 +00:00
|
|
|
<MainContent>
|
2022-11-15 21:21:54 +00:00
|
|
|
<template #title>
|
2022-11-29 20:15:53 +00:00
|
|
|
<NuxtLink to="/notifications" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
|
|
|
<div i-ri:notification-4-line />
|
2022-12-27 17:49:15 +00:00
|
|
|
<span>{{ t('nav.notifications') }}</span>
|
2022-11-29 20:15:53 +00:00
|
|
|
</NuxtLink>
|
2022-11-15 21:21:54 +00:00
|
|
|
</template>
|
2022-11-24 06:42:26 +00:00
|
|
|
|
2022-12-17 23:29:16 +00:00
|
|
|
<template v-if="pwaEnabled" #actions>
|
|
|
|
<button
|
|
|
|
flex rounded-4 p1
|
|
|
|
hover:bg-active cursor-pointer transition-100
|
2022-12-27 18:00:42 +00:00
|
|
|
:title="showSettings ? t('notification.settings.close_btn') : t('notification.settings.show_btn')"
|
2022-12-17 23:29:16 +00:00
|
|
|
@click="showSettings = !showSettings"
|
|
|
|
>
|
2022-12-30 16:24:21 +00:00
|
|
|
<span aria-hidden="true" :class="showSettings ? 'i-ri:close-line' : 'i-ri:settings-line'" />
|
2022-12-17 23:29:16 +00:00
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
2022-11-23 08:08:49 +00:00
|
|
|
<template #header>
|
2022-12-13 13:50:42 +00:00
|
|
|
<CommonRouteTabs replace :options="tabs" />
|
2022-11-23 08:08:49 +00:00
|
|
|
</template>
|
2022-12-17 23:29:16 +00:00
|
|
|
|
|
|
|
<slot>
|
|
|
|
<template v-if="pwaEnabled">
|
|
|
|
<NotificationPreferences :show="showSettings" />
|
|
|
|
</template>
|
2022-12-26 05:39:18 +00:00
|
|
|
|
2022-12-17 23:29:16 +00:00
|
|
|
<NuxtPage />
|
|
|
|
</slot>
|
2022-11-15 21:21:54 +00:00
|
|
|
</MainContent>
|
|
|
|
</template>
|