Summarise changes in the activity log display #425
Labels
No labels
automation
backend
bug
contributor experience
data
deployment
documentation
duplicate
good first issue
help wanted
nice to have
notifications
package maintainer
performance
skin
tech debt
user story
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: lix-community/nix-security-tracker#425
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Ah, this is because we're not removing them in one transaction since the htmx stuff. How about debouncing and batching the removal, e.g. by only sending a bulk request when
Mh I don't like breaking the promise, that changes are immediate. What if the user closes the browser tab before scrolling further?
Yeah, I was just thinking we'd have to put roughly the same logic for grouping changes into either component. But I guess if we issue a random token with each static page and send it back on change, grouping activities by that token will be a pretty good approximation.
Ah I was just thinking about grouping by time delta tbh. Everything from the same user within 5min distance should be grouped together.
If we are to group by time delta, how should the ISO timestamps be displayed?
For example, should it be displayed as the first and last timestamp like
2024-11-26T11:38:41+00:00 to 2024-11-26T11:43:41+00:00
?I'd keep it simple and only display the last one.