|
@@ -1,110 +0,0 @@
|
|
|
-package eu.kanade.tachiyomi.ui.browse.migration
|
|
|
-
|
|
|
-import android.view.LayoutInflater
|
|
|
-import android.view.View
|
|
|
-import android.view.ViewGroup
|
|
|
-import androidx.recyclerview.widget.LinearLayoutManager
|
|
|
-import eu.davidea.flexibleadapter.FlexibleAdapter
|
|
|
-import eu.davidea.flexibleadapter.items.IFlexible
|
|
|
-import eu.kanade.tachiyomi.R
|
|
|
-import eu.kanade.tachiyomi.databinding.MigrationControllerBinding
|
|
|
-import eu.kanade.tachiyomi.ui.base.controller.NucleusController
|
|
|
-import eu.kanade.tachiyomi.ui.base.controller.withFadeTransaction
|
|
|
-import eu.kanade.tachiyomi.ui.browse.migration.manga.MangaAdapter
|
|
|
-import eu.kanade.tachiyomi.ui.browse.migration.manga.MangaItem
|
|
|
-import eu.kanade.tachiyomi.ui.browse.migration.search.SearchController
|
|
|
-import eu.kanade.tachiyomi.ui.browse.migration.sources.SourceAdapter
|
|
|
-import eu.kanade.tachiyomi.ui.browse.migration.sources.SourceItem
|
|
|
-import eu.kanade.tachiyomi.ui.browse.source.SourceDividerItemDecoration
|
|
|
-
|
|
|
-class MigrationController :
|
|
|
- NucleusController<MigrationControllerBinding, MigrationPresenter>(),
|
|
|
- FlexibleAdapter.OnItemClickListener {
|
|
|
-
|
|
|
- private var adapter: FlexibleAdapter<IFlexible<*>>? = null
|
|
|
-
|
|
|
- private var title: String? = null
|
|
|
- set(value) {
|
|
|
- field = value
|
|
|
- setTitle()
|
|
|
- }
|
|
|
-
|
|
|
- override fun createPresenter(): MigrationPresenter {
|
|
|
- return MigrationPresenter()
|
|
|
- }
|
|
|
-
|
|
|
- override fun inflateView(inflater: LayoutInflater, container: ViewGroup): View {
|
|
|
- binding = MigrationControllerBinding.inflate(inflater)
|
|
|
- return binding.root
|
|
|
- }
|
|
|
-
|
|
|
- override fun onViewCreated(view: View) {
|
|
|
- super.onViewCreated(view)
|
|
|
-
|
|
|
- adapter = FlexibleAdapter(null, this)
|
|
|
- binding.recycler.layoutManager = LinearLayoutManager(view.context)
|
|
|
- binding.recycler.adapter = adapter
|
|
|
- binding.recycler.addItemDecoration(SourceDividerItemDecoration(view.context))
|
|
|
- }
|
|
|
-
|
|
|
- override fun onDestroyView(view: View) {
|
|
|
- adapter = null
|
|
|
- super.onDestroyView(view)
|
|
|
- }
|
|
|
-
|
|
|
- override fun getTitle(): String? {
|
|
|
- return title
|
|
|
- }
|
|
|
-
|
|
|
- override fun handleBack(): Boolean {
|
|
|
- return if (presenter.state.selectedSource != null) {
|
|
|
- presenter.deselectSource()
|
|
|
- true
|
|
|
- } else {
|
|
|
- super.handleBack()
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- fun render(state: ViewState) {
|
|
|
- if (state.selectedSource == null) {
|
|
|
- title = resources?.getString(R.string.label_migration)
|
|
|
- if (adapter !is SourceAdapter) {
|
|
|
- adapter =
|
|
|
- SourceAdapter(
|
|
|
- this
|
|
|
- )
|
|
|
- binding.recycler.adapter = adapter
|
|
|
- adapter?.fastScroller = binding.fastScroller
|
|
|
- }
|
|
|
- adapter?.updateDataSet(state.sourcesWithManga)
|
|
|
- } else {
|
|
|
- title = state.selectedSource.toString()
|
|
|
- if (adapter !is MangaAdapter) {
|
|
|
- adapter =
|
|
|
- MangaAdapter(
|
|
|
- this
|
|
|
- )
|
|
|
- binding.recycler.adapter = adapter
|
|
|
- adapter?.fastScroller = binding.fastScroller
|
|
|
- }
|
|
|
- adapter?.updateDataSet(state.mangaForSource)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- override fun onItemClick(view: View, position: Int): Boolean {
|
|
|
- val item = adapter?.getItem(position) ?: return false
|
|
|
-
|
|
|
- if (item is MangaItem) {
|
|
|
- val controller =
|
|
|
- SearchController(
|
|
|
- item.manga
|
|
|
- )
|
|
|
- controller.targetController = this
|
|
|
-
|
|
|
- parentController!!.router.pushController(controller.withFadeTransaction())
|
|
|
- } else if (item is SourceItem) {
|
|
|
- presenter.setSelectedSource(item.source)
|
|
|
- }
|
|
|
- return false
|
|
|
- }
|
|
|
-}
|