feat(libraries): add size property to Library and related models for better content representation

This commit is contained in:
2026-05-02 20:56:05 +02:00
parent 2753a45645
commit 53bc6246e4
10 changed files with 18 additions and 1 deletions

View File

@@ -392,6 +392,7 @@ class TvHomeContentTest {
name = "Movies",
type = LibraryKind.MOVIES,
posterUrl = "",
size = 1,
isEmpty = false
)
)

View File

@@ -25,6 +25,7 @@ class TvLibrariesOverviewScreenTest {
name = "Movies",
type = LibraryKind.MOVIES,
posterUrl = "",
size = 1,
isEmpty = false
),
LibraryUiModel(
@@ -32,6 +33,7 @@ class TvLibrariesOverviewScreenTest {
name = "Shows",
type = LibraryKind.SERIES,
posterUrl = "",
size = 1,
isEmpty = false
)
)

View File

@@ -110,6 +110,7 @@ class TvHomeHeroStateTest {
name = "Movies",
type = LibraryKind.MOVIES,
posterUrl = "",
size = 1,
isEmpty = isEmpty
)
}