aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/view/TopAnimePage.kt
blob: 8a7ef08ec7086cf7b0b9d6f3cee221aebaeb0064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package xyz.adjutor.aniki.presentation.view

import android.content.Context
import android.content.SharedPreferences
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Button
import androidx.fragment.app.Fragment
import androidx.navigation.fragment.findNavController
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.TopAnimeApi
import xyz.adjutor.aniki.presentation.model.TopAnime
import xyz.adjutor.aniki.presentation.model.TopAnimeResponse
import java.lang.reflect.Type

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

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        // 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)
        }

        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)

        //button to return to the home page
        view.findViewById<Button>(R.id.button_home).setOnClickListener {
            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()
            }
        }
        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()
        }

        val swipeRefresh: SwipeRefreshLayout = view.findViewById(R.id.swiperefresh)
        swipeRefresh.setOnRefreshListener {
            updateList()
            page = 1
            swipeRefresh.isRefreshing = false
        }

    }

    //display the recyclerview
    fun showList(view: View, animeList: List<TopAnime>) {
        val recyclerView: RecyclerView = view.findViewById(R.id.recycler_view)
        recyclerView.setHasFixedSize(true)
        recyclerView.layoutManager = LinearLayoutManager(view.context)
        recyclerView.adapter = TopAnimeAdapter(animeList)
        (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() {
        Snackbar.make(
            requireView(),
            "API ERROR : Verify your internet connection.",
            Snackbar.LENGTH_LONG
        )
            .setAction("Action", null).show()
    }

}