As the integrated and delegated websites don't actually have descriptions, just info, I decided to make a special view for them! with all the info you need available to you in front of your face, there is now no need to go searching through the description! This is likely the most work I have put into 1 feature in the whole time I have been developing TachiyomiSY!
58 lines
2.1 KiB
Kotlin
58 lines
2.1 KiB
Kotlin
package exh.ui.metadata.adapters
|
|
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
import eu.kanade.tachiyomi.R
|
|
import eu.kanade.tachiyomi.databinding.DescriptionAdapterHcBinding
|
|
import eu.kanade.tachiyomi.ui.base.controller.withFadeTransaction
|
|
import eu.kanade.tachiyomi.ui.manga.MangaController
|
|
import exh.metadata.metadata.HentaiCafeSearchMetadata
|
|
import exh.ui.metadata.MetadataViewController
|
|
import kotlinx.coroutines.CoroutineScope
|
|
import kotlinx.coroutines.Dispatchers
|
|
import kotlinx.coroutines.Job
|
|
import kotlinx.coroutines.flow.launchIn
|
|
import kotlinx.coroutines.flow.onEach
|
|
import reactivecircus.flowbinding.android.view.clicks
|
|
|
|
class HentaiCafeDescriptionAdapter(
|
|
private val controller: MangaController
|
|
) :
|
|
RecyclerView.Adapter<HentaiCafeDescriptionAdapter.HentaiCafeDescriptionViewHolder>() {
|
|
|
|
private val scope = CoroutineScope(Job() + Dispatchers.Main)
|
|
private lateinit var binding: DescriptionAdapterHcBinding
|
|
|
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): HentaiCafeDescriptionViewHolder {
|
|
binding = DescriptionAdapterHcBinding.inflate(LayoutInflater.from(parent.context), parent, false)
|
|
return HentaiCafeDescriptionViewHolder(binding.root)
|
|
}
|
|
|
|
override fun getItemCount(): Int = 1
|
|
|
|
override fun onBindViewHolder(holder: HentaiCafeDescriptionViewHolder, position: Int) {
|
|
holder.bind()
|
|
}
|
|
|
|
inner class HentaiCafeDescriptionViewHolder(view: View) : RecyclerView.ViewHolder(view) {
|
|
fun bind() {
|
|
val meta = controller.presenter.meta
|
|
if (meta == null || meta !is HentaiCafeSearchMetadata) return
|
|
|
|
binding.artist.text = meta.artist ?: itemView.context.getString(R.string.unknown)
|
|
|
|
binding.moreInfo.clicks()
|
|
.onEach {
|
|
controller.router?.pushController(
|
|
MetadataViewController(
|
|
controller.manga
|
|
).withFadeTransaction()
|
|
)
|
|
}
|
|
.launchIn(scope)
|
|
}
|
|
}
|
|
}
|