aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt
blob: 3ee6047d347b1f01e23635702a681a6eb478da1e (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
package xyz.adjutor.aniki.presentation.controller

import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
import xyz.adjutor.aniki.presentation.Singletons
import xyz.adjutor.aniki.presentation.model.SearchAnime
import xyz.adjutor.aniki.presentation.model.response.SearchAnimeResponse
import xyz.adjutor.aniki.presentation.view.fragment.SearchAnimeFragment

class SearchAnimeController {

    lateinit var view: SearchAnimeFragment

    fun onStart(searchAnimeFragment: SearchAnimeFragment) {

        view = searchAnimeFragment
    }

    //call the API and show the list
    private fun makeApiCall(view: SearchAnimeFragment, query: String) {

        Singletons
            .searchAnimeApi
            .getSearchAnimeData(q = query)
            .enqueue(object : Callback<SearchAnimeResponse> {
                override fun onResponse(
                    call: Call<SearchAnimeResponse>,
                    response: Response<SearchAnimeResponse>
                ) {
                    if (response.isSuccessful && response.body() != null) { //if the code returned is >= 200 and < 300 AND the the body ain't empty

                        val animeList: List<SearchAnime> = response.body()!!
                            .getResults() //getting the "search" field containing our list of SearchAnimes

                        view.showList(
                        view.requireView(),
                        animeList
                    ) //calling the method in charge of displaying on the recyclerview

                } else {
                    view.showError() //a snackbar
                }
            }

            override fun onFailure(call: Call<SearchAnimeResponse>, t: Throwable) {
                view.showError()
            }

        })
    }

    fun updateList(userInput: String) {
        makeApiCall(view, userInput)
    }

}