2022-11-15 21:21:54 +00:00
|
|
|
<script setup lang="ts">
|
2023-09-06 09:13:16 +00:00
|
|
|
import type { mastodon } from 'masto'
|
|
|
|
import { NOTIFICATION_FILTER_TYPES } from '~/constants'
|
2024-02-24 12:24:21 +00:00
|
|
|
import type { CommonRouteTabMoreOption, CommonRouteTabOption } from '~/types'
|
2023-01-24 18:52:48 +00:00
|
|
|
|
2022-11-15 21:21:54 +00:00
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2023-09-06 09:13:16 +00:00
|
|
|
const route = useRoute()
|
2022-11-28 14:25:32 +00:00
|
|
|
const { t } = useI18n()
|
2023-01-29 14:18:27 +00:00
|
|
|
const pwaEnabled = useAppConfig().pwaEnabled
|
2022-11-28 14:25:32 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const tabs = computed<CommonRouteTabOption[]>(() => [
|
2022-11-29 23:25:29 +00:00
|
|
|
{
|
|
|
|
name: 'all',
|
2022-12-13 13:50:42 +00:00
|
|
|
to: '/notifications',
|
2024-02-24 12:24:21 +00:00
|
|
|
display: t('tab.notifications_all'),
|
2022-11-29 23:25:29 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'mention',
|
2022-12-13 13:50:42 +00:00
|
|
|
to: '/notifications/mention',
|
2024-02-24 12:24:21 +00:00
|
|
|
display: t('tab.notifications_mention'),
|
2022-11-29 23:25:29 +00:00
|
|
|
},
|
2023-01-24 18:52:48 +00:00
|
|
|
])
|
2023-09-06 09:13:16 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const filter = computed<mastodon.v1.NotificationType | undefined>(() => {
|
2023-09-06 09:13:16 +00:00
|
|
|
if (!isHydrated.value)
|
|
|
|
return undefined
|
|
|
|
|
|
|
|
const rawFilter = route.params?.filter
|
|
|
|
const actualFilter = Array.isArray(rawFilter) ? rawFilter[0] : rawFilter
|
|
|
|
if (isNotificationFilter(actualFilter))
|
|
|
|
return actualFilter
|
|
|
|
})
|
|
|
|
|
|
|
|
const filterIconMap: Record<mastodon.v1.NotificationType, string> = {
|
|
|
|
'mention': 'i-ri:at-line',
|
|
|
|
'status': 'i-ri:account-pin-circle-line',
|
|
|
|
'reblog': 'i-ri:repeat-fill',
|
|
|
|
'follow': 'i-ri:user-follow-line',
|
|
|
|
'follow_request': 'i-ri:user-shared-line',
|
|
|
|
'favourite': 'i-ri:heart-3-line',
|
|
|
|
'poll': 'i-ri:chat-poll-line',
|
|
|
|
'update': 'i-ri:edit-2-line',
|
|
|
|
'admin.sign_up': 'i-ri:user-add-line',
|
|
|
|
'admin.report': 'i-ri:flag-line',
|
|
|
|
}
|
|
|
|
|
2024-02-24 12:24:21 +00:00
|
|
|
const filterText = computed(() => `${t('tab.notifications_more_tooltip')}${filter.value ? `: ${t(`tab.notifications_${filter.value}`)}` : ''}`)
|
2024-02-21 15:20:08 +00:00
|
|
|
const notificationFilterRoutes = computed<CommonRouteTabOption[]>(() => NOTIFICATION_FILTER_TYPES.map(
|
2023-09-06 09:13:16 +00:00
|
|
|
name => ({
|
|
|
|
name,
|
|
|
|
to: `/notifications/${name}`,
|
2024-02-24 12:24:21 +00:00
|
|
|
display: t(`tab.notifications_${name}`),
|
2023-09-06 09:13:16 +00:00
|
|
|
icon: filterIconMap[name],
|
2024-02-21 15:20:08 +00:00
|
|
|
match: name === filter.value,
|
2023-09-06 09:13:16 +00:00
|
|
|
}),
|
|
|
|
))
|
2024-02-21 15:20:08 +00:00
|
|
|
const moreOptions = computed<CommonRouteTabMoreOption>(() => ({
|
|
|
|
options: notificationFilterRoutes.value,
|
2023-09-06 09:13:16 +00:00
|
|
|
icon: 'i-ri:filter-2-line',
|
2024-02-21 15:20:08 +00:00
|
|
|
tooltip: filterText.value,
|
|
|
|
match: !!filter.value,
|
2023-09-06 09:13:16 +00:00
|
|
|
}))
|
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>
|
2023-01-04 23:17:30 +00:00
|
|
|
<NuxtLink to="/notifications" timeline-title-style flex items-center gap-2 @click="$scrollToTop">
|
2022-11-29 20:15:53 +00:00
|
|
|
<div i-ri:notification-4-line />
|
2024-02-24 12:24:21 +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
|
|
|
|
2023-01-05 08:47:58 +00:00
|
|
|
<template #actions>
|
|
|
|
<NuxtLink
|
2022-12-17 23:29:16 +00:00
|
|
|
flex rounded-4 p1
|
|
|
|
hover:bg-active cursor-pointer transition-100
|
2024-02-24 12:24:21 +00:00
|
|
|
:title="t('settings.notifications.show_btn')"
|
2023-01-05 08:47:58 +00:00
|
|
|
to="/settings/notifications"
|
2022-12-17 23:29:16 +00:00
|
|
|
>
|
2023-01-05 08:47:58 +00:00
|
|
|
<span aria-hidden="true" i-ri:notification-badge-line />
|
|
|
|
</NuxtLink>
|
2022-12-17 23:29:16 +00:00
|
|
|
</template>
|
|
|
|
|
2022-11-23 08:08:49 +00:00
|
|
|
<template #header>
|
2023-09-06 09:13:16 +00:00
|
|
|
<CommonRouteTabs replace :options="tabs" :more-options="moreOptions" />
|
2022-11-23 08:08:49 +00:00
|
|
|
</template>
|
2022-12-17 23:29:16 +00:00
|
|
|
|
|
|
|
<slot>
|
|
|
|
<template v-if="pwaEnabled">
|
2023-01-05 08:47:58 +00:00
|
|
|
<NotificationPreferences />
|
2022-12-17 23:29:16 +00:00
|
|
|
</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>
|