Long press favorite button to manage categories

This commit is contained in:
arkon 2020-07-17 14:44:09 -04:00
parent 8ba426350f
commit fff0f841fa
2 changed files with 7 additions and 1 deletions

View File

@ -526,7 +526,7 @@ class MangaController :
mangaInfoAdapter?.notifyDataSetChanged()
}
private fun onCategoriesClick() {
fun onCategoriesClick() {
val manga = presenter.manga
val categories = presenter.getCategories()

View File

@ -85,6 +85,12 @@ class MangaInfoHeaderAdapter(
.onEach { controller.onFavoriteClick() }
.launchIn(scope)
if (controller.presenter.manga.favorite && controller.presenter.getCategories().isNotEmpty()) {
binding.btnFavorite.longClicks()
.onEach { controller.onCategoriesClick() }
.launchIn(scope)
}
if (controller.presenter.manga.favorite && Injekt.get<TrackManager>().hasLoggedServices()) {
binding.btnTracking.visible()
binding.btnTracking.clicks()