impl(web) Create media series page assisted-by:claude_opus_4.5#40
Closed
andykais wants to merge 2 commits into
Closed
impl(web) Create media series page assisted-by:claude_opus_4.5#40andykais wants to merge 2 commits into
andykais wants to merge 2 commits into
Conversation
- Create new route /series/[series_id]/ with full page structure - Add SeriesController with series.search integration - Add SeriesQueryParamsRune with series_index sort support (default) - Add SeriesMediaListRune for forager.series.search API - Add series_index display under each media tile (#n format) - Add series link in browse view for media_series tiles - Export SeriesSearchResponse type from @forager/core - Implement Tag.decode() in web parsers The series page mirrors the browse page UI with: - Header with filters and "Series Index" sort option - Sidebar showing media details with series index - Footer with thumbnail controls - Series-specific search parameters
Create a unified architecture for media pages using: - MediaPageController: Single controller with mode config (browse/series) - MediaQueryParamsRune: Unified queryparams handling for both modes - Shared components in $lib/components/media_page/: - MediaPage: Full page composition component - Header, Footer, MediaList, MediaView, MediaDetails - SearchParams: Mode-aware search controls - SearchResults: Mode-aware result display with series_index Both /browse and /series/[series_id] pages now use identical structure: - 12 lines of code each - Differ only in mode configuration Key features preserved: - Browse: group_by mode, search modes, all media types - Series: series_index display, back-to-browse link, series-specific sorting
Owner
Author
|
closing in favor of #44 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The series page mirrors the browse page UI with: