aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/anime/search/SearchAnimePage.kt
blob: b624069db3413ef2853992e3467cf90e780a2f4e (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
package xyz.adjutor.aniki.anime.search

import android.content.Context
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.view.inputmethod.EditorInfo
import android.view.inputmethod.InputMethodManager
import android.widget.Button
import android.widget.TextView
import androidx.fragment.app.Fragment
import androidx.navigation.fragment.findNavController
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.google.android.material.snackbar.Snackbar
import com.google.android.material.textfield.TextInputEditText
import com.google.gson.Gson
import com.google.gson.GsonBuilder
import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import xyz.adjutor.aniki.MainActivity
import xyz.adjutor.aniki.R

class SearchAnimePage : Fragment() {

    val gson: Gson = GsonBuilder()
        .setLenient()
        .create()
    private var baseUrl = "https://api.jikan.moe/" //the api's base url

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        // Inflate the layout for this fragment

        return inflater.inflate(R.layout.search_anime_page, container, false)
    }


    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_SearchAnimePage_to_HomePage)
        }

        view.findViewById<Button>(R.id.button_query).setOnClickListener {
            val userInput = view.findViewById<TextInputEditText>(R.id.tiet_query).text.toString()
            hideKeyboard()
            makeApiCall(view, baseUrl, userInput)
        }

        view.findViewById<TextInputEditText>(R.id.tiet_query)
            .setOnEditorActionListener(TextView.OnEditorActionListener { v, actionId, event ->
                if (actionId == EditorInfo.IME_ACTION_SEARCH) {
                    val userInput =
                        view.findViewById<TextInputEditText>(R.id.tiet_query).text.toString()
                    hideKeyboard()
                    makeApiCall(view, baseUrl, userInput)
                    return@OnEditorActionListener true
                }
                false
            })

    }

    private fun hideKeyboard() {
        val activity = activity as MainActivity

        val view = activity.currentFocus
        if (view != null) {
            val imm = activity.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
            imm.hideSoftInputFromWindow(view.windowToken, 0)
        }
    }

    //display the recyclerview
    fun showList(view: View, animeList: List<SearchAnime>) {
        val recyclerView: RecyclerView = view.findViewById(R.id.recycler_view)
        recyclerView.setHasFixedSize(true)
        recyclerView.layoutManager = LinearLayoutManager(view.context)
        recyclerView.adapter = SearchAnimeAdapter(animeList)
        (recyclerView.adapter as SearchAnimeAdapter).notifyDataSetChanged()
    }

    private fun makeApiCall(view: View, BASE_URL: String, query: String) {

        val retrofit = Retrofit.Builder()
            .baseUrl(BASE_URL)
            .addConverterFactory(GsonConverterFactory.create(gson))
            .build()

        val service = retrofit.create(SearchAnimeApi::class.java)
        val call = service.getSearchAnimeData(q = query) //fate is an exemple, we'll have to replace it by the user input.

        call.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

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

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

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

        })
    }

    private fun showError() {
        Snackbar.make(requireView(), "API ERROR : Verify your internet connection or your query.", Snackbar.LENGTH_LONG)
            .setAction("Action", null).show()
    }

}