mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-05-12 05:37:29 +08:00
Revert "feat: add paginated notifications and unread endpoint"
This reverts commit 73168c1859.
This commit is contained in:
@@ -53,13 +53,13 @@
|
||||
</div>
|
||||
|
||||
<BasePlaceholder
|
||||
v-else-if="notifications.length === 0"
|
||||
v-else-if="filteredNotifications.length === 0"
|
||||
text="暂时没有消息 :)"
|
||||
icon="fas fa-inbox"
|
||||
/>
|
||||
|
||||
<div class="timeline-container" v-if="notifications.length > 0">
|
||||
<BaseTimeline :items="notifications">
|
||||
<div class="timeline-container" v-if="filteredNotifications.length > 0">
|
||||
<BaseTimeline :items="filteredNotifications">
|
||||
<template #item="{ item }">
|
||||
<div class="notif-content" :class="{ read: item.read }">
|
||||
<span v-if="!item.read" class="unread-dot"></span>
|
||||
@@ -505,23 +505,16 @@
|
||||
</div>
|
||||
</template>
|
||||
</BaseTimeline>
|
||||
<InfiniteLoadMore
|
||||
:key="ioKey"
|
||||
:on-load="fetchNextPage"
|
||||
:pause="isLoadingMessage"
|
||||
root-margin="200px 0px"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { computed, onActivated, ref, watch } from 'vue'
|
||||
import { computed, onMounted, ref } from 'vue'
|
||||
import BasePlaceholder from '~/components/BasePlaceholder.vue'
|
||||
import BaseTimeline from '~/components/BaseTimeline.vue'
|
||||
import NotificationContainer from '~/components/NotificationContainer.vue'
|
||||
import InfiniteLoadMore from '~/components/InfiniteLoadMore.vue'
|
||||
import { toast } from '~/main'
|
||||
import { authState, getToken } from '~/utils/auth'
|
||||
import { stripMarkdownLength } from '~/utils/markdown'
|
||||
@@ -542,11 +535,9 @@ const selectedTab = ref(
|
||||
['all', 'unread', 'control'].includes(route.query.tab) ? route.query.tab : 'unread',
|
||||
)
|
||||
const notificationPrefs = ref([])
|
||||
const ioKey = computed(() => selectedTab.value)
|
||||
const loadFirstPage = async () => {
|
||||
await fetchNotifications({ unread: selectedTab.value === 'unread', reset: true })
|
||||
}
|
||||
const fetchNextPage = async () => fetchNotifications()
|
||||
const filteredNotifications = computed(() =>
|
||||
selectedTab.value === 'all' ? notifications.value : notifications.value.filter((n) => !n.read),
|
||||
)
|
||||
|
||||
const fetchPrefs = async () => {
|
||||
notificationPrefs.value = await fetchNotificationPreferences()
|
||||
@@ -556,7 +547,7 @@ const togglePref = async (pref) => {
|
||||
const ok = await updateNotificationPreference(pref.type, !pref.enabled)
|
||||
if (ok) {
|
||||
pref.enabled = !pref.enabled
|
||||
await fetchNotifications({ unread: selectedTab.value === 'unread', reset: true })
|
||||
await fetchNotifications()
|
||||
await fetchUnreadCount()
|
||||
} else {
|
||||
toast.error('操作失败')
|
||||
@@ -636,12 +627,8 @@ const formatType = (t) => {
|
||||
}
|
||||
}
|
||||
|
||||
watch(selectedTab, (val) => {
|
||||
if (val !== 'control') loadFirstPage()
|
||||
})
|
||||
|
||||
onActivated(() => {
|
||||
if (selectedTab.value !== 'control') loadFirstPage()
|
||||
fetchNotifications()
|
||||
fetchPrefs()
|
||||
})
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user