fix: notification badge (#2592)

Co-authored-by: Ayo <ramon.aycojr@gmail.com>
main
Shinigami 2024-02-16 17:48:53 +01:00 committed by GitHub
parent dcc1b74824
commit 1bbc2eca24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 2 deletions

View File

@ -10,8 +10,10 @@ export function useNotifications() {
async function clearNotifications() {
if (!id || !notifications[id])
return
const lastReadId = notifications[id]![1][0]
notifications[id]![1] = []
if (lastReadId) {
await client.v1.markers.create({
notifications: { lastReadId },
@ -30,11 +32,11 @@ export function useNotifications() {
if (!isHydrated.value || !id || notifications[id] !== undefined || !currentUser.value?.token)
return
let resolveStream
let resolveStream: ((value: mastodon.streaming.Subscription | PromiseLike<mastodon.streaming.Subscription>) => void) | undefined
const streamPromise = new Promise<mastodon.streaming.Subscription>(resolve => resolveStream = resolve)
notifications[id] = [streamPromise, []]
await until($$(streamingClient)).toBe(true)
await until($$(streamingClient)).toBeTruthy()
const stream = streamingClient!.user.subscribe()
resolveStream!(stream)
@ -43,6 +45,7 @@ export function useNotifications() {
const position = await client.v1.markers.fetch({ timeline: ['notifications'] })
const paginator = client.v1.notifications.list({ limit: 30 })
do {
const result = await paginator.next()
if (!result.done && result.value.length) {