mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
97 lines
3.3 KiB
Kotlin
97 lines
3.3 KiB
Kotlin
package com.github.libretube.fragments
|
|
|
|
import android.os.Bundle
|
|
import android.util.Log
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import android.widget.Toast
|
|
import androidx.fragment.app.Fragment
|
|
import androidx.lifecycle.lifecycleScope
|
|
import androidx.recyclerview.widget.GridLayoutManager
|
|
import com.github.libretube.R
|
|
import com.github.libretube.adapters.TrendingAdapter
|
|
import com.github.libretube.databinding.FragmentHomeBinding
|
|
import com.github.libretube.preferences.PreferenceHelper
|
|
import com.github.libretube.util.LocaleHelper
|
|
import com.github.libretube.util.RetrofitInstance
|
|
import retrofit2.HttpException
|
|
import java.io.IOException
|
|
|
|
class HomeFragment : Fragment() {
|
|
private val TAG = "HomeFragment"
|
|
private lateinit var binding: FragmentHomeBinding
|
|
private lateinit var region: String
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
arguments?.let {
|
|
}
|
|
}
|
|
|
|
override fun onCreateView(
|
|
inflater: LayoutInflater,
|
|
container: ViewGroup?,
|
|
savedInstanceState: Bundle?
|
|
): View {
|
|
binding = FragmentHomeBinding.inflate(layoutInflater, container, false)
|
|
return binding.root
|
|
}
|
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
super.onViewCreated(view, savedInstanceState)
|
|
val grid = PreferenceHelper.getString(
|
|
"grid",
|
|
resources.getInteger(R.integer.grid_items).toString()
|
|
)!!
|
|
|
|
val regionPref = PreferenceHelper.getString("region", "sys")!!
|
|
|
|
// get the system default country if auto region selected
|
|
region = if (regionPref == "sys") {
|
|
LocaleHelper
|
|
.getDetectedCountry(requireContext(), "UK")
|
|
.uppercase()
|
|
} else regionPref
|
|
|
|
binding.recview.layoutManager = GridLayoutManager(view.context, grid.toInt())
|
|
fetchJson()
|
|
binding.homeRefresh.isEnabled = true
|
|
binding.homeRefresh.setOnRefreshListener {
|
|
fetchJson()
|
|
}
|
|
}
|
|
|
|
private fun fetchJson() {
|
|
fun run() {
|
|
lifecycleScope.launchWhenCreated {
|
|
val response = try {
|
|
RetrofitInstance.api.getTrending(region)
|
|
} catch (e: IOException) {
|
|
println(e)
|
|
Log.e(TAG, "IOException, you might not have internet connection")
|
|
Toast.makeText(context, R.string.unknown_error, Toast.LENGTH_SHORT).show()
|
|
return@launchWhenCreated
|
|
} catch (e: HttpException) {
|
|
Log.e(TAG, "HttpException, unexpected response")
|
|
Toast.makeText(context, R.string.server_error, Toast.LENGTH_SHORT).show()
|
|
return@launchWhenCreated
|
|
} finally {
|
|
binding.homeRefresh.isRefreshing = false
|
|
}
|
|
runOnUiThread {
|
|
binding.progressBar.visibility = View.GONE
|
|
binding.recview.adapter = TrendingAdapter(response, childFragmentManager)
|
|
}
|
|
}
|
|
}
|
|
run()
|
|
}
|
|
|
|
private fun Fragment?.runOnUiThread(action: () -> Unit) {
|
|
this ?: return
|
|
if (!isAdded) return // Fragment not attached to an Activity
|
|
activity?.runOnUiThread(action)
|
|
}
|
|
}
|