summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src/routes (unfollow)
Commit message (Collapse)AuthorLines
2 daysfrontend: Introduce ComicCard and ArchiveCardWolfgang Müller-28/+12
Instead of repeatedly supplying Card content in all the places it is required, it makes more sense to create dedicated ComicCard and ArchiveCard components. These wrap around Card itself and can be used in a more straightforward and consistent fashion. Whilst we are here, simplify and streamline the display of Comic and Archive metadata by introducing a Card footer. The footer is used for information on page count, release date, and archive size.
3 daysfrontend: Allow filtering for orphaned associationsWolfgang Müller-3/+15
With the association count filters in place we may now also allow the user to filter for associations that do not have a matching counterparts (artists without a comic, for example).
5 daysfrontend: Migrate PageView to Svelte 5Wolfgang Müller-2/+4
9 daysfrontend: Bind PageView to form input instead of ComicWolfgang Müller-1/+1
Commit dc4db40 (frontend: Migrate to Svelte 5, 2025-02-13) accidentally regressed reader behaviour where updates to the page layout and page direction where no longer shown immediately. Make sure to bind PageView to the comic form input to fix this.
9 daysfrontend: Show statistics spinner in the middle of the pageWolfgang Müller-6/+6
10 daysfrontend: Use current date to seed frontpage resultsWolfgang Müller-3/+14
Use the current date (year, month, and day) instead of generating a new seed every time and potentially making the user unable to go back to see results that were displayed a moment ago. This essentially makes the frontpage display daily favourites and bookmarks. Additionally make sure to set the seed in the filter when navigating to the respective category.
10 daysfrontend: Add missing loading indicator for statistics pageWolfgang Müller-0/+3
10 daysfrontend: Expand toolbar automatically with filters presentWolfgang Müller-1/+2
10 daysfrontend: Allow control-clicking to open the quick filterWolfgang Müller-18/+36
This makes hircine's behaviour more consistent with standard browser behaviour (that would also open a new tab when control-clicking).
10 daysfrontend: Remove ellipsis prop in CardWolfgang Müller-6/+1
This makes Archive card styling consistent with Comic cards.
10 daysfrontend: Migrate to Svelte 5Wolfgang Müller-567/+528
2025-01-19frontend: Add basic statistics pageWolfgang Müller-0/+47
2024-11-22frontend: Ignore tabindex for container divsWolfgang Müller-1/+1
These two break the tabbing flow, instead focus the next item within the container.