2022-02-01 21:22:06 +05:30
|
|
|
package com.github.libretube
|
2021-12-09 18:25:32 +05:30
|
|
|
|
|
|
|
import android.os.Bundle
|
2021-12-18 16:34:14 +05:30
|
|
|
import android.util.Log
|
2021-12-09 18:31:47 +05:30
|
|
|
import androidx.fragment.app.Fragment
|
2021-12-09 18:25:32 +05:30
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.View
|
|
|
|
import android.view.ViewGroup
|
2021-12-11 19:27:16 +05:30
|
|
|
import android.widget.ProgressBar
|
2021-12-18 16:34:14 +05:30
|
|
|
import androidx.lifecycle.lifecycleScope
|
2021-12-11 19:27:16 +05:30
|
|
|
import androidx.recyclerview.widget.GridLayoutManager
|
|
|
|
import androidx.recyclerview.widget.RecyclerView
|
2021-12-18 16:34:14 +05:30
|
|
|
|
2021-12-11 19:27:16 +05:30
|
|
|
import okhttp3.*
|
2021-12-18 16:34:14 +05:30
|
|
|
import retrofit2.HttpException
|
2022-02-01 21:22:06 +05:30
|
|
|
import com.github.libretube.adapters.TrendingAdapter
|
2021-12-11 19:27:16 +05:30
|
|
|
import java.io.IOException
|
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
|
|
|
|
// TODO: Rename parameter arguments, choose names that match
|
|
|
|
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
|
|
|
|
private const val ARG_PARAM1 = "param1"
|
|
|
|
private const val ARG_PARAM2 = "param2"
|
2022-02-05 00:25:05 +05:30
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
/**
|
|
|
|
* A simple [Fragment] subclass.
|
|
|
|
* Use the [Home.newInstance] factory method to
|
|
|
|
* create an instance of this fragment.
|
|
|
|
*/
|
|
|
|
class Home : Fragment() {
|
|
|
|
// TODO: Rename and change types of parameters
|
|
|
|
private var param1: String? = null
|
|
|
|
private var param2: String? = null
|
2022-02-05 00:25:05 +05:30
|
|
|
private val TAG = "HomeFragment"
|
2021-12-09 18:25:32 +05:30
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
|
|
|
arguments?.let {
|
|
|
|
param1 = it.getString(ARG_PARAM1)
|
|
|
|
param2 = it.getString(ARG_PARAM2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onCreateView(
|
|
|
|
inflater: LayoutInflater, container: ViewGroup?,
|
|
|
|
savedInstanceState: Bundle?
|
|
|
|
): View? {
|
2021-12-11 19:27:16 +05:30
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
// Inflate the layout for this fragment
|
|
|
|
return inflater.inflate(R.layout.fragment_home, container, false)
|
2021-12-11 19:27:16 +05:30
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
|
|
super.onViewCreated(view, savedInstanceState)
|
|
|
|
val recyclerView = view.findViewById<RecyclerView>(R.id.recview)
|
|
|
|
recyclerView.layoutManager = GridLayoutManager(view.context, resources.getInteger(R.integer.grid_items))
|
|
|
|
val progressbar = view.findViewById<ProgressBar>(R.id.progressBar)
|
|
|
|
fetchJson(progressbar,recyclerView)
|
|
|
|
|
|
|
|
|
2021-12-09 18:25:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
companion object {
|
|
|
|
/**
|
|
|
|
* Use this factory method to create a new instance of
|
|
|
|
* this fragment using the provided parameters.
|
|
|
|
*
|
|
|
|
* @param param1 Parameter 1.
|
|
|
|
* @param param2 Parameter 2.
|
|
|
|
* @return A new instance of fragment Home.
|
|
|
|
*/
|
|
|
|
// TODO: Rename and change types and number of parameters
|
|
|
|
@JvmStatic
|
|
|
|
fun newInstance(param1: String, param2: String) =
|
|
|
|
Home().apply {
|
|
|
|
arguments = Bundle().apply {
|
|
|
|
putString(ARG_PARAM1, param1)
|
|
|
|
putString(ARG_PARAM2, param2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-11 19:27:16 +05:30
|
|
|
|
|
|
|
private fun fetchJson(progressBar: ProgressBar, recyclerView: RecyclerView) {
|
|
|
|
fun run() {
|
2021-12-18 16:34:14 +05:30
|
|
|
lifecycleScope.launchWhenCreated {
|
|
|
|
val response = try {
|
|
|
|
RetrofitInstance.api.getTrending("US")
|
|
|
|
}catch(e: IOException) {
|
|
|
|
println(e)
|
|
|
|
Log.e(TAG, "IOException, you might not have internet connection")
|
|
|
|
return@launchWhenCreated
|
|
|
|
} catch (e: HttpException) {
|
|
|
|
Log.e(TAG, "HttpException, unexpected response")
|
|
|
|
return@launchWhenCreated
|
|
|
|
}
|
|
|
|
runOnUiThread {
|
|
|
|
progressBar.visibility = View.GONE
|
|
|
|
recyclerView.adapter = TrendingAdapter(response)
|
|
|
|
}
|
|
|
|
}
|
2021-12-11 19:27:16 +05:30
|
|
|
}
|
|
|
|
run()
|
|
|
|
|
|
|
|
}
|
2022-01-20 17:28:59 +05:30
|
|
|
private fun Fragment?.runOnUiThread(action: () -> Unit) {
|
2021-12-11 19:27:16 +05:30
|
|
|
this ?: return
|
|
|
|
if (!isAdded) return // Fragment not attached to an Activity
|
|
|
|
activity?.runOnUiThread(action)
|
|
|
|
}
|
2022-02-05 21:10:29 +05:30
|
|
|
|
|
|
|
override fun onDestroyView() {
|
|
|
|
view?.findViewById<RecyclerView>(R.id.recview)?.adapter=null
|
|
|
|
super.onDestroyView()
|
|
|
|
}
|
2021-12-11 19:27:16 +05:30
|
|
|
}
|