Don't show more then three announcement popups (because it can be annoying for new users)
This commit is contained in:
parent
d8a94fc707
commit
20fbb4f57e
@ -273,19 +273,26 @@ function checkForSplash() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($i) {
|
if ($i) {
|
||||||
api("announcements", { withUnreads: true })
|
api("announcements", { withUnreads: true, limit: 10 })
|
||||||
.then((announcements) => {
|
.then((announcements) => {
|
||||||
announcements.forEach((announcement) => {
|
const unreadAnnouncements = announcements.filter((item) => {
|
||||||
if (announcement.showPopup && announcement.isRead === false)
|
return !item.isRead;
|
||||||
popup(
|
|
||||||
defineAsyncComponent(
|
|
||||||
() => import("@/components/MkAnnouncement.vue"),
|
|
||||||
),
|
|
||||||
{ announcement: announcement },
|
|
||||||
{},
|
|
||||||
"closed",
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
if (unreadAnnouncements.length > 3) {
|
||||||
|
// TODO: navigate to the announcements page when there are too many unreads
|
||||||
|
} else {
|
||||||
|
unreadAnnouncements.forEach((item) => {
|
||||||
|
if (item.showPopup)
|
||||||
|
popup(
|
||||||
|
defineAsyncComponent(
|
||||||
|
() => import("@/components/MkAnnouncement.vue"),
|
||||||
|
),
|
||||||
|
{ announcement: item },
|
||||||
|
{},
|
||||||
|
"closed",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch((err) => console.log(err));
|
.catch((err) => console.log(err));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user