about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-11-16 14:36:16 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-11-16 14:36:16 -0600
commitbd1a4b198e3682f96354d83f1e1efccf31813f82 (patch)
tree1170a844d2eed7d2f107b9ec71fc9c5fecf418f4
parent92046473f8c1cff4105e9269fb01d889b26156ae (diff)
downloadvoidsky-bd1a4b198e3682f96354d83f1e1efccf31813f82.tar.zst
Clear notifications count optimistically
-rw-r--r--src/state/models/me.ts4
-rw-r--r--src/state/models/notifications-view.ts1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/state/models/me.ts b/src/state/models/me.ts
index cefd893ca..78c6d2e76 100644
--- a/src/state/models/me.ts
+++ b/src/state/models/me.ts
@@ -49,6 +49,10 @@ export class MeModel {
     }
   }
 
+  clearNotificationCount() {
+    this.notificationCount = 0
+  }
+
   async fetchStateUpdate() {
     const res = await this.rootStore.api.app.bsky.notification.getCount()
     runInAction(() => {
diff --git a/src/state/models/notifications-view.ts b/src/state/models/notifications-view.ts
index c328be62b..b841c7f3a 100644
--- a/src/state/models/notifications-view.ts
+++ b/src/state/models/notifications-view.ts
@@ -332,6 +332,7 @@ export class NotificationsViewModel {
       await this.rootStore.api.app.bsky.notification.updateSeen({
         seenAt: new Date().toISOString(),
       })
+      this.rootStore.me.clearNotificationCount()
     } catch (e) {
       console.log('Failed to update notifications read state', e)
     }