diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-20 13:30:17 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-20 13:30:17 +0100 |
commit | e41b93327626afba5427454dc2868cedf3f01972 (patch) | |
tree | c02f99657f8e96a2b56839a92c0e9784731ce8a7 /app/src/main/java | |
parent | 83aca7a0d44ede3960fc5752a205a55f63321832 (diff) | |
parent | 893c9110c99cff286011e3d35acb39ba65a97476 (diff) |
Merge branch 'release/1.2'v1.2.0
Diffstat (limited to 'app/src/main/java')
4 files changed, 94 insertions, 21 deletions
diff --git a/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimeAdapter.kt b/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimeAdapter.kt index a036c15..68a2c7b 100644 --- a/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimeAdapter.kt +++ b/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimeAdapter.kt @@ -24,6 +24,7 @@ class TopAnimeAdapter(val animeList: List<TopAnime>) : class AnimeViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { val animeTitle: TextView = itemView.findViewById(R.id.tv_title) val animeRank: TextView = itemView.findViewById(R.id.tv_rank) + val animeScore: TextView = itemView.findViewById(R.id.tv_score) val animeImage: ImageView = itemView.findViewById(R.id.iv_image) } @@ -46,6 +47,7 @@ class TopAnimeAdapter(val animeList: List<TopAnime>) : val currentAnime: TopAnime = animeList[position] holder.animeTitle.text = currentAnime.title holder.animeRank.text = currentAnime.rank.toString() + holder.animeScore.text = currentAnime.score.toString() DownloadImageFromInternet(holder.animeImage).execute(currentAnime.image_url) } diff --git a/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimePage.kt b/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimePage.kt index 9e86191..b1fe2e2 100644 --- a/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimePage.kt +++ b/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnimePage.kt @@ -1,5 +1,7 @@ package xyz.adjutor.aniki.topanime +import android.content.Context +import android.content.SharedPreferences import android.os.Bundle import android.view.LayoutInflater import android.view.View @@ -11,15 +13,24 @@ import androidx.recyclerview.widget.LinearLayoutManager import androidx.recyclerview.widget.RecyclerView import com.google.android.material.snackbar.Snackbar 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.topmanga.TopManga +import java.lang.reflect.Type class TopAnimePage : Fragment() { + var sharedPreferences: SharedPreferences? = null + val gson = GsonBuilder() + .setLenient() + .create() + var base_url = "https://api.jikan.moe/" //the api's base url + override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? @@ -27,11 +38,31 @@ class TopAnimePage : Fragment() { // Inflate the layout for this fragment val view = inflater.inflate(R.layout.top_anime_page, container, false) - makeApiCall(view, base_url) + sharedPreferences = view.context.getSharedPreferences("app_aniki", Context.MODE_PRIVATE) + + val animeList: List<TopAnime>? = getDataFromCache() + if(animeList != null ){ + showList(view, animeList) + } else { + makeApiCall(view, base_url) + } 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 + if(jsonAnime == null) { + return null + } else { //else deserialize the list and return it + val listType: Type = object : TypeToken<List<TopAnime>>() {}.type + return gson.fromJson(jsonAnime, listType) + } + } + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { super.onViewCreated(view, savedInstanceState) @@ -50,11 +81,7 @@ class TopAnimePage : Fragment() { recyclerView.adapter = TopAnimeAdapter(animeList) } - fun makeApiCall(view: View, BASE_URL: String) { - - val gson = GsonBuilder() - .setLenient() - .create() + private fun makeApiCall(view: View, BASE_URL: String) { val retrofit = Retrofit.Builder() .baseUrl(BASE_URL) @@ -67,8 +94,11 @@ class TopAnimePage : Fragment() { call.enqueue(object : Callback<RestTopAnimeResponse> { override fun onResponse(call: Call<RestTopAnimeResponse>, response: Response<RestTopAnimeResponse>) { if(response.isSuccessful && response.body() != null){ //if the code returned is >= 200 and < 300 AND the the body ain't empty + val animeList = 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 } @@ -81,13 +111,18 @@ class TopAnimePage : Fragment() { }) } + private fun saveList(animeList: List<TopAnime>) { + val jsonString: String = gson.toJson(animeList) + + sharedPreferences + ?.edit() + ?.putString("jsonAnimeList", jsonString) + ?.apply() + } + private fun showError() { Snackbar.make(requireView(), "HA? YOU THOUGHT IT WAS AN API !? BUT IT WAS I, ERROR !", Snackbar.LENGTH_LONG) .setAction("Action", null).show() } - companion object { - var base_url = "https://api.jikan.moe/" //the api's base url - } - }
\ No newline at end of file diff --git a/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaAdapter.kt b/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaAdapter.kt index 18fd7a0..22872b2 100644 --- a/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaAdapter.kt +++ b/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaAdapter.kt @@ -22,6 +22,7 @@ class TopMangaAdapter(val mangaList: List<TopManga>) : class MangaViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { val mangaTitle: TextView = itemView.findViewById(R.id.tv_title) val mangaRank: TextView = itemView.findViewById(R.id.tv_rank) + val mangaScore: TextView = itemView.findViewById(R.id.tv_score) val mangaImage: ImageView = itemView.findViewById(R.id.iv_image) } @@ -44,6 +45,7 @@ class TopMangaAdapter(val mangaList: List<TopManga>) : val currentManga: TopManga = mangaList[position] holder.mangaTitle.text = currentManga.title holder.mangaRank.text = currentManga.rank.toString() + holder.mangaScore.text = currentManga.score.toString() DownloadImageFromInternet(holder.mangaImage).execute(currentManga.image_url) } diff --git a/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt b/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt index e4cd20d..697ba6f 100644 --- a/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt +++ b/app/src/main/java/xyz/adjutor/aniki/topmanga/TopMangaPage.kt @@ -1,5 +1,7 @@ package xyz.adjutor.aniki.topmanga +import android.content.Context +import android.content.SharedPreferences import android.os.Bundle import android.view.LayoutInflater import android.view.View @@ -11,15 +13,23 @@ import androidx.recyclerview.widget.LinearLayoutManager import androidx.recyclerview.widget.RecyclerView import com.google.android.material.snackbar.Snackbar 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 java.lang.reflect.Type class TopMangaPage : Fragment() { + var sharedPreferences: SharedPreferences? = null + val gson = GsonBuilder() + .setLenient() + .create() + var base_url = "https://api.jikan.moe/" //the api's base url + override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? @@ -27,11 +37,31 @@ class TopMangaPage : Fragment() { // Inflate the layout for this fragment val view = inflater.inflate(R.layout.top_manga_page, container, false) - makeApiCall(view, base_url) + sharedPreferences = view.context.getSharedPreferences("app_aniki", Context.MODE_PRIVATE) + + val mangaList: List<TopManga>? = getDataFromCache() + if(mangaList != null ){ + showList(view, mangaList) + } else { + makeApiCall(view, base_url) + } return view } + private fun getDataFromCache(): List<TopManga>? { + //the value of the mangaList json, if nothing is found, return null + val jsonManga: String? = sharedPreferences?.getString("jsonMangaList", null) + + //if it's null, well, return null + if(jsonManga == null) { + return null + } else { //else deserialize the list and return it + val listType: Type = object : TypeToken<List<TopManga>>() {}.type + return gson.fromJson(jsonManga, listType) + } + } + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { super.onViewCreated(view, savedInstanceState) @@ -50,11 +80,7 @@ class TopMangaPage : Fragment() { recyclerView.adapter = TopMangaAdapter(mangaList) } - fun makeApiCall(view: View, BASE_URL: String) { - - val gson = GsonBuilder() - .setLenient() - .create() + private fun makeApiCall(view: View, BASE_URL: String) { val retrofit = Retrofit.Builder() .baseUrl(BASE_URL) @@ -67,8 +93,11 @@ class TopMangaPage : Fragment() { call.enqueue(object : Callback<RestTopMangaResponse> { override fun onResponse(call: Call<RestTopMangaResponse>, response: Response<RestTopMangaResponse>) { if(response.isSuccessful && response.body() != null){ //if the code returned is >= 200 and < 300 AND the the body ain't empty - val mangaList = response.body()!!.getResults() //getting the "top" field containing our list of TopMangas + + val mangaList: List<TopManga> = response.body()!!.getResults() //getting the "top" field containing our list of TopMangas + saveList(mangaList) showList(view, mangaList) // calling the method in charge of displaying on the recyclerview + } else { showError() //a snackbar } @@ -81,13 +110,18 @@ class TopMangaPage : Fragment() { }) } + private fun saveList(mangaList: List<TopManga>) { + val jsonString: String = gson.toJson(mangaList) + + sharedPreferences + ?.edit() + ?.putString("jsonMangaList", jsonString) + ?.apply() + } + private fun showError() { Snackbar.make(requireView(), "HA? YOU THOUGHT IT WAS AN API !? BUT IT WAS I, ERROR !", Snackbar.LENGTH_LONG) .setAction("Action", null).show() } - companion object { - var base_url = "https://api.jikan.moe/" //the api's base url - } - }
\ No newline at end of file |