feat: replace /archive with release-cardinal searchable browser (Phase 9 §8.H)

Retire the three-card overview for a search + medium + genre browser over all
releases. Adds q/genre filter params to the api/release paged read path,
mirroring the existing api/track/page TrackFilter pattern.
This commit is contained in:
daniel-c-harvey
2026-06-13 20:47:50 -04:00
parent 18f4b596f2
commit 737c423d9c
13 changed files with 607 additions and 59 deletions
@@ -29,7 +29,9 @@ public class ReleaseClient
int page,
int pageSize,
string? sortColumn = null,
bool sortDescending = false)
bool sortDescending = false,
string? search = null,
string? genre = null)
{
var queryArgs = new Dictionary<string, string?>
{
@@ -40,6 +42,12 @@ public class ReleaseClient
if (!string.IsNullOrEmpty(medium))
queryArgs["medium"] = medium;
if (!string.IsNullOrEmpty(search))
queryArgs["q"] = search;
if (!string.IsNullOrEmpty(genre))
queryArgs["genre"] = genre;
if (!string.IsNullOrEmpty(sortColumn))
queryArgs["sortColumn"] = sortColumn;