|
@@ -48,12 +48,12 @@ import eu.kanade.tachiyomi.ui.manga.MangaController
|
|
import eu.kanade.tachiyomi.ui.source.browse.BrowseSourceController
|
|
import eu.kanade.tachiyomi.ui.source.browse.BrowseSourceController
|
|
import eu.kanade.tachiyomi.ui.source.global_search.GlobalSearchController
|
|
import eu.kanade.tachiyomi.ui.source.global_search.GlobalSearchController
|
|
import eu.kanade.tachiyomi.ui.webview.WebViewActivity
|
|
import eu.kanade.tachiyomi.ui.webview.WebViewActivity
|
|
|
|
+import eu.kanade.tachiyomi.util.lang.launchInUI
|
|
import eu.kanade.tachiyomi.util.lang.truncateCenter
|
|
import eu.kanade.tachiyomi.util.lang.truncateCenter
|
|
import eu.kanade.tachiyomi.util.system.toast
|
|
import eu.kanade.tachiyomi.util.system.toast
|
|
import eu.kanade.tachiyomi.util.view.snack
|
|
import eu.kanade.tachiyomi.util.view.snack
|
|
import eu.kanade.tachiyomi.util.view.visible
|
|
import eu.kanade.tachiyomi.util.view.visible
|
|
import jp.wasabeef.glide.transformations.CropSquareTransformation
|
|
import jp.wasabeef.glide.transformations.CropSquareTransformation
|
|
-import kotlinx.coroutines.flow.launchIn
|
|
|
|
import kotlinx.coroutines.flow.onEach
|
|
import kotlinx.coroutines.flow.onEach
|
|
import reactivecircus.flowbinding.android.view.clicks
|
|
import reactivecircus.flowbinding.android.view.clicks
|
|
import reactivecircus.flowbinding.android.view.longClicks
|
|
import reactivecircus.flowbinding.android.view.longClicks
|
|
@@ -95,12 +95,12 @@ class MangaInfoController : NucleusController<MangaInfoPresenter>(),
|
|
// Set onclickListener to toggle favorite when favorite button clicked.
|
|
// Set onclickListener to toggle favorite when favorite button clicked.
|
|
binding.btnFavorite.clicks()
|
|
binding.btnFavorite.clicks()
|
|
.onEach { onFavoriteClick() }
|
|
.onEach { onFavoriteClick() }
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
// Set onLongClickListener to manage categories when favorite button is clicked.
|
|
// Set onLongClickListener to manage categories when favorite button is clicked.
|
|
binding.btnFavorite.longClicks()
|
|
binding.btnFavorite.longClicks()
|
|
.onEach { onFavoriteLongClick() }
|
|
.onEach { onFavoriteLongClick() }
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
if (presenter.source is HttpSource) {
|
|
if (presenter.source is HttpSource) {
|
|
binding.btnWebview.visible()
|
|
binding.btnWebview.visible()
|
|
@@ -108,64 +108,64 @@ class MangaInfoController : NucleusController<MangaInfoPresenter>(),
|
|
|
|
|
|
binding.btnWebview.clicks()
|
|
binding.btnWebview.clicks()
|
|
.onEach { openInWebView() }
|
|
.onEach { openInWebView() }
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
binding.btnShare.clicks()
|
|
binding.btnShare.clicks()
|
|
.onEach { shareManga() }
|
|
.onEach { shareManga() }
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
}
|
|
}
|
|
|
|
|
|
// Set SwipeRefresh to refresh manga data.
|
|
// Set SwipeRefresh to refresh manga data.
|
|
binding.swipeRefresh.refreshes()
|
|
binding.swipeRefresh.refreshes()
|
|
.onEach { fetchMangaFromSource() }
|
|
.onEach { fetchMangaFromSource() }
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaFullTitle.longClicks()
|
|
binding.mangaFullTitle.longClicks()
|
|
.onEach {
|
|
.onEach {
|
|
copyToClipboard(view.context.getString(R.string.title), binding.mangaFullTitle.text.toString())
|
|
copyToClipboard(view.context.getString(R.string.title), binding.mangaFullTitle.text.toString())
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaFullTitle.clicks()
|
|
binding.mangaFullTitle.clicks()
|
|
.onEach {
|
|
.onEach {
|
|
performGlobalSearch(binding.mangaFullTitle.text.toString())
|
|
performGlobalSearch(binding.mangaFullTitle.text.toString())
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaArtist.longClicks()
|
|
binding.mangaArtist.longClicks()
|
|
.onEach {
|
|
.onEach {
|
|
copyToClipboard(binding.mangaArtistLabel.text.toString(), binding.mangaArtist.text.toString())
|
|
copyToClipboard(binding.mangaArtistLabel.text.toString(), binding.mangaArtist.text.toString())
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaArtist.clicks()
|
|
binding.mangaArtist.clicks()
|
|
.onEach {
|
|
.onEach {
|
|
performGlobalSearch(binding.mangaArtist.text.toString())
|
|
performGlobalSearch(binding.mangaArtist.text.toString())
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaAuthor.longClicks()
|
|
binding.mangaAuthor.longClicks()
|
|
.onEach {
|
|
.onEach {
|
|
copyToClipboard(binding.mangaAuthor.text.toString(), binding.mangaAuthor.text.toString())
|
|
copyToClipboard(binding.mangaAuthor.text.toString(), binding.mangaAuthor.text.toString())
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaAuthor.clicks()
|
|
binding.mangaAuthor.clicks()
|
|
.onEach {
|
|
.onEach {
|
|
performGlobalSearch(binding.mangaAuthor.text.toString())
|
|
performGlobalSearch(binding.mangaAuthor.text.toString())
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaSummary.longClicks()
|
|
binding.mangaSummary.longClicks()
|
|
.onEach {
|
|
.onEach {
|
|
copyToClipboard(view.context.getString(R.string.description), binding.mangaSummary.text.toString())
|
|
copyToClipboard(view.context.getString(R.string.description), binding.mangaSummary.text.toString())
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
|
|
|
|
binding.mangaCover.longClicks()
|
|
binding.mangaCover.longClicks()
|
|
.onEach {
|
|
.onEach {
|
|
copyToClipboard(view.context.getString(R.string.title), presenter.manga.title)
|
|
copyToClipboard(view.context.getString(R.string.title), presenter.manga.title)
|
|
}
|
|
}
|
|
- .launchIn(uiScope)
|
|
|
|
|
|
+ .launchInUI()
|
|
}
|
|
}
|
|
|
|
|
|
override fun onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) {
|
|
override fun onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) {
|