feat(*): add image grids for album and associated media displays

This commit is contained in:
Cory Dransfeldt 2025-05-24 17:19:30 -07:00
parent 9b4baad5fb
commit 36fbba761a
No known key found for this signature in database
53 changed files with 1179 additions and 764 deletions

View file

@ -93,7 +93,7 @@ recent_watched_read AS (
'tv' AS type,
1 AS rank,
json_build_object(
'title', null,
'title', NULL,
'url', om.url,
'image', om.image,
'backdrop', om.backdrop,
@ -118,7 +118,7 @@ recent_watched_read AS (
'tv' AS type,
2 AS rank,
json_build_object(
'title', null,
'title', NULL,
'image', os.image,
'url', os.url,
'alt', CONCAT('Poster from ', os.title),
@ -144,7 +144,7 @@ recent_watched_read AS (
'books' AS type,
3 AS rank,
json_build_object(
'title', null,
'title', NULL,
'image', ob.image,
'url', ob.url,
'alt', CONCAT('Book cover from ', ob.title, ' by ', ob.author),
@ -168,7 +168,7 @@ recent_watched_read AS (
'tv' AS type,
4 AS rank,
json_build_object(
'title', null,
'title', NULL,
'url', om.url,
'image', om.image,
'backdrop', om.backdrop,
@ -193,7 +193,7 @@ recent_watched_read AS (
'tv' AS type,
5 AS rank,
json_build_object(
'title', null,
'title', NULL,
'image', os.image,
'url', os.url,
'alt', CONCAT('Poster from ', os.title),
@ -219,7 +219,7 @@ recent_watched_read AS (
'books' AS type,
6 AS rank,
json_build_object(
'title', null,
'title', NULL,
'image', ob.image,
'url', ob.url,
'alt', CONCAT('Book cover from ', ob.title, ' by ', ob.author),