LibreTube/app/src/main/java/com/github/libretube/adapters/SubscriptionChannelAdapter.kt

116 lines
4.5 KiB
Kotlin
Raw Normal View History

2022-02-12 20:00:36 +05:30
package com.github.libretube.adapters
2022-06-04 21:04:18 +05:30
import android.content.Context
import android.util.Log
2022-02-12 20:00:36 +05:30
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import androidx.core.os.bundleOf
import androidx.recyclerview.widget.RecyclerView
import com.github.libretube.MainActivity
import com.github.libretube.R
2022-06-04 21:04:18 +05:30
import com.github.libretube.obj.Subscribe
2022-02-12 20:00:36 +05:30
import com.github.libretube.obj.Subscription
2022-06-04 21:04:18 +05:30
import com.github.libretube.util.RetrofitInstance
2022-02-12 20:00:36 +05:30
import com.squareup.picasso.Picasso
2022-06-04 21:04:18 +05:30
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import retrofit2.HttpException
import java.io.IOException
2022-02-12 20:00:36 +05:30
2022-05-21 13:32:04 +05:30
class SubscriptionChannelAdapter(private val subscriptions: MutableList<Subscription>) :
RecyclerView.Adapter<SubscriptionChannelViewHolder>() {
2022-06-04 21:04:18 +05:30
val TAG = "SubChannelAdapter"
2022-06-04 22:35:27 +05:30
private var subscribed = true
private var isLoading = false
2022-02-12 20:00:36 +05:30
override fun getItemCount(): Int {
return subscriptions.size
}
2022-05-21 13:32:04 +05:30
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int):
SubscriptionChannelViewHolder {
2022-02-12 20:00:36 +05:30
val layoutInflater = LayoutInflater.from(parent.context)
2022-05-20 03:52:10 +05:30
val cell = layoutInflater.inflate(R.layout.channel_subscription_row, parent, false)
2022-02-12 20:00:36 +05:30
return SubscriptionChannelViewHolder(cell)
}
override fun onBindViewHolder(holder: SubscriptionChannelViewHolder, position: Int) {
val subscription = subscriptions[position]
2022-05-20 03:52:10 +05:30
holder.v.findViewById<TextView>(R.id.subscription_channel_name).text = subscription.name
2022-02-12 20:00:36 +05:30
val avatar = holder.v.findViewById<ImageView>(R.id.subscription_channel_image)
Picasso.get().load(subscription.avatar).into(avatar)
2022-05-20 03:52:10 +05:30
holder.v.setOnClickListener {
2022-02-12 20:00:36 +05:30
val activity = holder.v.context as MainActivity
2022-06-04 22:35:27 +05:30
val bundle = bundleOf("channelId" to subscription.url)
2022-05-20 03:52:10 +05:30
activity.navController.navigate(R.id.channel, bundle)
2022-02-12 20:00:36 +05:30
}
2022-06-04 22:35:27 +05:30
val subscribeBtn = holder.v.findViewById<com.google.android.material.button.MaterialButton>(R.id.subscription_subscribe)
subscribeBtn.setOnClickListener {
if (!isLoading) {
isLoading = true
val channelId = subscription.url?.replace("/channel/", "")!!
if (subscribed) {
unsubscribe(holder.v, channelId)
subscribeBtn.text = holder.v.context.getString(R.string.subscribe)
} else {
subscribe(holder.v, channelId)
subscribeBtn.text = holder.v.context.getString(R.string.unsubscribe)
}
}
}
}
private fun subscribe(view: View, channelId: String) {
fun run() {
CoroutineScope(Dispatchers.IO).launch {
val response = try {
val sharedPref = view.context.getSharedPreferences("token", Context.MODE_PRIVATE)
RetrofitInstance.api.subscribe(
sharedPref?.getString("token", "")!!,
Subscribe(channelId)
)
} catch (e: IOException) {
println(e)
Log.e(TAG, "IOException, you might not have internet connection")
} catch (e: HttpException) {
Log.e(TAG, "HttpException, unexpected response")
}
subscribed = true
isLoading = false
}
2022-06-04 21:04:18 +05:30
}
2022-06-04 22:35:27 +05:30
run()
2022-06-04 21:04:18 +05:30
}
2022-06-04 22:35:27 +05:30
private fun unsubscribe(view: View, channelId: String) {
2022-06-04 21:04:18 +05:30
fun run() {
CoroutineScope(Dispatchers.IO).launch {
val response = try {
2022-06-04 22:35:27 +05:30
val sharedPref =
view.context.getSharedPreferences("token", Context.MODE_PRIVATE)
2022-06-04 21:04:18 +05:30
RetrofitInstance.api.unsubscribe(
sharedPref?.getString("token", "")!!,
2022-06-04 22:35:27 +05:30
Subscribe(channelId)
2022-06-04 21:04:18 +05:30
)
} catch (e: IOException) {
println(e)
Log.e(TAG, "IOException, you might not have internet connection")
} catch (e: HttpException) {
Log.e(TAG, "HttpException, unexpected response")
}
2022-06-04 22:35:27 +05:30
subscribed = false
isLoading = false
2022-06-04 21:04:18 +05:30
}
}
run()
2022-02-12 20:00:36 +05:30
}
}
2022-05-21 13:32:04 +05:30
2022-05-20 03:52:10 +05:30
class SubscriptionChannelViewHolder(val v: View) : RecyclerView.ViewHolder(v) {
2022-02-12 20:00:36 +05:30
init {
}
2022-05-20 03:52:10 +05:30
}