Add genre browsing page with filtering, sorting, and overviews - #173
Open
saladandonionrings wants to merge 9 commits into
Open
Add genre browsing page with filtering, sorting, and overviews#173saladandonionrings wants to merge 9 commits into
saladandonionrings wants to merge 9 commits into
Conversation
New sidebar entry lets users filter TMDB's catalogue by genre (Action, Comedy, Horror, Drama, Thriller, Adventure, etc.), with an All/Movies/Series toggle and paginated results via /discover.
Popularity / Top Rated / Newest, as a second segmented control next to the All/Movies/Series filter. Top Rated applies a vote_count floor so a single high vote can't outrank genuinely acclaimed titles; Newest excludes unreleased/undated entries.
…tion-bipr26 Add genre browsing page with filtering and sorting
Unlike the other chips, Classics isn't a TMDB genre id — it's a synthetic filter (pre-2000, vote_average >= 7, vote_count floor) that cuts across genres to surface iconic, widely-loved older titles. It composes with the existing type filter and sort options.
…tion-bipr26 Add a Classics category to the genre browsing page
MediaCard gains an optional overview prop that renders TMDB's synopsis, line-clamped to 4 lines, inside the existing hover overlay. Only GenresPage passes it, so cards on Home/Library/Downloads are unaffected.
…tion-bipr26 Show each title's overview on hover in the genre browsing page
Add TV series status information (truelockmc#161)
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.
Adds a Genres tab so you can browse movies and series by category instead of just search/home.
New sidebar item → GenresPage with genre chips, a Movies/Series/All toggle, and sort by Popularity/Top Rated/Newest
Handles the annoying bit where TMDB uses different genre IDs (and different availability) for movies vs. TV ; chips auto-disable when they don't apply to the current type
Added a "Classics" chip that isn't a real TMDB genre ; pre-2000 titles filtered by vote count/rating so it's actually good stuff, not just old stuff
Top Rated has a minimum vote count so one 10/10 rating can't jump a title to the top; Newest filters out undated/unreleased titles
When browsing "All," movie and TV results are interleaved instead of showing all movies then all series
"Load More" pagination, with guards against duplicate/stale results if you switch filters quickly
Cards now show a synopsis on hover (new optional overview prop on MediaCard)