87 lines
3.2 KiB
Kotlin
87 lines
3.2 KiB
Kotlin
package exh.ui.smartsearch
|
|
|
|
import android.os.Bundle
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import eu.kanade.tachiyomi.databinding.EhSmartSearchBinding
|
|
import eu.kanade.tachiyomi.source.CatalogueSource
|
|
import eu.kanade.tachiyomi.source.SourceManager
|
|
import eu.kanade.tachiyomi.ui.base.controller.NucleusController
|
|
import eu.kanade.tachiyomi.ui.base.controller.withFadeTransaction
|
|
import eu.kanade.tachiyomi.ui.browse.source.SourceController
|
|
import eu.kanade.tachiyomi.ui.browse.source.browse.BrowseSourceController
|
|
import eu.kanade.tachiyomi.ui.manga.MangaController
|
|
import eu.kanade.tachiyomi.util.system.toast
|
|
import kotlinx.coroutines.Dispatchers
|
|
import kotlinx.coroutines.cancel
|
|
import kotlinx.coroutines.launch
|
|
import kotlinx.coroutines.withContext
|
|
import uy.kohesive.injekt.injectLazy
|
|
|
|
class SmartSearchController(bundle: Bundle? = null) : NucleusController<EhSmartSearchBinding, SmartSearchPresenter>() {
|
|
private val sourceManager: SourceManager by injectLazy()
|
|
|
|
private val source = sourceManager.get(bundle?.getLong(ARG_SOURCE_ID, -1) ?: -1) as? CatalogueSource
|
|
private val smartSearchConfig: SourceController.SmartSearchConfig? = bundle?.getParcelable(
|
|
ARG_SMART_SEARCH_CONFIG
|
|
)
|
|
|
|
override fun inflateView(inflater: LayoutInflater, container: ViewGroup): View {
|
|
binding = EhSmartSearchBinding.inflate(inflater)
|
|
return binding.root
|
|
}
|
|
|
|
override fun getTitle() = source?.name ?: ""
|
|
|
|
override fun createPresenter() = SmartSearchPresenter(source, smartSearchConfig)
|
|
|
|
override fun onViewCreated(view: View) {
|
|
super.onViewCreated(view)
|
|
|
|
binding.appbar.bringToFront()
|
|
|
|
if (source == null || smartSearchConfig == null) {
|
|
router.popCurrentController()
|
|
applicationContext?.toast("Missing data!")
|
|
return
|
|
}
|
|
|
|
// Init presenter now to resolve threading issues
|
|
presenter
|
|
|
|
scope.launch(Dispatchers.Default) {
|
|
for (event in presenter.smartSearchChannel) {
|
|
if (event is SmartSearchPresenter.SearchResults.Found) {
|
|
val transaction = MangaController(event.manga, true, smartSearchConfig).withFadeTransaction()
|
|
withContext(Dispatchers.Main) {
|
|
router.replaceTopController(transaction)
|
|
}
|
|
} else {
|
|
if (event is SmartSearchPresenter.SearchResults.NotFound) {
|
|
applicationContext?.toast("Couldn't find the manga in the source!")
|
|
} else {
|
|
applicationContext?.toast("Error performing automatic search!")
|
|
}
|
|
|
|
val transaction = BrowseSourceController(source, smartSearchConfig.origTitle, smartSearchConfig).withFadeTransaction()
|
|
withContext(Dispatchers.Main) {
|
|
router.replaceTopController(transaction)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
override fun onDestroy() {
|
|
super.onDestroy()
|
|
|
|
scope.cancel()
|
|
}
|
|
|
|
companion object {
|
|
const val ARG_SOURCE_ID = "SOURCE_ID"
|
|
const val ARG_SMART_SEARCH_CONFIG = "SMART_SEARCH_CONFIG"
|
|
}
|
|
}
|