80 lines
2.5 KiB
Kotlin
80 lines
2.5 KiB
Kotlin
package exh.ui.metadata
|
|
|
|
import android.os.Bundle
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import androidx.core.os.bundleOf
|
|
import androidx.recyclerview.widget.LinearLayoutManager
|
|
import eu.kanade.tachiyomi.data.database.DatabaseHelper
|
|
import eu.kanade.tachiyomi.data.database.models.Manga
|
|
import eu.kanade.tachiyomi.databinding.MetadataViewControllerBinding
|
|
import eu.kanade.tachiyomi.source.Source
|
|
import eu.kanade.tachiyomi.source.SourceManager
|
|
import eu.kanade.tachiyomi.ui.base.controller.NucleusController
|
|
import eu.kanade.tachiyomi.ui.manga.MangaController
|
|
import exh.metadata.metadata.base.RaisedSearchMetadata
|
|
import uy.kohesive.injekt.Injekt
|
|
import uy.kohesive.injekt.api.get
|
|
|
|
class MetadataViewController : NucleusController<MetadataViewControllerBinding, MetadataViewPresenter> {
|
|
constructor(manga: Manga?) : super(
|
|
bundleOf(
|
|
MangaController.MANGA_EXTRA to (manga?.id ?: 0)
|
|
)
|
|
) {
|
|
this.manga = manga
|
|
if (manga != null) {
|
|
source = Injekt.get<SourceManager>().getOrStub(manga.source)
|
|
}
|
|
}
|
|
|
|
constructor(mangaId: Long) : this(
|
|
Injekt.get<DatabaseHelper>().getManga(mangaId).executeAsBlocking()
|
|
)
|
|
|
|
@Suppress("unused")
|
|
constructor(bundle: Bundle) : this(bundle.getLong(MangaController.MANGA_EXTRA))
|
|
|
|
var data = emptyList<Pair<String, String>>()
|
|
|
|
var adapter: MetadataViewAdapter? = null
|
|
|
|
var manga: Manga? = null
|
|
private set
|
|
var source: Source? = null
|
|
private set
|
|
|
|
override fun getTitle(): String? {
|
|
return manga?.title
|
|
}
|
|
|
|
override fun inflateView(inflater: LayoutInflater, container: ViewGroup): View {
|
|
binding = MetadataViewControllerBinding.inflate(inflater)
|
|
return binding.root
|
|
}
|
|
|
|
override fun createPresenter(): MetadataViewPresenter {
|
|
return MetadataViewPresenter(
|
|
manga!!,
|
|
source!!
|
|
)
|
|
}
|
|
|
|
override fun onViewCreated(view: View) {
|
|
super.onViewCreated(view)
|
|
|
|
if (manga == null || source == null) return
|
|
binding.recycler.layoutManager = LinearLayoutManager(view.context, LinearLayoutManager.VERTICAL, false)
|
|
adapter = MetadataViewAdapter(data)
|
|
binding.recycler.adapter = adapter
|
|
binding.recycler.setHasFixedSize(true)
|
|
}
|
|
|
|
fun onNextMangaInfo(meta: RaisedSearchMetadata?) {
|
|
val context = view?.context ?: return
|
|
data = meta?.getExtraInfoPairs(context).orEmpty()
|
|
adapter?.update(data)
|
|
}
|
|
}
|