feat(*): add image grids for album and associated media displays
This commit is contained in:
parent
9b4baad5fb
commit
36fbba761a
53 changed files with 1179 additions and 764 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue