Skip to content
Snippets Groups Projects
Commit 0c772aa7 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch...

Merge branch '867-unreadnotificationscount-is-queried-when-accessing-notifications-even-though-there-is-no-need' into 'master'

Resolve "unreadNotificationsCount is queried when accessing notifications even though there is no need for it"

Closes #867

See merge request !1255
parents cc202466 31a6f294
No related branches found
No related tags found
1 merge request!1255Resolve "unreadNotificationsCount is queried when accessing notifications even though there is no need for it"
Pipeline #134449 canceled
...@@ -14,6 +14,7 @@ Fixed ...@@ -14,6 +14,7 @@ Fixed
* Progress page didn't work properly. * Progress page didn't work properly.
* About page failed to load for apps with an unknown licence. * About page failed to load for apps with an unknown licence.
* Querying for notification caused unnecessary database requests.
* Loading bar didn't disappear on some pages after loading was finished. * Loading bar didn't disappear on some pages after loading was finished.
`3.1`_ - 2022-05-30 `3.1`_ - 2022-05-30
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
v-if=" v-if="
myNotifications && myNotifications &&
myNotifications.person && myNotifications.person &&
myNotifications.person.unreadNotificationsCount > 0 myNotifications.person.notifications.length > 0
" "
> >
mdi-bell-badge-outline mdi-bell-badge-outline
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
v-if=" v-if="
myNotifications.person && myNotifications.person &&
myNotifications.person.notifications && myNotifications.person.notifications &&
myNotifications.person.notifications.length unreadNotifications.length
" "
> >
<v-subheader>{{ $t("notifications.notifications") }}</v-subheader> <v-subheader>{{ $t("notifications.notifications") }}</v-subheader>
...@@ -86,5 +86,10 @@ export default { ...@@ -86,5 +86,10 @@ export default {
pollInterval: 30000, pollInterval: 30000,
}, },
}, },
computed: {
unreadNotifications() {
return this.myNotifications.filter(n => !n.read);
},
},
}; };
</script> </script>
{ {
myNotifications: whoAmI { myNotifications: whoAmI {
person { person {
unreadNotificationsCount
notifications { notifications {
id id
title title
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment