Updated to-do list

This commit is contained in:
Natty 2024-03-06 15:01:29 +01:00
parent ea0d681e5c
commit cbf6c7fe43
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
1 changed files with 3 additions and 3 deletions

View File

@ -206,12 +206,12 @@ const emit = defineEmits<{
}>();
// Let's establish some rules for how notifications should be grouped:
// 1. Incoming notifications can form a group or be added to an existing group, up to a limit
// 1. [DONE] Incoming notifications can form a group or be added to an existing group, up to a limit
// 2. [DONE] Initially loaded notifications can form a group
// 3. [DONE] Notifications are not grouped across loading boundaries
// 4. Notification groups can only be appended to when scrolled to the top
// 4. [DONE] Notification groups can only be appended to when scrolled to the top
// 5. [MAYBE] Items in the queue do not cross the original boundary when prepended
// 5. [MAYBE] Items that would be be pushed out by another item CAN break boundaries, but only with adjacent items
// 5. [MAYBE] Items that would be pushed out by another item CAN break boundaries, but only with adjacent items
const groupIntra = (
notifications: packed.PackNotification[]