aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/view/anime/TopAnimePage.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/xyz/adjutor/aniki/presentation/view/anime/TopAnimePage.kt')
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/presentation/view/anime/TopAnimePage.kt127
1 files changed, 19 insertions, 108 deletions
diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/view/anime/TopAnimePage.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/view/anime/TopAnimePage.kt
index 66197d7..40df41c 100644
--- a/app/src/main/java/xyz/adjutor/aniki/presentation/view/anime/TopAnimePage.kt
+++ b/app/src/main/java/xyz/adjutor/aniki/presentation/view/anime/TopAnimePage.kt
@@ -1,7 +1,5 @@
package xyz.adjutor.aniki.presentation.view.anime
-import android.content.Context
-import android.content.SharedPreferences
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
@@ -13,28 +11,14 @@ import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
import com.google.android.material.snackbar.Snackbar
-import com.google.gson.Gson
-import com.google.gson.GsonBuilder
-import com.google.gson.reflect.TypeToken
-import retrofit2.Call
-import retrofit2.Callback
-import retrofit2.Response
-import retrofit2.Retrofit
-import retrofit2.converter.gson.GsonConverterFactory
import xyz.adjutor.aniki.R
-import xyz.adjutor.aniki.data.anime.TopAnimeApi
+import xyz.adjutor.aniki.presentation.controller.TopAnimeController
import xyz.adjutor.aniki.presentation.model.anime.TopAnime
-import xyz.adjutor.aniki.presentation.model.anime.TopAnimeResponse
-import java.lang.reflect.Type
+//view
class TopAnimePage : Fragment() {
- private lateinit var sharedPreferences: SharedPreferences
- val gson: Gson = GsonBuilder()
- .setLenient()
- .create()
- var baseUrl = "https://api.jikan.moe/" //the api's base url
- var page: Int = 1
+ lateinit var controller: TopAnimeController
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
@@ -43,32 +27,13 @@ class TopAnimePage : Fragment() {
// Inflate the layout for this fragment
val view = inflater.inflate(R.layout.top_anime_page, container, false)
- sharedPreferences = view.context.getSharedPreferences("sp_anime", Context.MODE_PRIVATE)
-
- val animeList: List<TopAnime>? = getDataFromCache()
- if (animeList != null) {
- showList(view, animeList)
- } else {
- makeApiCall(view, baseUrl, 1)
- }
+ controller = TopAnimeController()
+ controller.onStart(this, view)
return view
}
- private fun getDataFromCache(): List<TopAnime>? {
- //the value of the animeList json, if nothing is found, return null
- val jsonAnime: String? = sharedPreferences.getString("jsonAnimeList", null)
-
- //if it's null, well, return null
- return if (jsonAnime == null) {
- null
- } else { //else deserialize the list and return it
- val listType: Type = object : TypeToken<List<TopAnime>>() {}.type
- gson.fromJson(jsonAnime, listType)
- }
- }
-
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
@@ -77,33 +42,16 @@ class TopAnimePage : Fragment() {
findNavController().navigate(R.id.action_TopAnimePage_to_HomePage)
}
view.findViewById<Button>(R.id.button_prev).setOnClickListener {
- if (page > 1) {
- page -= 1
- makeApiCall(view, baseUrl, page)
- Snackbar.make(requireView(), "Page $page has been loaded.", Snackbar.LENGTH_SHORT)
- .setAction("Action", null).show()
- } else {
- Snackbar.make(requireView(), "You're already on page 1.", Snackbar.LENGTH_SHORT)
- .setAction("Action", null).show()
- }
+ controller.onButtonPrevClick()
}
view.findViewById<Button>(R.id.button_next).setOnClickListener {
- page += 1
- makeApiCall(view, baseUrl, page)
- Snackbar.make(requireView(), "Page $page has been loaded.", Snackbar.LENGTH_SHORT)
- .setAction("Action", null).show()
- }
-
- fun updateList() {
- makeApiCall(view, baseUrl, 1)
- Snackbar.make(requireView(), "Data refreshed", Snackbar.LENGTH_SHORT)
- .setAction("Action", null).show()
+ controller.onButtonNextClick()
}
+ //refresh when swiping down at the top of the page
val swipeRefresh: SwipeRefreshLayout = view.findViewById(R.id.swiperefresh)
swipeRefresh.setOnRefreshListener {
- updateList()
- page = 1
+ controller.updateList()
swipeRefresh.isRefreshing = false
}
@@ -118,53 +66,7 @@ class TopAnimePage : Fragment() {
(recyclerView.adapter as TopAnimeAdapter).notifyDataSetChanged()
}
- private fun makeApiCall(view: View, BASE_URL: String, page: Int) {
-
- val retrofit = Retrofit.Builder()
- .baseUrl(BASE_URL)
- .addConverterFactory(GsonConverterFactory.create(gson))
- .build()
-
- val service = retrofit.create(TopAnimeApi::class.java)
- val call = service.getTopAnimeData(page)
-
- call.enqueue(object : Callback<TopAnimeResponse> {
- override fun onResponse(
- call: Call<TopAnimeResponse>,
- response: Response<TopAnimeResponse>
- ) {
- if (response.isSuccessful && response.body() != null) { //if the code returned is >= 200 and < 300 AND the the body ain't empty
-
- val animeList: List<TopAnime> = response.body()!!
- .getResults() //getting the "top" field containing our list of TopAnimes
- saveList(animeList)
- showList(
- view,
- animeList
- ) //calling the method in charge of displaying on the recyclerview
-
- } else {
- showError() //a snackbar
- }
- }
-
- override fun onFailure(call: Call<TopAnimeResponse>, t: Throwable) {
- showError()
- }
-
- })
- }
-
- private fun saveList(animeList: List<TopAnime>) {
- val jsonString: String = gson.toJson(animeList)
-
- sharedPreferences
- .edit()
- .putString("jsonAnimeList", jsonString)
- .apply()
- }
-
- private fun showError() {
+ fun showError() {
Snackbar.make(
requireView(),
"API ERROR : Verify your internet connection.",
@@ -173,4 +75,13 @@ class TopAnimePage : Fragment() {
.setAction("Action", null).show()
}
+ fun showText(text: String) {
+ Snackbar.make(
+ requireView(),
+ text,
+ Snackbar.LENGTH_SHORT
+ )
+ .setAction("Action", null).show()
+ }
+
} \ No newline at end of file