feat(mangas): add tag-similarity "Similar" section on manga detail
Add GET /v1/mangas/:id/similar returning the top 5 mangas ranked by
Jaccard tag overlap (shared / union), excluding self, as MangaCard items
in a plain { items } object. Surface them in a hidden-when-empty
"Similar" section on the manga detail page, reusing MangaCard.
Backend: new repo::manga::list_similar with a manga_tags self-join; a
shared cards_from_rows helper (also used by list_cards) that loads
authors+genres concurrently; single-sourced column list via MANGA_COLS +
manga_cols(alias) to replace the fragile SELECT_COLS string-splitting.
Frontend: getSimilarMangas client fn (guards a malformed body), loader
fetch with non-critical .catch fallback, and the catalog grid hoisted to
a shared global .manga-grid (lib/styles/tokens.css), de-duplicating the
per-route copies.
Bump version 0.62.0 -> 0.63.0 (backend + frontend in lockstep).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -60,6 +60,20 @@ export async function getManga(id: string): Promise<MangaDetail> {
|
||||
return request<MangaDetail>(`/v1/mangas/${encodeURIComponent(id)}`);
|
||||
}
|
||||
|
||||
/**
|
||||
* GET /v1/mangas/:id/similar — up to 5 mangas ranked by tag overlap with
|
||||
* `id`. Returns a plain `{ items }` object (a fixed top-N, not a paginated
|
||||
* collection), so we unwrap to the card array the page wants.
|
||||
*/
|
||||
export async function getSimilarMangas(id: string): Promise<MangaCard[]> {
|
||||
const res = await request<{ items: MangaCard[] }>(
|
||||
`/v1/mangas/${encodeURIComponent(id)}/similar`
|
||||
);
|
||||
// Defensive: a malformed 200 body (items omitted) must still yield an
|
||||
// array so the page's `similar.length` guard can't throw.
|
||||
return res.items ?? [];
|
||||
}
|
||||
|
||||
export type NewManga = {
|
||||
title: string;
|
||||
status?: MangaStatus;
|
||||
|
||||
Reference in New Issue
Block a user