Browse Source

Fix emoji going crazy and fix tabs being visible when library is empty (#7811)

fixes #7792
fixes #7791
Andreas 2 years ago
parent
commit
47b56644de

+ 2 - 3
app/src/main/java/eu/kanade/presentation/components/EmptyScreen.kt

@@ -38,12 +38,11 @@ fun EmptyScreen(
                         ViewGroup.LayoutParams.WRAP_CONTENT,
                         ViewGroup.LayoutParams.WRAP_CONTENT,
                     )
+                    show(message, actions)
                 }
             },
             modifier = Modifier
                 .align(Alignment.Center),
-        ) { view ->
-            view.show(message, actions)
-        }
+        )
     }
 }

+ 1 - 1
app/src/main/java/eu/kanade/presentation/library/LibraryScreen.kt

@@ -77,7 +77,7 @@ fun LibraryScreen(
                     state = presenter,
                     contentPadding = paddingValues,
                     currentPage = { presenter.activeCategory },
-                    isLibraryEmpty = { presenter.loadedManga.isEmpty() },
+                    isLibraryEmpty = presenter.isLibraryEmpty,
                     showPageTabs = presenter.tabVisibility,
                     showMangaCount = presenter.mangaCountVisibility,
                     onChangeCurrentPage = { presenter.activeCategory = it },

+ 3 - 3
app/src/main/java/eu/kanade/presentation/library/components/LibraryContent.kt

@@ -34,7 +34,7 @@ fun LibraryContent(
     state: LibraryState,
     contentPadding: PaddingValues,
     currentPage: () -> Int,
-    isLibraryEmpty: () -> Boolean,
+    isLibraryEmpty: Boolean,
     isDownloadOnly: Boolean,
     isIncognitoMode: Boolean,
     showPageTabs: Boolean,
@@ -59,7 +59,7 @@ fun LibraryContent(
         val scope = rememberCoroutineScope()
         var isRefreshing by remember(pagerState.currentPage) { mutableStateOf(false) }
 
-        if (showPageTabs && categories.size > 1) {
+        if (isLibraryEmpty.not() && showPageTabs && categories.size > 1) {
             LibraryTabs(
                 state = pagerState,
                 categories = categories,
@@ -100,7 +100,7 @@ fun LibraryContent(
                 )
             },
         ) {
-            if (state.searchQuery.isNullOrEmpty() && isLibraryEmpty()) {
+            if (state.searchQuery.isNullOrEmpty() && isLibraryEmpty) {
                 val handler = LocalUriHandler.current
                 EmptyScreen(
                     R.string.information_empty_library,

+ 2 - 0
app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryPresenter.kt

@@ -98,6 +98,8 @@ class LibraryPresenter(
     var loadedManga by mutableStateOf(emptyMap<Long, List<LibraryItem>>())
         private set
 
+    val isLibraryEmpty by derivedStateOf { loadedManga.isEmpty() }
+
     val tabVisibility by preferences.categoryTabs().asState()
 
     val mangaCountVisibility by preferences.categoryNumberOfItems().asState()