2022-12-26 05:39:18 +00:00
|
|
|
<script setup lang="ts">
|
2023-09-06 10:13:16 +01:00
|
|
|
import type { mastodon } from 'masto'
|
2024-03-06 22:00:07 +00:00
|
|
|
import { STORAGE_KEY_LAST_ACCESSED_NOTIFICATION_ROUTE } from '~/constants'
|
2023-09-06 10:13:16 +01:00
|
|
|
|
|
|
|
const { filter } = defineProps<{
|
|
|
|
filter?: mastodon.v1.NotificationType
|
|
|
|
}>()
|
|
|
|
|
2024-03-06 22:00:07 +00:00
|
|
|
const route = useRoute()
|
|
|
|
const lastAccessedNotificationRoute = useLocalStorage(STORAGE_KEY_LAST_ACCESSED_NOTIFICATION_ROUTE, '')
|
|
|
|
|
2023-09-06 10:13:16 +01:00
|
|
|
const options = { limit: 30, types: filter ? [filter] : [] }
|
|
|
|
|
2022-12-26 05:39:18 +00:00
|
|
|
// Default limit is 20 notifications, and servers are normally caped to 30
|
2023-09-06 10:13:16 +01:00
|
|
|
const paginator = useMastoClient().v1.notifications.list(options)
|
2024-01-21 08:52:52 +00:00
|
|
|
const stream = useStreaming(client => client.user.notification.subscribe())
|
2022-12-26 05:39:18 +00:00
|
|
|
|
2024-03-06 22:00:07 +00:00
|
|
|
lastAccessedNotificationRoute.value = route.path.replace(/\/notifications\/?/, '')
|
|
|
|
|
2022-12-26 05:39:18 +00:00
|
|
|
const { clearNotifications } = useNotifications()
|
2024-03-06 22:00:07 +00:00
|
|
|
onActivated(() => {
|
|
|
|
clearNotifications()
|
|
|
|
lastAccessedNotificationRoute.value = route.path.replace(/\/notifications\/?/, '')
|
|
|
|
})
|
2022-12-26 05:39:18 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NotificationPaginator v-bind="{ paginator, stream }" />
|
|
|
|
</template>
|