elk/pages/notifications.vue

32 wiersze
810 B
Vue
Czysty Zwykły widok Historia

2022-11-15 21:21:54 +00:00
<script setup lang="ts">
2022-11-23 13:06:27 +00:00
import { STORAGE_KEY_NOTIFY_TAB } from '~/constants'
2022-11-15 21:21:54 +00:00
definePageMeta({
middleware: 'auth',
})
const tabNames = ['All', 'Mentions'] as const
2022-11-23 13:06:27 +00:00
const tab = $(useLocalStorage<typeof tabNames[number]>(STORAGE_KEY_NOTIFY_TAB, 'All'))
2022-11-19 15:15:19 +00:00
const paginator = $computed(() => {
return masto.notifications.getIterator(tab === 'All' ? undefined : { types: ['mention'] })
2022-11-19 15:15:19 +00:00
})
2022-11-15 21:21:54 +00:00
</script>
<template>
<MainContent>
<template #title>
2022-11-23 08:08:49 +00:00
<span text-lg font-bold>Notifications</span>
2022-11-15 21:21:54 +00:00
</template>
<template #actions>
2022-11-23 08:08:49 +00:00
<div i-ri:equalizer-fill mr-1 h-6 />
2022-11-15 21:21:54 +00:00
</template>
2022-11-23 08:08:49 +00:00
<template #header>
<CommonTabs v-model="tab" :options="tabNames" />
2022-11-23 08:08:49 +00:00
</template>
<slot>
2022-11-19 15:15:19 +00:00
<NotificationPaginator :key="tab" :paginator="paginator" />
2022-11-15 21:21:54 +00:00
</slot>
</MainContent>
</template>